/* ========================================
   LANDING PAGE - KELLY OLIVEIRA PSICÓLOGA
   Design Editorial Minimalista e Terroso
   ======================================== */

/* ========================================
   VARIÁVEIS CSS - IDENTIDADE VISUAL KELLY OLIVEIRA
   ======================================== */
:root {
    /* Paleta de cores terrosas */
    --creme: #F5F0EB;
    --terracota: #B5735A;
    --terracota-dark: #9A5D47;
    --salvia: #7A9E7E;
    --salvia-dark: #658267;
    --cacau: #4A3728;
    --cacau-light: #6B5445;
    --areia: #E8DDD0;
    --shadow: rgba(74, 55, 40, 0.1);
    
    /* Tipografia */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Outros */
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* ========================================
   RESET E ESTILOS GLOBAIS
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--cacau);
    background-color: var(--creme);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.3;
    color: var(--cacau);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

/* ========================================
   NAVBAR - TRANSPARENTE COM SCROLL BEHAVIOR
   ======================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 9998;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(245, 240, 235, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(74, 55, 40, 0.08);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.8;
}
    color: var(--terracota);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
}

.nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 1rem;
    color: var(--cacau-light);
    font-weight: 300;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracota);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--terracota);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .nav-cta {
    padding: 0.5rem 1.5rem;
    background: var(--terracota);
    color: white;
    border-radius: 50px;
    font-weight: 400;
}

.nav-links .nav-cta::after {
    display: none;
}

.nav-links .nav-cta:hover {
    background: var(--terracota-dark);
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 9999;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--cacau);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Desktop - Garantir que o menu fique horizontal */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav-links {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        height: auto !important;
        width: auto !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        align-items: center !important;
        gap: 2.5rem !important;
    }
    
    .nav-links li {
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .nav-links a {
        display: inline-block !important;
        width: auto !important;
        font-size: 1rem !important;
    }
}

/* Mobile - Menu lateral */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-logo-img {
        height: 50px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        max-width: 320px;
        background: var(--creme);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2.5rem 2rem;
        gap: 1.8rem;
        box-shadow: -5px 0 20px rgba(74, 55, 40, 0.15);
        transition: right 0.3s ease;
        z-index: 9997;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        list-style: none;
    }

    .nav-links a {
        display: block;
        width: 100%;
        font-size: 1.1rem;
        color: var(--cacau);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links .nav-cta {
        text-align: center;
        margin-top: 1rem;
    }
}

/* ========================================
   BARRA DE PROGRESSO DE LEITURA
   ======================================== */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--terracota);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Section padrão */
section {
    padding: var(--spacing-xl) 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Títulos de seção */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--cacau);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    text-align: center;
    color: var(--cacau-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--terracota);
    color: white;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(181, 115, 90, 0.3);
}

.btn:hover {
    background: var(--terracota-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 115, 90, 0.4);
}

/* ========================================
   HERO SECTION - DESIGN EDITORIAL MINIMALISTA
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--spacing-lg) 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--creme) 0%, var(--areia) 100%);
}

/* Filtro SVG de ruído/grain para textura sutil */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

/* Formas geométricas animadas - 4 bolhas flutuantes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(232, 221, 208, 0.25);
    animation: floatDynamic 20s infinite ease-in-out;
    z-index: 1;
}

.hero-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
    background: rgba(122, 158, 126, 0.15);
}

.hero-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 50%;
    animation-delay: -10s;
    background: rgba(181, 115, 90, 0.1);
}

.hero-shape:nth-child(4) {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 20%;
    animation-delay: -15s;
    background: rgba(232, 221, 208, 0.2);
}

@keyframes floatDynamic {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(40px, 10px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Assinatura pequena no topo */
.hero-signature {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cacau-light);
    margin-bottom: var(--spacing-sm);
    opacity: 0;
    animation: fadeIn 0.8s forwards ease-out 0.2s;
}

/* Headline principal - promessa forte */
.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--cacau);
    margin-bottom: var(--spacing-sm);
    opacity: 0;
    animation: fadeInUp 1s forwards ease-out 0.4s;
}

/* Subheadline específica */
.hero-subheadline {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--cacau-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    opacity: 0;
    animation: fadeIn 1s forwards ease-out 0.8s;
}

