/* ============================================================
   Carolina Abreu Eventos — Stylesheet
   Paleta: Roxo (do logo) + tons claros e delicados
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Primary — roxo do logo */
    --purple-900: #3a1052;
    --purple-800: #4a1568;
    --purple-700: #5c1a80;
    --purple-600: #6d2097;
    --purple-500: #7b2d8e;  /* Main */
    --purple-400: #9b4daf;
    --purple-300: #b87cc8;
    --purple-200: #d4ade0;
    --purple-100: #ecdaf3;
    --purple-50:  #f7eff9;

    /* Neutrals */
    --white: #ffffff;
    --gray-50:  #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* Accent — rosa/lavanda delicado */
    --rose-100: #fce4ec;
    --rose-200: #f8bbd0;
    --rose-300: #f48fb1;
    --lavender: #e8daf5;

    /* Functional */
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --star: #f5a623;

    /* Semantic */
    --bg-primary: var(--white);
    --bg-secondary: var(--gray-50);
    --bg-accent: var(--purple-50);
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --accent: var(--purple-500);
    --accent-light: var(--purple-100);
    --accent-dark: var(--purple-800);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-purple: 0 10px 40px rgba(123, 45, 142, 0.2);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section Commons --- */
.section {
    padding: var(--section-padding);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--accent);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-description {
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    color: var(--white);
    box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(123, 45, 142, 0.35);
}

.btn-outline {
    border: 2px solid var(--purple-300);
    color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background: var(--purple-50);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--accent-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--purple-100);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.35s var(--ease);
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 45px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-dark);
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--purple-400);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-400), var(--purple-600));
    border-radius: 2px;
    transition: width 0.35s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-purple);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(123, 45, 142, 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(247, 239, 249, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 40%,
        rgba(236, 218, 243, 0.5) 70%,
        rgba(232, 218, 245, 0.4) 100%
    );
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--purple-300), transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--rose-200), transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--lavender), transparent 70%);
    top: 40%;
    right: 15%;
    animation: float 18s ease-in-out infinite 5s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--purple-200), transparent 70%);
    top: 20%;
    left: 10%;
    animation: float 22s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--purple-400);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
    position: relative;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--purple-100);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple-400);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--purple-200);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.scroll-indicator:hover { opacity: 1; }

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--purple-300);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: 3px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(8px); }
}

/* ============================================================
   SOBRE SECTION
   ============================================================ */
.sobre {
    background: var(--bg-secondary);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(58, 16, 82, 0.3));
    z-index: 1;
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.image-frame:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.sobre-content .section-title {
    text-align: left;
}

.sobre-text {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.sobre-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--purple-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================================
   SERVIÇOS SECTION
   ============================================================ */
.servicos {
    background: var(--bg-primary);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.servico-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-400), var(--purple-700));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--purple-100);
}

.servico-card:hover::before {
    opacity: 1;
}

.servico-card.featured {
    background: linear-gradient(160deg, var(--purple-50), var(--white));
    border-color: var(--purple-200);
    box-shadow: var(--shadow-md);
}

.servico-card.featured::before {
    opacity: 1;
}

.servico-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
}

.servico-icon {
    width: 64px;
    height: 64px;
    background: var(--purple-50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
    transition: all 0.35s var(--ease);
}

.servico-card:hover .servico-icon {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.05);
}

.servico-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.servico-card > p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.servico-list {
    margin-bottom: 20px;
}

.servico-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.servico-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--purple-300);
    border-radius: 50%;
}

.servico-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.3s var(--ease);
}

.servico-link:hover {
    gap: 12px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-900) 60%, var(--purple-800) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
    bottom: -80px;
    left: -80px;
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--purple-200);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio {
    background: var(--bg-secondary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(58, 16, 82, 0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--purple-200);
    margin-bottom: 6px;
}

.portfolio-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
}

/* ============================================================
   DEPOIMENTOS SECTION
   ============================================================ */
.depoimentos {
    background: var(--bg-primary);
}