/* Frase poética */
.hero-poetic {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 300;
    color: var(--terracota);
    margin-bottom: var(--spacing-md);
    opacity: 0;
    animation: fadeIn 1s forwards ease-out 1.2s;
}

/* CTA principal */
.hero-cta {
    margin-bottom: var(--spacing-sm);
    opacity: 0;
    animation: fadeInUp 1s forwards ease-out 1.6s;
}

.hero-cta .btn {
    background: var(--terracota);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(181, 115, 90, 0.25);
    transition: all 0.3s ease;
}

.hero-cta .btn:hover {
    background: #9f6450;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(181, 115, 90, 0.35);
}

/* Microcopy abaixo do botão */
.hero-microcopy {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--cacau-light);
    opacity: 0;
    animation: fadeIn 1s forwards ease-out 2s;
}

.hide-mobile {
    display: inline;
}

/* Animações */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: var(--spacing-md) 0;
    }

    .hero-headline {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .hero-poetic {
        font-size: 1.15rem;
    }

    .hero-cta .btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .hide-mobile {
        display: none;
    }

    .hero-shape {
        opacity: 0.5;
    }
}

/* SVG Divider - Hero para Sobre */
.divider-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divider-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    transform: translateY(1px);
}

/* ========================================
   QUEM SOU EU - LAYOUT EDITORIAL
   ======================================== */
#quem-sou-eu {
    background: linear-gradient(to bottom, var(--areia) 0%, #e8ddd4 100%);
    padding-top: calc(var(--spacing-xl) + 40px);
    padding-bottom: 2rem;
    overflow: visible;
}

/* Header centralizado: título + subtítulo */
.quem-sou-eu-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.quem-sou-eu-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    color: var(--cacau);
}

.quem-sou-eu-subtitle {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-family: var(--font-heading);
    font-style: italic;
    color: #c9a98a;
    font-weight: 300;
}

/* Layout duas colunas: 40% imagem + 60% texto */
.quem-sou-eu-content {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
    margin-bottom: var(--spacing-lg);
}

/* ===== COLUNA ESQUERDA: Imagem + Card de Credenciais ===== */
.quem-sou-eu-left {
    position: sticky;
    top: 120px;
}

.quem-sou-eu-image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.quem-sou-eu-photo,
.quem-sou-eu-photo-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(74, 55, 40, 0.15);
    background: var(--creme);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-md);
    color: var(--cacau-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Card de Credenciais abaixo da foto */
.quem-sou-eu-credentials {
    background: linear-gradient(135deg, #6b4c3b 0%, #8a6449 100%);
    padding: 1.8rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 10px 30px rgba(74, 55, 40, 0.2);
    gap: 1rem;
}

.credential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.credential-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 300;
    color: #f5f0eb;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.credential-label {
    font-size: 0.85rem;
    color: #c9a98a;
    text-transform: lowercase;
    letter-spacing: 0.03em;
}

.credential-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #c9a98a, transparent);
}

/* ===== COLUNA DIREITA: Texto editorial com drop cap ===== */
.quem-sou-eu-text {
    padding-right: clamp(0rem, 2vw, 2rem);
}

.quem-sou-eu-text p {
    color: #6b4c3b;
    font-size: clamp(1.05rem, 1.8vw, 1.12rem);
    line-height: 1.85;
    margin-bottom: 1.5rem;
    text-align: left;
}

.quem-sou-eu-text p strong {
    color: var(--cacau);
    font-weight: 500;
}

/* Drop Cap - Primeira letra grande e decorativa */
.quem-sou-eu-text .intro-paragraph {
    position: relative;
}

.drop-cap {
    float: left;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 0.85;
    font-weight: 300;
    color: #c9a98a;
    margin-right: 0.15em;
    margin-top: 0.05em;
}

/* Timeline horizontal - estilo editorial limpo */
.quem-sou-eu-timeline {
    position: relative;
    margin-top: var(--spacing-lg);
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    overflow: visible;
    min-height: 250px;
}

/* Container interno dos itens */
.quem-sou-eu-timeline-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
    overflow: visible;
}

/* Linha conectora horizontal - fina e elegante */
.quem-sou-eu-timeline-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: #a0614a;
    z-index: 0;
}

/* Item da timeline - SEM card, SEM fundo, SEM borda */
.timeline-horizontal-item {
    position: relative;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    padding-top: 2.5rem;
    padding-bottom: 1rem;
    animation: fadeInUp 0.8s ease forwards;
    min-height: 180px;
    overflow: visible;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-horizontal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-horizontal-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-horizontal-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-horizontal-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-horizontal-item:nth-child(4) { transition-delay: 0.4s; }

/* Ponto circular sobre a linha */
.timeline-horizontal-dot {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: #a0614a;
    border-radius: 50%;
    border: 3px solid #e8ddd4;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-horizontal-item:hover .timeline-horizontal-dot {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 0 0 6px rgba(160, 97, 74, 0.15);
}

/* Conteúdo: apenas tipografia limpa */
.timeline-horizontal-content {
    padding-top: 0;
    overflow: visible;
    min-height: 120px;
}

.timeline-horizontal-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: #6b4c3b;
    line-height: 1.4;
    font-weight: 400;
    font-family: var(--font-body);
    overflow: visible;
    white-space: normal;
}

.timeline-horizontal-content .instituicao {
    color: #a0614a;
    font-weight: 500;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    line-height: 1.6;
    overflow: visible;
    white-space: normal;
    display: block;
}

.timeline-horizontal-content .ano {
    color: var(--cacau-light);
    font-size: 0.85rem;
    line-height: 1.6;
    overflow: visible;
    white-space: normal;
    display: block;
}

/* SVG Divider - Quem sou eu para Ajuda */
.divider-curve-convex {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divider-curve-convex svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
    transform: translateY(1px);
}

/* ========================================
   COMO POSSO TE AJUDAR - CARDS COM 3D HOVER
   ======================================== */
#ajuda {
    background: var(--areia);
    padding-top: var(--spacing-lg);
}

.ajuda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.ajuda-card {
    background: var(--creme);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    box-shadow: 0 2px 10px var(--shadow);
    opacity: 0;
    transform: translateY(50px);
    will-change: transform, background;
}

.ajuda-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ajuda-card.visible:nth-child(1) { transition-delay: 0.1s; }
.ajuda-card.visible:nth-child(2) { transition-delay: 0.2s; }
.ajuda-card.visible:nth-child(3) { transition-delay: 0.3s; }
.ajuda-card.visible:nth-child(4) { transition-delay: 0.4s; }
.ajuda-card.visible:nth-child(5) { transition-delay: 0.5s; }
.ajuda-card.visible:nth-child(6) { transition-delay: 0.6s; }

.ajuda-card:hover {
    background: var(--terracota);
    color: white;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px var(--shadow);
    transition-delay: 0s !important;
}

.ajuda-card:hover h3,
.ajuda-card:hover p {
    color: white;
}

.ajuda-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: none; /* Ocultar espaço do ícone */
}

.ajuda-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--cacau);
    transition: color 0.2s ease;
}

.ajuda-card p {
    color: var(--cacau-light);
    line-height: 1.6;
    transition: color 0.2s ease;
}

/* SVG Divider - Ajuda para Atendimento (onda dupla) */
.divider-double-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divider-double-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 90px;
    transform: translateY(1px);
}

/* ========================================
   TIPOS DE ATENDIMENTO - TAB TOGGLE
   ======================================== */
#atendimento {
    padding-top: 2.5rem;
    padding-bottom: 7rem;
}

/* Tab buttons */
.atend-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    background: var(--areia);
    border-radius: 50px;
    padding: 6px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.atend-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    background: transparent;
    color: var(--cacau-light);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.atend-tab.active {
    background: var(--terracota);
    color: white;
    box-shadow: 0 4px 15px rgba(181, 115, 90, 0.35);
}

.atend-tab-icon {
    width: 18px;
    height: 18px;
    display: flex;
}

.atend-tab-icon svg {
    width: 100%;
    height: 100%;
}

/* Painéis */
.atend-panel {
    display: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.atend-panel.active {
    display: block;
    animation: panelIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes panelIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.atend-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--areia);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(74, 55, 40, 0.07);
}