.depoimentos-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.depoimentos-track {
    display: flex;
    transition: transform 0.5s var(--ease);
}

.depoimento-card {
    min-width: 100%;
    padding: 48px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.depoimento-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    color: var(--star);
    margin-bottom: 24px;
}

.depoimento-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-400), var(--purple-700));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.depoimento-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.depoimento-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease);
}

.slider-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--purple-50);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.slider-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 10px;
}

/* ============================================================
   CONTATO SECTION
   ============================================================ */
.contato {
    background: var(--bg-accent);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contato-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contato-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.contato-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contato-item a,
.contato-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contato-item a:hover {
    color: var(--accent);
}

.contato-social {
    margin-top: 36px;
}

.contato-social h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

/* Contact Form */
.contato-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group:last-child:not(.form-row .form-group) {
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    background: var(--gray-50);
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--purple-300);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(123, 45, 142, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-500);
}

.footer-brand .logo-name {
    color: var(--white);
}

.footer-brand .logo-tagline {
    color: var(--purple-300);
}

.footer h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-500);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--purple-300);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--purple-300);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s var(--ease);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 100px;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: var(--shadow-md);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--ease);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-content .section-title {
        text-align: center;
    }

    .sobre-text {
        text-align: center;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s var(--ease);
        z-index: 999;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .depoimento-card {
        padding: 32px 24px;
    }

    .depoimento-text {
        font-size: 1.05rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contato-form {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 100px 16px 60px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .contato-form {
        padding: 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .back-to-top {
        right: 84px;
        bottom: 20px;
    }
}

/* ============================================================
   PAGE HERO (Internal pages)
   ============================================================ */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--bg-primary);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--purple-50) 0%, var(--white) 40%, var(--lavender) 100%);
    opacity: 0.7;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-hero-title em {
    font-style: italic;
    color: var(--accent);
}

.page-hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    list-style: none;
}

.breadcrumb li {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb li a {
    color: var(--accent);
    font-weight: 500;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--gray-400);
}

/* ============================================================
   MVV (Missão, Visão, Valores) — sobre.html
   ============================================================ */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mvv-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.35s var(--ease);
}

.mvv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--purple-100);
}

.mvv-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--purple-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.mvv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.mvv-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   DIFERENCIAIS — sobre.html
   ============================================================ */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.diferencial-item {
    padding: 32px 24px;
    border-radius: 16px;
    transition: all 0.35s var(--ease);
}

.diferencial-item:hover {
    background: var(--purple-50);
}

.diferencial-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--purple-200);
    line-height: 1;
    margin-bottom: 16px;
}

.diferencial-item h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.diferencial-item p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================
   NÚMEROS — sobre.html
   ============================================================ */
.numeros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.numero-card {
    text-align: center;
    padding: 32px 16px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.numero-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-top: 4px;
    margin-bottom: 8px;
}

.numero-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================================
   CTA BUTTONS ROW
   ============================================================ */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    background: transparent;
    transition: all 0.35s var(--ease);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

/* ============================================================
   SERVICO DETALHE — servicos.html
   ============================================================ */
.servico-detalhe-alt {
    background: var(--bg-secondary);
}

.servico-detalhe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.servico-detalhe-grid.reverse {
    direction: rtl;
}

.servico-detalhe-grid.reverse > * {
    direction: ltr;
}

.servico-detalhe-content h2 {
    text-align: left;
}

.servico-detalhe-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--text-primary);
}

.servico-detalhe-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.servico-detalhe-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.servico-detalhe-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.servico-detalhe-image:hover img {
    transform: scale(1.03);
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    background: var(--purple-50);
    border-radius: 50%;
    border: 2px solid var(--purple-300);
}