/* Lado esquerdo */
.atend-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(181, 115, 90, 0.12);
    color: var(--terracota);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.atend-panel-left h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--cacau);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.atend-panel-left p {
    color: var(--cacau-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Lista lado direito */
.atend-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.atend-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.atend-list-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(181, 115, 90, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.atend-list-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--terracota);
}

.atend-list li strong {
    display: block;
    font-weight: 400;
    color: var(--cacau);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.atend-list li p {
    color: var(--cacau-light);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

/* SVG Divider - Atendimento para Citação (colina orgânica) */
.divider-hill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divider-hill svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    transform: translateY(1px);
}

/* ========================================
   CITAÇÃO INSPIRADORA - FUNDO ESCURO MODERNO
   ======================================== */
#citacao {
    background: var(--cacau);
    padding: var(--spacing-lg) 0;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.citacao-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: clamp(2rem, 5vw, 3rem);
    padding-left: clamp(2rem, 6vw, 4rem);
    background: transparent;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--terracota);
    transition: var(--transition);
}

.citacao-container:hover {
    transform: translateX(8px);
}

.citacao-aspas {
    display: none;
}

.citacao-texto {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-family: var(--font-heading);
    color: var(--creme);
    line-height: 1.7;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-style: italic;
    font-weight: 300;
    position: relative;
    text-align: left;
}

.citacao-texto::before {
    content: '"';
    position: absolute;
    left: -0.5em;
    top: -0.2em;
    font-size: 2.5em;
    color: var(--terracota);
    opacity: 0.6;
    font-family: var(--font-heading);
    line-height: 1;
}

.citacao-texto::after {
    content: '"';
    font-size: 2.5em;
    color: var(--terracota);
    opacity: 0.6;
    font-family: var(--font-heading);
    line-height: 1;
    margin-left: 0.1em;
}

.citacao-autor {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--terracota);
    font-weight: 400;
    text-align: right;
    display: block;
    margin-top: 1rem;
}

.citacao-autor::before {
    content: '— ';
}

/* SVG Divider entrada da citação */
.divider-wave-entrada-citacao {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.divider-wave-entrada-citacao svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: translateY(1px);
}

/* SVG Divider - Citação para Como Funciona (onda côncava) */
.divider-curve-concave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divider-curve-concave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
    transform: translateY(1px);
}

/* ========================================
   COMO FUNCIONA - STAGGER ANIMATION
   ======================================== */
#como-funciona {
    background: var(--areia);
    padding-top: calc(var(--spacing-xl) + 25px);
}

.processo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.processo-step {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--creme);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px var(--shadow);
    opacity: 0;
}

.processo-step.visible {
    animation: slideInStep 0.6s forwards;
}

.processo-step:nth-child(1).visible {
    animation-delay: 0s;
}

.processo-step:nth-child(2).visible {
    animation-delay: 0.2s;
}

.processo-step:nth-child(3).visible {
    animation-delay: 0.4s;
}

@keyframes slideInStep {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.processo-number {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    background: var(--terracota);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(181, 115, 90, 0.3);
}

.processo-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--cacau);
}

.processo-step p {
    color: var(--cacau-light);
    line-height: 1.6;
}

/* SVG Divider - Como Funciona para FAQ (diagonal invertido) */
.divider-diagonal-inverted {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divider-diagonal-inverted svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: translateY(1px);
}

/* ========================================
   FAQ - ACCORDION COM ROTAÇÃO DE ÍCONE
   ======================================== */
#faq {
    padding-top: calc(var(--spacing-xl) + 25px);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--areia);
    margin-bottom: var(--spacing-sm);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: var(--spacing-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    color: var(--cacau);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--terracota);
    transition: transform 0.3s ease;
    font-weight: bold;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1), padding 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 var(--spacing-md);
    color: var(--cacau-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

/* SVG Divider - FAQ para CTA (onda suave simples) */
.divider-simple-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divider-simple-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: translateY(1px);
}

/* ========================================
   CTA FINAL
   ======================================== */
.cta-final {
    background: var(--terracota);
    padding: calc(var(--spacing-xl) + 40px) 0 var(--spacing-xl);
    text-align: center;
    color: white;
}

.cta-final h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-sm);
    color: white;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.cta-final .btn {
    background: var(--salvia);
    color: white;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.cta-final .btn:hover {
    background: var(--salvia-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(122, 158, 126, 0.4);
}

/* ========================================
   FOOTER - LAYOUT ASSIMÉTRICO EDITORIAL
   ======================================== */
footer {
    background: linear-gradient(to bottom, #8a5240 0%, #9b6251 100%);
    color: #f0e6dc;
    padding: 0;
    position: relative;
}

/* Detalhe decorativo no topo do footer */
.footer-decorative-top {
    height: 3px;
    background: linear-gradient(to right, transparent, #d4b8a8, transparent);
    width: 100%;
}

/* Layout assimétrico: 50% esquerda (assinatura) | 50% direita (infos) */
.footer-asymmetric {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

/* ===== LADO ESQUERDO: Assinatura dominante ===== */
.footer-left {
    padding-right: clamp(1rem, 3vw, 3rem);
}

.footer-signature-large {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: #f0e6dc;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.footer-credentials {
    font-size: 0.85rem;
    color: #f0e6dc;
    opacity: 0.7;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-divider-line {
    width: 120px;
    height: 1px;
    background: rgba(240, 230, 220, 0.4);
    margin-bottom: 1.5rem;
}

.footer-approach {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: #d4b8a8;
    line-height: 1.6;
    font-weight: 300;
}

/* Linha vertical separadora */
.footer-vertical-divider {
    width: 2px;
    height: 100%;
    background: rgba(240, 230, 220, 0.2);
    justify-self: center;
}

/* ===== LADO DIREITO: Informações compactas ===== */
.footer-right {
    padding-left: clamp(1rem, 3vw, 2rem);
    display: flex;
    align-items: center;
}

.footer-info-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.footer-mini-title {
    font-size: 13px;
    color: #f0e6dc;
    letter-spacing: 5px;
    font-weight: 400;
    margin-bottom: 16px;
    font-family: var(--font-body);
    position: relative;
    padding-bottom: 12px;
}

.footer-mini-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: #f0e6dc;
    opacity: 0.6;
}

.footer-compact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-compact-list li {
    font-size: 16px;
    color: #e8ddd4;
    line-height: 1.6;
    font-weight: 300;
    position: relative;
    padding-left: 20px;
}

.footer-compact-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #e8a882;
    font-weight: 300;
}

/* Links no footer */
.footer-compact-list a {
    color: #fff8f2;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Ícone do Instagram */
.footer-compact-list a[href*="instagram"]::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23fff8f2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="2" width="20" height="20" rx="5" ry="5"/><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"/><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Ícone do WhatsApp */
.footer-compact-list a[href*="wa.me"]::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23fff8f2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.footer-compact-list a:hover {
    color: #ffffff;
    text-decoration: none !important;
}

.footer-compact-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #f0e6dc;
    transition: width 0.3s ease;
}

.footer-compact-list a:hover::after {
    width: 100%;
}

/* Linha divisória antes do copyright */
.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(240, 230, 220, 0.3);
    background: #7a4535;
}

.footer-bottom p {
    color: #f0e6dc;
    opacity: 0.7;
    font-size: 0.85rem;
    font-weight: 300;
    margin: 0;
}

/* Aviso ético */
.footer-etica {
    background: #e8ddd4;
    color: #6b4c3b;
    padding: 1.2rem var(--spacing-md);
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Responsividade Mobile - Footer Assimétrico */
@media (max-width: 768px) {
    .footer-asymmetric {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-lg) 0;
    }

    .footer-vertical-divider {
        display: none;
    }

    .footer-left {
        padding-right: 0;
        text-align: center;
    }

    .footer-signature-large {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .footer-divider-line {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-right {
        padding-left: 0;
    }

    .footer-info-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-mini-column {
        text-align: center;
    }

    .footer-compact-list li {
        font-size: 15px;
    }
    
    .footer-mini-title {
        font-size: 12px;
        letter-spacing: 4px;
    }
}

/* ========================================
   FORMULÁRIO DE CONTATO
   ======================================== */
#contato {
    background: var(--creme);
    padding-top: calc(var(--spacing-xl) + 25px);
    padding-bottom: calc(var(--spacing-xl) + 25px);
}

.contato-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

/* Linha decorativa acima do título */
.contato-decorative-line {
    width: 60px;
    height: 2px;
    background: #a0614a;
    margin: 0 auto 1.5rem;
}

.contato-intro h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    letter-spacing: 0.03em;
}

/* Subtítulo em itálico */
.contato-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: #a0614a;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Descrição menor e com largura limitada */
.contato-description {
    color: #8a6a5a;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(74, 55, 40, 0.08);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--cacau);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.form-group label span {
    color: var(--terracota);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--cacau);
    background: var(--creme);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--terracota);
    background: white;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-submit {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.form-submit .btn {
    background: var(--terracota);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(181, 115, 90, 0.25);
}

.form-submit .btn:hover {
    background: #9f6450;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(181, 115, 90, 0.35);
}

.form-info {
    margin-top: var(--spacing-md);
    padding: 1rem;
    background: rgba(122, 158, 126, 0.08);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--cacau-light);
    text-align: center;
}

/* Mensagem de sucesso */
.form-success {
    display: none;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(122, 158, 126, 0.15), rgba(122, 158, 126, 0.08));
    border-left: 4px solid var(--salvia);
    border-radius: 8px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.form-success.show {
    display: block;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--salvia);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--cacau-light);
    font-size: 1rem;
    line-height: 1.6;
}