.check-list li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 16px;
    width: 5px;
    height: 8px;
    border: solid var(--accent);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ============================================================
   FAQ — servicos.html
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.faq-item[open] {
    border-color: var(--purple-200);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 24px 18px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item p a {
    color: var(--accent);
    font-weight: 500;
}

.faq-item p a:hover {
    text-decoration: underline;
}

/* ============================================================
   PORTFOLIO FILTERS — portfolio.html
   ============================================================ */
.portfolio-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-overlay p {
    font-size: 0.85rem;
    color: var(--purple-100);
    margin-top: 4px;
    line-height: 1.4;
}

/* ============================================================
   DEPOIMENTOS GRID — depoimentos.html
   ============================================================ */
.rating-overview {
    text-align: center;
    margin-bottom: 48px;
    padding: 32px;
    background: var(--purple-50);
    border-radius: 20px;
}

.rating-big {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    color: var(--star);
    margin: 8px 0;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.depoimento-card-full {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.35s var(--ease);
}

.depoimento-card-full:hover {
    border-color: var(--purple-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.depoimento-card-full .depoimento-stars {
    justify-content: flex-start;
    margin-bottom: 12px;
}

.depoimento-servico {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background: var(--purple-50);
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.depoimento-card-full blockquote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.depoimento-card-full .depoimento-author {
    justify-content: flex-start;
}

/* ============================================================
   CONTATO RAPIDO — index.html
   ============================================================ */
.contato-rapido {
    background: var(--bg-primary);
}

.contato-rapido-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contato-rapido-text .section-title {
    text-align: left;
}

.contato-rapido-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.contato-rapido-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contato-mini-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.3s var(--ease);
    color: var(--text-primary);
}

.contato-mini-card:hover {
    border-color: var(--purple-200);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contato-mini-card svg {
    flex-shrink: 0;
    color: var(--accent);
}

.contato-mini-card strong {
    display: block;
    font-size: 0.95rem;
}

.contato-mini-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================================
   LOCALIDADES — contato.html
   ============================================================ */
.localidades-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-bottom: 60px;
}

.localidade-card {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    text-align: center;
    transition: all 0.35s var(--ease);
}

.localidade-card:hover {
    border-color: var(--purple-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.localidade-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--purple-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.localidade-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.localidade-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* ============================================================
   CONTATO PAGE
   ============================================================ */
.contato-page .contato-grid {
    align-items: start;
}

.contato-page .contato-icon {
    background: var(--purple-50);
}

/* ============================================================
   TEXT CENTER HELPER
   ============================================================ */
.text-center {
    text-align: center;
}

/* ============================================================
   FOOTER SOCIAL IN DARK BG
   ============================================================ */
.footer .social-links a {
    background: rgba(255,255,255,0.08);
    color: var(--gray-400);
    box-shadow: none;
}

.footer .social-links a:hover {
    background: var(--accent);
    color: var(--white);
}

/* ============================================================
   RESPONSIVE — NEW COMPONENTS
   ============================================================ */
@media (max-width: 1024px) {
    .mvv-grid { grid-template-columns: 1fr; }
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    .numeros-grid { grid-template-columns: repeat(2, 1fr); }
    .servico-detalhe-grid { grid-template-columns: 1fr; gap: 32px; }
    .servico-detalhe-grid.reverse { direction: ltr; }
    .servico-detalhe-content h2 { text-align: center; }
    .portfolio-masonry { grid-template-columns: repeat(2, 1fr); }
    .depoimentos-grid { grid-template-columns: 1fr; }
    .contato-rapido-grid { grid-template-columns: 1fr; gap: 40px; }
    .contato-rapido-text .section-title { text-align: center; }
    .contato-rapido-text p { text-align: center; }
    .localidades-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-hero { padding: 130px 0 60px; }
    .page-hero-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .diferenciais-grid { grid-template-columns: 1fr; }
    .numeros-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-masonry { grid-template-columns: 1fr; }
    .servico-detalhe-image img { height: 280px; }
}

@media (max-width: 480px) {
    .numeros-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn,
    .cta-buttons .btn-outline-white { width: 100%; justify-content: center; }
}

/* --- Print Styles --- */
@media print {
    #header, .whatsapp-float, .back-to-top, .scroll-indicator, #preloader {
        display: none !important;
    }

    .hero { min-height: auto; padding: 40px 0; }
    .section { padding: 30px 0; }
    body { font-size: 12pt; }
}