.form-success .success-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Responsivo mobile */
@media (max-width: 768px) {
    .form-container {
        padding: var(--spacing-md);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem 1rem;
    }
}

/* ========================================
   BOTÃO FLUTUANTE WHATSAPP
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--salvia);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(122, 158, 126, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: var(--salvia-dark);
    box-shadow: 0 6px 25px rgba(122, 158, 126, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(122, 158, 126, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(122, 158, 126, 0.7);
    }
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    /* Título e subtítulo responsivos */
    .quem-sou-eu-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .quem-sou-eu-subtitle {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }

    /* Layout vira uma coluna em mobile */
    .quem-sou-eu-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .quem-sou-eu-left {
        position: relative;
        top: 0;
    }

    .quem-sou-eu-photo,
    .quem-sou-eu-photo-placeholder {
        max-width: 100%;
        aspect-ratio: 3 / 4;
    }

    /* Card de credenciais ajustado */
    .quem-sou-eu-credentials {
        padding: 1.5rem;
        gap: 0.8rem;
    }

    .credential-number {
        font-size: 2.2rem;
    }

    .credential-label {
        font-size: 0.8rem;
    }

    .credential-divider {
        height: 40px;
    }

    /* Texto responsivo */
    .quem-sou-eu-text {
        padding-right: 0;
    }

    .quem-sou-eu-text p {
        font-size: 1.05rem;
        margin-bottom: 1.3rem;
    }

    .drop-cap {
        font-size: 3.5rem;
        margin-right: 0.12em;
    }

    /* Timeline empilhada verticalmente em mobile */
    .quem-sou-eu-timeline {
        padding-top: var(--spacing-md);
        margin-top: var(--spacing-md);
        overflow: visible;
    }

    .quem-sou-eu-timeline-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        overflow: visible;
    }

    .quem-sou-eu-timeline-inner::before {
        display: none;
    }
    
    .timeline-horizontal-item {
        opacity: 1;
        transform: translateY(0);
        padding-top: 1.5rem;
    }

    .timeline-horizontal-item {
        padding: 2rem 0 0;
    }

    .timeline-horizontal-dot {
        width: 16px;
        height: 16px;
        top: 0;
        border: 3px solid #e8ddd4;
    }

    .timeline-horizontal-content h3 {
        font-size: 1.05rem;
    }

    .timeline-horizontal-content .instituicao {
        font-size: 0.88rem;
    }

    .timeline-horizontal-content .ano {
        font-size: 0.82rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .hero-shape {
        opacity: 0.5;
    }

    .atend-panel-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .atend-tabs {
        max-width: 100%;
    }

    .atend-tab {
        padding: 0.75rem 1.2rem;
        font-size: 0.95rem;
    }

    /* Citação responsiva para tablets */
    .citacao-container {
        padding: 2rem;
        padding-left: 2.5rem;
        border-left-width: 4px;
    }

    .citacao-container:hover {
        transform: translateX(5px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    /* Citação responsiva para mobile */
    .citacao-container {
        padding: 1.5rem;
        padding-left: 1.8rem;
        border-left-width: 3px;
        margin: 0 1rem;
    }

    .citacao-texto::before {
        font-size: 2em;
        left: -0.3em;
    }

    .citacao-texto::after {
        font-size: 2em;
    }

    .citacao-container:hover {
        transform: translateX(3px);
    }

    .citacao-autor {
        text-align: left;
        margin-top: 1rem;
    }
}
