/* ============================================
   CSS CUSTOM PROPERTIES (Paleta de Cores)
============================================ */
:root {
    --verde-profundo: #2C5F2D;
    --verde-escuro: #1a3c1b;
    --azul-elegante: #3B6B9B;
    --azul-escuro: #2a4f73;
    --off-white: #FAF8F5;
    --bege-claro: #F5F0EB;
    --bege-medio: #E8DDD3;
    --terracota: #A0715A;
    --terracota-claro: #C49A7E;
    --dourado: #C9A96E;
    --dourado-claro: #D4BC8B;
    --dourado-brilho: #E0C992;
    --texto-escuro: #2D2A26;
    --texto-medio: #5A5550;
    --branco: #FFFFFF;

    --font-titulo: 'Playfair Display', Georgia, serif;
    --font-texto: 'Inter', 'Segoe UI', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 60px rgba(0,0,0,0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   RESET & BASE
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-texto);
    color: var(--texto-escuro);
    background-color: var(--off-white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-titulo);
    line-height: 1.3;
}

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

a {
    text-decoration: none;
    transition: var(--transition);
}

::selection {
    background-color: var(--dourado);
    color: var(--branco);
}

/* Scrollbar Customizada */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bege-claro);
}
::-webkit-scrollbar-thumb {
    background: var(--dourado);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--terracota);
}

/* ============================================
   LOADING SCREEN
============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--verde-profundo);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-content .loader-icon {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(201, 169, 110, 0.2);
    border-top: 3px solid var(--dourado);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-content p {
    font-family: var(--font-titulo);
    color: var(--dourado);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

/* ============================================
   NAVBAR
============================================ */
.navbar-custom {
    background: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1050;
}

.navbar-custom.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand-custom {
    font-family: var(--font-titulo);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--verde-profundo) !important;
    letter-spacing: 0.5px;
}

.navbar-brand-custom span {
    color: var(--dourado);
}

.navbar-custom .nav-link {
    font-family: var(--font-texto);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--texto-medio) !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--dourado);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--verde-profundo) !important;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: none !important;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    width: 26px;
    height: 20px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--verde-profundo);
    transition: var(--transition);
}

.navbar-toggler-icon::before { top: 0; }
.navbar-toggler-icon span { top: 50%; transform: translateY(-50%); }
.navbar-toggler-icon::after { bottom: 0; }

/* ============================================
   BUTTONS GLOBAIS
============================================ */
.btn-dourado {
    background: linear-gradient(135deg, var(--dourado), var(--dourado-brilho));
    color: var(--branco);
    font-family: var(--font-texto);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.btn-dourado::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-dourado:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 169, 110, 0.45);
    color: var(--branco);
}

.btn-dourado:hover::before {
    left: 100%;
}

.btn-verde {
    background: var(--verde-profundo);
    color: var(--branco);
    font-family: var(--font-texto);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.2);
}

.btn-verde:hover {
    background: var(--verde-escuro);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(44, 95, 45, 0.35);
    color: var(--branco);
}

.btn-outline-dourado {
    background: transparent;
    color: var(--dourado);
    font-family: var(--font-texto);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 13px 36px;
    border: 2px solid var(--dourado);
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-dourado:hover {
    background: var(--dourado);
    color: var(--branco);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 169, 110, 0.35);
}

.btn-comprar {
    background: linear-gradient(135deg, var(--terracota), var(--terracota-claro));
    color: var(--branco);
    font-family: var(--font-texto);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(160, 113, 90, 0.25);
}

.btn-comprar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(160, 113, 90, 0.4);
    color: var(--branco);
}

/* ============================================
   SECTION UTILITIES
============================================ */
.section-padding {
    padding: 100px 0;
}

.section-padding-lg {
    padding: 120px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-texto);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dourado);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--dourado);
}

.section-title {
    font-family: var(--font-titulo);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--verde-profundo);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--texto-medio);
    max-width: 650px;
    line-height: 1.8;
}

.divider-gold {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-brilho));
    border: none;
    margin: 20px 0;
    border-radius: 2px;
}

.divider-gold.center {
    margin-left: auto;
    margin-right: auto;
}

.bg-bege { background-color: var(--bege-claro); }
.bg-verde { background-color: var(--verde-profundo); }
.bg-off-white { background-color: var(--off-white); }

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--bege-claro) 50%, var(--bege-medio) 100%);
}

.hero-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-decor .circle-1 {
    position: absolute;
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 95, 45, 0.06) 0%, transparent 70%);
}

.hero-bg-decor .circle-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
}

.hero-bg-decor .line-pattern {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    opacity: 0.05;
    background-image: repeating-linear-gradient(
        45deg,
        var(--verde-profundo) 0,
        var(--verde-profundo) 1px,
        transparent 1px,
        transparent 20px
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(44, 95, 45, 0.08);
    border: 1px solid rgba(44, 95, 45, 0.12);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--verde-profundo);
    margin-bottom: 28px;
}

.hero-tag i {
    color: var(--dourado);
    font-size: 0.9rem;
}

.hero-title {
    font-family: var(--font-titulo);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--verde-profundo);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--dourado);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(201, 169, 110, 0.2);
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--texto-medio);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.hero-stat h3 {
    font-family: var(--font-titulo);
    font-size: 2rem;
    color: var(--dourado);
    font-weight: 700;
}

.hero-stat p {
    font-size: 0.8rem;
    color: var(--texto-medio);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero Imagem */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 480px;
    height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid rgba(201, 169, 110, 0.3);
    border-radius: var(--radius-lg);
    z-index: 2;
    pointer-events: none;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bege-medio) 0%, var(--terracota-claro) 50%, var(--dourado-claro) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--branco);
}

.hero-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 12px;
    opacity: 0.7;
}

.hero-image-placeholder span {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Placeholder padrão para imagens */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bege-medio), var(--terracota-claro));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    gap: 8px;
}

.image-placeholder i {
    font-size: 2rem;
    opacity: 0.6;
}

.image-placeholder span {
    font-size: 0.75rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-decor-badge {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--verde-profundo);
    color: var(--branco);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    text-align: center;
}

.hero-decor-badge i {
    font-size: 1.5rem;
    color: var(--dourado);
    display: block;
    margin-bottom: 6px;
}

.hero-decor-badge span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-decor-float {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--branco);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatBadge 3s ease-in-out infinite;
}

.hero-decor-float i {
    color: var(--dourado);
    font-size: 1.2rem;
}

.hero-decor-float span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--verde-profundo);
}

/* ============================================
   HERO FULLSCREEN (imagem de capa + overlay)
============================================ */
.hero-section.hero-fullscreen {
    height: 760px;
    min-height: 640px;
    background: #2f4a35;
    padding: 0;
    overflow: hidden;
    align-items: stretch; /* container estica até a altura total */
}

.hero-fullscreen .hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('../images/campo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: saturate(0.85);
    z-index: 0;
}

.hero-fullscreen .hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(30, 50, 35, 0.92) 0%,
            rgba(30, 50, 35, 0.85) 40%,
            rgba(30, 50, 35, 0.65) 70%,
            rgba(30, 50, 35, 0.45) 100%
        ),
        linear-gradient(
            180deg,
            rgba(20, 40, 25, 0.4) 0%,
            rgba(20, 40, 25, 0.6) 100%
        );
    z-index: 1;
}

.hero-fullscreen .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-fullscreen .container > .row {
    height: 100%;
    align-items: center;
}

/* Coluna de texto do hero 2-col */
.hero-col-texto {
    padding-top: 110px;
    padding-bottom: 60px;
    position: relative;
    z-index: 5;
}

.hero-col-texto > * {
    position: relative;
    z-index: 5;
}

.hero-col-texto .hero-subtitle-light {
    max-width: 520px;
    margin-left: 0;
    margin-right: 0;
}

/* Coluna da foto da Carla */
.hero-col-foto {
    position: relative;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: visible;
}

/* Foto da Carla: ancorada à direita do hero, ocupando toda a altura */
.hero-carla-img {
    display: block;
    height: 112%;
    width: auto;
    max-width: none;
    position: absolute;
    bottom: 0;
    right: -15%;
    left: auto;
    transform: none;
    filter: drop-shadow(-12px 0 48px rgba(0, 0, 0, 0.55));
    z-index: 3;
    pointer-events: none;
}

.hero-tag-light {
    background: transparent;
    border: 1.5px solid rgba(201, 169, 110, 0.7);
    color: var(--off-white);
    padding: 12px 26px;
    font-size: 0.78rem;
    letter-spacing: 1.8px;
    margin-bottom: 36px;
}

.hero-tag-light i {
    color: var(--dourado-claro);
    font-size: 1rem;
}

.hero-title-light {
    color: var(--branco);
    font-size: clamp(2.4rem, 4.8vw, 4.4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 28px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.hero-title-light .highlight {
    color: var(--dourado-claro);
    font-style: italic;
}

.hero-title-light .highlight::after {
    display: none;
}

.hero-subtitle-light {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 44px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.btn.btn-branco-hero,
a.btn-branco-hero,
button.btn-branco-hero {
    background-color: #FAF8F5 !important;
    background-image: none !important;
    color: var(--verde-profundo) !important;
    font-family: var(--font-texto);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    padding: 14px 32px;
    border: 2px solid #FAF8F5 !important;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(201, 169, 110, 0.25);
    --bs-btn-bg: #FAF8F5;
    --bs-btn-color: var(--verde-profundo);
    --bs-btn-border-color: #FAF8F5;
    --bs-btn-hover-bg: var(--dourado);
    --bs-btn-hover-color: #FFFFFF;
    --bs-btn-hover-border-color: var(--dourado);
}

.btn.btn-branco-hero:hover,
a.btn-branco-hero:hover,
button.btn-branco-hero:hover {
    background-color: var(--dourado) !important;
    border-color: var(--dourado) !important;
    color: var(--branco) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(201, 169, 110, 0.5);
}

/* Botões da hero — formato de cartão (referência IA) */
.hero-fullscreen .hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: stretch;
}

.hero-fullscreen .hero-buttons .btn {
    border-radius: 14px !important;
    padding: 18px 26px !important;
    text-align: left;
    font-size: 0.92rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.1px;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    min-height: 68px;
    text-shadow: none;
}

.hero-fullscreen .hero-buttons .btn i {
    font-size: 1.1rem;
    margin-right: 12px !important;
    flex-shrink: 0;
}

.hero-fullscreen .hero-buttons .btn-dourado {
    background: var(--dourado);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.35);
}

.hero-fullscreen .hero-buttons .btn-dourado:hover {
    background: var(--dourado-brilho);
}

@media (max-width: 991.98px) {
    .hero-col-foto {
        display: none !important;
    }

    .hero-fullscreen .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(26, 45, 26, 0.82) 0%,
            rgba(20, 35, 20, 0.72) 100%
        );
    }
}

@media (max-width: 767.98px) {
    .hero-section.hero-fullscreen {
        height: auto;
        min-height: 520px;
        text-align: center;
    }

    .hero-fullscreen .container > .row {
        align-items: center;
    }

    .hero-col-texto {
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .hero-title-light {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .hero-col-texto .hero-subtitle-light {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-fullscreen .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

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

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================
   SEÇÃO QUEM É CARLA
============================================ */
.about-section {
    position: relative;
}

.about-image-col {
    position: relative;
}

.about-image-main {
    width: 100%;
    max-width: 450px;
    height: 550px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(44, 95, 45, 0.3), transparent);
    pointer-events: none;
}

.about-decor-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    max-width: 450px;
    height: 550px;
    border: 2px solid var(--dourado);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
}

.about-quote-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--branco);
    padding: 20px 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 250px;
    z-index: 2;
    border-left: 3px solid var(--dourado);
}

.about-quote-badge p {
    font-family: var(--font-titulo);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--verde-profundo);
    margin-bottom: 6px;
    line-height: 1.5;
}

.about-quote-badge span {
    font-size: 0.75rem;
    color: var(--dourado);
    font-weight: 600;
}

.about-info h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.about-info .about-name-highlight {
    color: var(--dourado);
}

.about-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 28px;
}

.about-role-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(44, 95, 45, 0.06);
    border: 1px solid rgba(44, 95, 45, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--verde-profundo);
}

.about-role-tag i {
    color: var(--dourado);
    font-size: 0.7rem;
}

.about-text p {
    color: var(--texto-medio);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-mission {
    background: linear-gradient(135deg, var(--verde-profundo), var(--verde-escuro));
    color: var(--branco);
    padding: 28px 32px;
    border-radius: var(--radius-md);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.about-mission::before {
    content: '\F6B0';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 5rem;
    opacity: 0.06;
}

.about-mission h4 {
    font-family: var(--font-titulo);
    font-size: 1rem;
    color: var(--dourado);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-mission p {
    font-family: var(--font-titulo);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* ============================================
   SEÇÃO TRAJETÓRIA
============================================ */
.trajectory-section {
    position: relative;
    background: linear-gradient(180deg, var(--bege-claro) 0%, var(--off-white) 100%);
}

.timeline {
    position: relative;
    padding: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--dourado), var(--bege-medio));
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 50px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--dourado);
    border: 3px solid var(--off-white);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.2);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-content {
    background: var(--branco);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.timeline-content .year {
    font-family: var(--font-titulo);
    font-size: 0.85rem;
    color: var(--dourado);
    font-weight: 600;
    letter-spacing: 1px;
}

.timeline-content h4 {
    font-family: var(--font-titulo);
    font-size: 1.15rem;
    color: var(--verde-profundo);
    margin: 8px 0;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--texto-medio);
    line-height: 1.6;
}

/* ============================================
   TRAJETÓRIA — CARROSSEL DE CARDS
============================================ */
.trajectory-carousel {
    position: relative;
    margin-top: 40px;
    padding-bottom: 60px;
}

.trajectory-carousel .swiper {
    padding: 10px 5px 50px;
}

.trajectory-card {
    background: var(--branco);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius-lg);
    padding: 36px 28px 32px;
    height: 100%;
    min-height: 280px;
    box-shadow: 0 4px 18px rgba(44, 95, 45, 0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.trajectory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-brilho));
    opacity: 0;
    transition: var(--transition);
}

.trajectory-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(44, 95, 45, 0.12);
    border-color: rgba(201, 169, 110, 0.45);
}

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

.trajectory-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.18), rgba(201, 169, 110, 0.08));
    border: 1px solid rgba(201, 169, 110, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.trajectory-card-icon i {
    font-size: 1.5rem;
    color: var(--dourado);
}

.trajectory-card:hover .trajectory-card-icon {
    background: linear-gradient(135deg, var(--dourado), var(--dourado-brilho));
    border-color: var(--dourado);
}

.trajectory-card:hover .trajectory-card-icon i {
    color: var(--branco);
}

.trajectory-year {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dourado);
    background: rgba(201, 169, 110, 0.08);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.trajectory-card h4 {
    font-family: var(--font-titulo);
    color: var(--verde-profundo);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.35;
}

.trajectory-card p {
    font-size: 0.9rem;
    color: var(--texto-medio);
    line-height: 1.65;
    margin: 0;
}

.trajectory-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.trajectory-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(201, 169, 110, 0.35);
    opacity: 1;
    transition: var(--transition);
}

.trajectory-pagination .swiper-pagination-bullet-active {
    background: var(--dourado);
    width: 28px;
    border-radius: 10px;
}

.trajectory-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
    padding: 0 6px;
}

.trajectory-nav button {
    pointer-events: auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--branco);
    border: 1px solid rgba(201, 169, 110, 0.35);
    color: var(--verde-profundo);
    box-shadow: 0 4px 14px rgba(44, 95, 45, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
}

.trajectory-nav button:hover {
    background: var(--dourado);
    color: var(--branco);
    border-color: var(--dourado);
    transform: scale(1.06);
}

@media (max-width: 991.98px) {
    .trajectory-nav { display: none; }
}

/* Logo Carousel */
.logos-carousel {
    margin-top: 40px;
    padding: 30px 0 10px;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.logos-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 65px;
    background: var(--branco);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 169, 110, 0.12);
    padding: 12px 16px;
    transition: var(--transition);
    opacity: 0.6;
}

.logo-item:hover {
    opacity: 1;
    box-shadow: var(--shadow-sm);
    border-color: var(--dourado);
}

.logo-item span {
    font-family: var(--font-texto);
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--texto-medio);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* ============================================
   SEÇÃO PROJETO
============================================ */
.project-section {
    position: relative;
    overflow: hidden;
}

.project-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(44, 95, 45, 0.04) 0%, transparent 60%);
}

.project-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--verde-profundo), var(--azul-elegante));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.project-icon-box i {
    font-size: 1.8rem;
    color: var(--dourado);
}

.project-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.project-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--branco);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: var(--transition);
}

.project-feature-item:hover {
    border-color: var(--dourado);
    box-shadow: var(--shadow-sm);
}

.project-feature-item i {
    color: var(--dourado);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.project-feature-item h5 {
    font-family: var(--font-titulo);
    font-size: 1rem;
    color: var(--verde-profundo);
    margin-bottom: 4px;
}

.project-feature-item p {
    font-size: 0.85rem;
    color: var(--texto-medio);
    margin: 0;
}

.project-image-wrapper {
    position: relative;
}

.project-image-box {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.project-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   PROJETO — NOVO LAYOUT (referência IA)
============================================ */
.project-section-new {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.project-text-col {
    position: relative;
    z-index: 2;
}

.project-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--dourado);
    font-family: var(--font-texto);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.project-eyebrow-line {
    width: 50px;
    height: 1.5px;
    background: var(--dourado);
    display: inline-block;
}

.project-title {
    font-family: var(--font-titulo);
    color: #1f2a1f;
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 26px;
}

.project-title em {
    color: var(--dourado);
    font-style: italic;
    font-weight: 700;
}

.project-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
    max-width: 360px;
}

.project-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--dourado), transparent);
}

.project-divider span:last-child {
    background: linear-gradient(90deg, var(--dourado), transparent);
}

.project-divider i {
    color: var(--dourado);
    font-size: 0.95rem;
}

.project-desc {
    color: var(--texto-medio);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 14px;
    max-width: 580px;
}

.project-desc strong {
    color: var(--texto-escuro);
    font-weight: 700;
}

/* ---------- Cards de features (2x2) ---------- */
.project-features-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 36px 0 28px;
}

.project-feature-new {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: var(--bege-claro);
    border-radius: 14px;
    border: 1px solid rgba(201, 169, 110, 0.15);
    transition: var(--transition);
}

.project-feature-new:hover {
    border-color: rgba(201, 169, 110, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(44, 95, 45, 0.08);
}

.project-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--verde-profundo);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.25);
}

.project-feature-icon i {
    color: var(--dourado);
    font-size: 1.2rem;
}

.project-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.35;
}

.project-feature-text strong {
    color: var(--texto-escuro);
    font-family: var(--font-texto);
    font-size: 0.92rem;
    font-weight: 700;
}

.project-feature-text span {
    color: var(--texto-medio);
    font-family: var(--font-texto);
    font-size: 0.88rem;
    font-weight: 400;
}

/* ---------- Card de citação ---------- */
.project-quote {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px 28px;
    background: var(--bege-claro);
    border-radius: 14px;
    border: 1px solid rgba(201, 169, 110, 0.15);
    margin-top: 12px;
}

.project-quote-icon {
    color: var(--dourado);
    font-size: 2.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.project-quote p {
    color: var(--texto-escuro);
    font-family: var(--font-titulo);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.project-quote .project-quote-em {
    color: var(--dourado);
    font-style: italic;
    margin-top: 4px;
}

.project-cta {
    margin-top: 28px;
}

.project-cta .btn-dourado {
    border-radius: 12px !important;
    padding: 15px 30px !important;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ---------- Foto vertical ---------- */
.project-photo-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-photo-new {
    width: 100%;
    max-width: 440px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
    background: var(--bege-claro);
}

.project-photo-new img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .project-features-new {
        grid-template-columns: 1fr 1fr;
    }
    .project-photo-new {
        max-width: 380px;
    }
}

@media (max-width: 575.98px) {
    .project-features-new {
        grid-template-columns: 1fr;
    }
    .project-photo-new {
        max-width: 320px;
    }
    .project-feature-new {
        padding: 16px 18px;
    }
}

/* ============================================
   SEÇÃO LIVROS
============================================ */
.books-section {
    background: linear-gradient(180deg, var(--bege-claro) 0%, var(--off-white) 100%);
    position: relative;
    padding: 0 0 100px;
}

/* ============================================
   LIVROS — BANNER TOPO (texto + foto)
============================================ */
.books-hero {
    position: relative;
    padding: 40px 0 70px;
    overflow: hidden;
}

.books-hero-row {
    position: relative;
}

.books-hero-texto {
    padding: 20px 50px 20px 0;
    position: relative;
    z-index: 3;
}

.books-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dourado);
    font-family: var(--font-texto);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.books-hero-tag i {
    color: var(--dourado);
    font-size: 1rem;
}

.books-hero-title {
    font-family: var(--font-titulo);
    color: #1f2a1f;
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
    max-width: 600px;
}

.books-hero-title em {
    color: var(--dourado);
    font-style: italic;
    font-weight: 700;
}

.books-hero-desc {
    color: var(--texto-medio);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.books-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.books-hero-cta .books-btn-primary,
a.books-btn-primary,
.btn.books-btn-primary {
    background: var(--dourado) !important;
    color: var(--branco) !important;
    font-family: var(--font-texto);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 15px 28px !important;
    border-radius: 12px !important;
    border: 2px solid var(--dourado) !important;
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.32);
    transition: var(--transition);
    --bs-btn-bg: var(--dourado);
    --bs-btn-color: var(--branco);
    --bs-btn-border-color: var(--dourado);
}

.books-hero-cta .books-btn-primary:hover,
a.books-btn-primary:hover,
.btn.books-btn-primary:hover {
    background: var(--dourado-brilho) !important;
    border-color: var(--dourado-brilho) !important;
    color: var(--branco) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 169, 110, 0.45);
}

.books-hero-cta .books-btn-outline,
a.books-btn-outline,
.btn.books-btn-outline {
    background: transparent !important;
    color: var(--dourado) !important;
    font-family: var(--font-texto);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 15px 28px !important;
    border-radius: 12px !important;
    border: 1.5px solid rgba(201, 169, 110, 0.5) !important;
    transition: var(--transition);
}

.books-hero-cta .books-btn-outline:hover,
a.books-btn-outline:hover,
.btn.books-btn-outline:hover {
    background: rgba(201, 169, 110, 0.1) !important;
    border-color: var(--dourado) !important;
    color: var(--dourado) !important;
    transform: translateY(-2px);
}

/* Coluna da foto — contida no col, fundo da section continua atrás */
.books-hero-foto-col {
    position: relative;
    min-height: 460px;
}

.books-hero-photo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

.books-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.55) 14%, #000 32%, #000 100%);
            mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.55) 14%, #000 32%, #000 100%);
}

/* ============================================
   LIVROS — GRID GRANDE (5 cards com capas maiores)
============================================ */
.books-grid-title {
    margin-bottom: 36px;
}

.books-grid-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--dourado);
    font-family: var(--font-texto);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0 18px;
    position: relative;
}

.books-grid-eyebrow i {
    color: var(--dourado);
    font-size: 1.05rem;
}

.books-grid-eyebrow::before,
.books-grid-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: rgba(201, 169, 110, 0.4);
}

.books-grid-eyebrow::before { right: 100%; }
.books-grid-eyebrow::after  { left: 100%; }

.books-grid-big {
    margin-bottom: 50px;
}

.book-card-big {
    background: var(--branco);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.18);
    box-shadow: 0 6px 22px rgba(44, 95, 45, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.book-card-big:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(44, 95, 45, 0.16);
    border-color: var(--dourado);
}

.book-big-cover {
    background: var(--bege-claro);
    padding: 24px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 4;
}

.book-big-cover img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
    border-radius: 4px;
    transition: var(--transition);
}

.book-card-big:hover .book-big-cover img {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.book-big-info {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.book-big-info h4 {
    font-family: var(--font-titulo);
    color: var(--verde-profundo);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
}

.book-big-info .book-lang {
    color: var(--texto-medio);
    font-style: italic;
    font-size: 0.85rem;
    font-weight: 400;
    display: block;
}

.book-big-info p {
    color: var(--texto-medio);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}

.btn-saiba-mais-big {
    align-self: flex-start;
    background: none;
    border: none;
    padding: 0;
    color: var(--dourado);
    font-family: var(--font-texto);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-saiba-mais-big:hover {
    color: var(--verde-profundo);
    gap: 12px;
}

@media (max-width: 991.98px) {
    .books-hero-texto {
        padding: 0 0 30px 0;
    }
    .books-hero-foto-col {
        min-height: 380px;
    }
    .books-hero-photo {
        position: relative;
        right: 0;
        left: 0;
        height: 380px;
        border-radius: 18px;
    }
    .books-hero-photo img {
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
                mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
    }
}

.book-card {
    background: var(--branco);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.book-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.book-cover {
    height: auto;
    min-height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--bege-claro);
}

.book-cover img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.book-cover .image-placeholder {
    background: linear-gradient(135deg, var(--verde-profundo), var(--azul-elegante));
}

.book-cover .image-placeholder i {
    font-size: 3rem;
    color: var(--dourado);
    opacity: 0.5;
}

.book-cover .image-placeholder span {
    color: var(--dourado-claro);
}

.book-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--dourado);
    color: var(--branco);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    z-index: 2;
}

.book-badge.spanish {
    background: var(--terracota);
}

.book-badge.devocional {
    background: var(--azul-elegante);
}

.book-info {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.book-info h3 {
    font-family: var(--font-titulo);
    font-size: 1.3rem;
    color: var(--verde-profundo);
    margin-bottom: 14px;
    line-height: 1.3;
}

.book-info p {
    color: var(--texto-medio);
    font-size: 0.9rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.book-info .btn-comprar {
    align-self: flex-start;
}

/* ============================================
   LIVROS — CARDS MINI HORIZONTAIS (5 EM LINHA)
============================================ */
.books-grid-mini {
    margin-top: 30px;
}

.book-card-mini {
    background: var(--branco);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(44, 95, 45, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.18);
    height: 100%;
    display: flex;
    flex-direction: row;
    transition: var(--transition);
}

.book-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(44, 95, 45, 0.16);
    border-color: var(--dourado);
}

.book-mini-cover {
    flex: 0 0 105px;
    background: var(--bege-claro);
    padding: 14px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.book-mini-cover img {
    max-width: 85px;
    max-height: 130px;
    width: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    border-radius: 3px;
}

.book-mini-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--dourado);
    color: var(--branco);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 50px;
    z-index: 2;
}

.book-mini-badge.spanish    { background: var(--terracota); }
.book-mini-badge.devocional { background: var(--azul-elegante); }

.book-mini-info {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.book-mini-info h4 {
    font-family: var(--font-titulo);
    font-size: 0.95rem;
    color: var(--verde-profundo);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 8px;
}

.book-mini-info p {
    color: var(--texto-medio);
    font-size: 0.78rem;
    line-height: 1.5;
    margin: 0 0 12px;
    flex-grow: 1;
}

.btn-saiba-mais {
    align-self: flex-start;
    color: var(--verde-profundo);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    background: rgba(201, 169, 110, 0.12);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(201, 169, 110, 0.35);
    transition: var(--transition);
    cursor: pointer;
}

.btn-saiba-mais:hover {
    background: var(--dourado);
    color: var(--branco);
    border-color: var(--dourado);
    transform: translateX(2px);
}

/* ============================================
   LIVROS — CTA QUANTIDADE (Presenteie)
============================================ */
.livros-cta-quantidade {
    margin-top: 50px;
    padding: 32px 36px;
    background: linear-gradient(135deg, var(--verde-profundo) 0%, #1f4420 100%);
    border-radius: var(--radius-lg);
    color: var(--branco);
    box-shadow: 0 8px 28px rgba(44, 95, 45, 0.25);
    border: 1px solid rgba(201, 169, 110, 0.25);
}

.livros-cta-quantidade h4 {
    font-family: var(--font-titulo);
    color: var(--branco);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
}

.livros-cta-quantidade p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    margin: 0;
}

.livros-cta-quantidade .cta-gift-icon {
    font-size: 2.2rem;
    color: var(--dourado-claro);
    line-height: 1;
}

.livros-cta-quantidade small {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.78rem;
}

@media (max-width: 991.98px) {
    .book-card-mini {
        flex-direction: column;
    }
    .book-mini-cover {
        flex: 0 0 auto;
        min-height: 160px;
        padding: 18px 14px;
    }
    .book-mini-cover img {
        max-width: 110px;
        max-height: 140px;
    }
}

@media (max-width: 767.98px) {
    .livros-cta-quantidade {
        padding: 26px 22px;
        text-align: center;
    }
}

/* ============================================
   MODAL DE DETALHES DO LIVRO
============================================ */
.modal-livro .modal-content {
    background: var(--off-white);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-livro .modal-header {
    background: linear-gradient(135deg, var(--verde-profundo), #1f4420);
    color: var(--branco);
    padding: 24px 28px;
    border-bottom: 3px solid var(--dourado);
    align-items: flex-start;
    gap: 16px;
}

.modal-livro .modal-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dourado-claro);
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.35);
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.modal-livro .modal-title {
    font-family: var(--font-titulo);
    color: var(--branco);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.modal-livro .modal-body {
    padding: 28px;
}

.modal-livro-img {
    max-width: 180px;
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.modal-livro-desc {
    color: var(--texto-medio);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.modal-livro .modal-footer {
    background: rgba(44, 95, 45, 0.04);
    border-top: 1px solid rgba(44, 95, 45, 0.08);
    padding: 18px 28px;
    gap: 10px;
}

/* ============================================
   SEÇÃO PALESTRAS
============================================ */
.talks-section {
    position: relative;
    background: var(--off-white);
    overflow: visible;
    padding-bottom: 100px;
}

.talks-section::before {
    content: none;
}

.talks-content {
    padding-top: 80px;
    position: relative;
}

/* ---------- Banner topo (texto + carrossel) — FULL WIDTH ---------- */
.talks-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 540px;
}

.talks-hero-container {
    position: relative;
    z-index: 2;
}

.talks-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #243a28 0%, #2f4a35 55%, #28402d 100%);
    z-index: 0;
}

.talks-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(0, 0, 0, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(201, 169, 110, 0.06) 0%, transparent 55%);
    z-index: 1;
}

.talks-hero-row {
    position: relative;
    z-index: 2;
    min-height: 540px;
}

.talks-hero-texto {
    padding: 80px 30px 80px 0;
    position: relative;
    z-index: 5;
}

.talks-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dourado-claro);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.talks-hero-tag i {
    color: var(--dourado);
    font-size: 1rem;
}

.talks-hero-title {
    font-family: var(--font-titulo);
    color: var(--branco);
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.talks-hero-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
}

.talks-hero-cta .btn-dourado {
    border-radius: 14px !important;
    padding: 18px 26px !important;
    text-align: left;
    font-size: 0.92rem;
    line-height: 1.3;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.1px;
    display: inline-flex;
    align-items: center;
    min-height: 68px;
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.35);
}

.talks-hero-cta .btn-dourado i {
    font-size: 1.1rem;
    margin-right: 12px !important;
    flex-shrink: 0;
}

.talks-hero-foto-col {
    position: relative;
    align-self: stretch;
    min-height: 540px;
}

/* Foto fica fixa dentro da col, o verde continua full-width à direita */
.talks-hero-photo {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
}

.talks-hero-photo .talksPhotoSwiper {
    width: 100%;
    height: 100%;
}

.talks-hero-photo .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.talks-hero-photo .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
}

.talks-section .section-tag {
    color: var(--dourado-claro);
}

.talks-section .section-tag::before {
    background: var(--dourado-claro);
}

.talks-section .section-title {
    color: var(--branco);
}

.talks-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.talk-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.talk-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.talk-card-bg .image-placeholder {
    border-radius: 0;
}

.talk-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 60, 27, 0.95) 0%, rgba(26, 60, 27, 0.5) 50%, rgba(26, 60, 27, 0.3) 100%);
    z-index: 1;
}

.talk-card:hover {
    transform: translateY(-6px);
    border-color: var(--dourado);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.talk-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.talk-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition);
}

.talk-card:hover .talk-card-icon {
    background: var(--dourado);
}

.talk-card-icon i {
    color: var(--dourado);
    font-size: 1.2rem;
    transition: var(--transition);
}

.talk-card:hover .talk-card-icon i {
    color: var(--branco);
}

.talk-card h4 {
    font-family: var(--font-titulo);
    color: var(--branco);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.talk-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

/* Imagem da seção de palestras */
.talks-image-wrapper {
    position: relative;
}

.talks-image-box {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(201, 169, 110, 0.2);
}

.talks-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.talks-image-box .image-placeholder {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.2), rgba(59, 107, 155, 0.2));
}

/* ============================================
   PALESTRAS — ABERTURA (2 COLUNAS COM FOTO)
============================================ */
.talks-intro .section-title {
    color: var(--branco);
}

.talks-intro .section-subtitle {
    color: rgba(255, 255, 255, 0.78);
}

.talks-intro-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 440px;
    margin-left: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(201, 169, 110, 0.35);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

/* Swiper ocupa todo o container — container precisa de altura definida */
.talks-intro-photo {
    /* já tem aspect-ratio e position:relative; garantir min-height */
    min-height: 320px;
}

.talks-intro-photo .talksPhotoSwiper {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.talks-intro-photo .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

/* gradiente sobre cada slide */
.talks-intro-photo .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 60, 27, 0) 50%, rgba(26, 60, 27, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.talks-intro-photo .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.talks-intro-photo-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    background: var(--dourado);
    color: var(--branco);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 9px 16px;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* paginação do slider de fotos */
.talks-photo-pagination {
    position: absolute;
    bottom: 18px !important;
    right: 18px;
    left: auto !important;
    width: auto !important;
    z-index: 3;
    display: flex;
    gap: 5px;
}
.talks-photo-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.6);
    opacity: 1;
    width: 7px;
    height: 7px;
}
.talks-photo-pagination .swiper-pagination-bullet-active {
    background: var(--dourado);
}

@media (max-width: 991.98px) {
    .talks-intro-photo {
        margin: 20px auto 0;
        max-width: 360px;
    }
}

/* ============================================
   PALESTRAS — TEMAS (4 cards)
============================================ */
.talks-themes-title {
    margin-bottom: 32px;
}

.talks-themes-eyebrow {
    display: inline-block;
    font-family: var(--font-texto);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dourado);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0 18px;
}

.talks-themes-eyebrow::before,
.talks-themes-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: rgba(201, 169, 110, 0.4);
}

.talks-themes-eyebrow::before { right: 100%; }
.talks-themes-eyebrow::after  { left: 100%; }

.talks-themes-grid {
    margin-bottom: 60px;
}

.talk-theme-card {
    background: var(--off-white);
    border: 1px solid rgba(44, 95, 45, 0.12);
    border-radius: 16px;
    padding: 36px 26px 28px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(44, 95, 45, 0.06);
}

.talk-theme-card:hover {
    transform: translateY(-6px);
    border-color: var(--dourado);
    box-shadow: 0 14px 36px rgba(44, 95, 45, 0.16);
}

.talk-theme-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(44, 95, 45, 0.06);
    border: 1.5px solid rgba(44, 95, 45, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.talk-theme-card:hover .talk-theme-icon {
    background: var(--dourado);
    border-color: var(--dourado);
}

.talk-theme-icon i {
    font-size: 1.4rem;
    color: var(--verde-profundo);
    transition: var(--transition);
}

.talk-theme-card:hover .talk-theme-icon i {
    color: var(--branco);
}

.talk-theme-card h3 {
    font-family: var(--font-titulo);
    color: var(--verde-profundo);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 14px;
    min-height: 58px;
}

.talk-theme-desc {
    color: var(--texto-medio);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.talk-theme-ideal {
    color: var(--texto-medio);
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 22px;
    margin-top: auto;
}

.talk-theme-ideal strong {
    color: var(--verde-profundo);
    font-weight: 700;
}

.talk-theme-link {
    background: none;
    border: none;
    padding: 14px 0 4px;
    border-top: 1px solid rgba(44, 95, 45, 0.12);
    color: var(--dourado);
    font-family: var(--font-texto);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.talk-theme-link:hover {
    color: var(--verde-profundo);
    gap: 12px;
}

.talk-theme-link i {
    transition: var(--transition);
}

/* ============================================
   PALESTRAS — FAIXA CTA INFERIOR
============================================ */
.talks-cta-strip {
    display: flex;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, #243a28 0%, #2f4a35 100%);
    border-radius: 18px;
    padding: 32px 40px;
    box-shadow: 0 14px 40px rgba(20, 35, 20, 0.22);
    position: relative;
    overflow: hidden;
}

.talks-cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.talks-cta-strip-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.18);
    border: 1.5px solid rgba(201, 169, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.talks-cta-strip-icon i {
    color: var(--dourado-claro);
    font-size: 1.7rem;
}

.talks-cta-strip-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.talks-cta-strip-text p {
    color: var(--branco);
    font-family: var(--font-titulo);
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 6px;
}

.talks-cta-strip-text span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.5;
}

.talks-cta-strip-btn {
    border-radius: 14px !important;
    padding: 18px 26px !important;
    text-align: left;
    font-size: 0.92rem;
    line-height: 1.3;
    font-weight: 600;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    min-height: 68px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.talks-cta-strip-btn i {
    font-size: 1.1rem;
    margin-right: 12px !important;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .talks-hero {
        min-height: auto;
    }
    .talks-hero-row {
        min-height: auto;
    }
    .talks-hero-texto {
        padding: 60px 16px;
    }
    .talks-hero-foto-col {
        min-height: 380px;
    }
    .talks-hero-photo {
        position: relative;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        height: 380px;
    }
    .talks-hero-photo .swiper-slide img {
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
                mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
    }
    .talks-content {
        padding-top: 60px;
    }
    .talks-cta-strip {
        flex-direction: column;
        text-align: center;
        gap: 22px;
        padding: 32px 28px;
    }
    .talks-cta-strip-btn {
        text-align: center;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .talk-theme-card h3 {
        min-height: auto;
    }
}

/* ============================================
   PALESTRAS — CARDS PRO (LEGADO — não usado)
============================================ */
.talk-card-pro {
    position: relative;
    background: var(--off-white);
    border: 1px solid rgba(44, 95, 45, 0.12);
    border-radius: var(--radius-lg);
    padding: 34px 30px 30px;
    height: 100%;
    color: var(--texto-escuro);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(44, 95, 45, 0.08);
}

.talk-card-pro:hover {
    transform: translateY(-6px);
    border-color: var(--dourado);
    box-shadow: 0 14px 36px rgba(44, 95, 45, 0.18);
}

.talk-card-pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.talk-card-pro-number {
    font-family: var(--font-titulo);
    font-weight: 700;
    font-size: 2rem;
    color: var(--dourado);
    letter-spacing: 1px;
}

.talk-card-pro-head i {
    font-size: 1.9rem;
    color: var(--verde-profundo);
    background: rgba(44, 95, 45, 0.08);
    border: 1px solid rgba(44, 95, 45, 0.18);
    border-radius: 14px;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.talk-card-pro h3 {
    font-family: var(--font-titulo);
    color: var(--verde-profundo);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.talk-subtitle {
    color: var(--dourado);
    font-size: 0.92rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.5;
}

.talk-desc {
    color: var(--texto-medio);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.talk-indicacao {
    background: rgba(44, 95, 45, 0.05);
    border-left: 3px solid var(--verde-profundo);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--texto-medio);
    line-height: 1.55;
    margin-bottom: 22px;
}

.talk-indicacao strong {
    color: var(--verde-profundo);
    font-weight: 600;
}

.talk-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
}

.talk-list li {
    font-size: 0.88rem;
    color: var(--texto-medio);
    display: flex;
    align-items: center;
    gap: 8px;
}

.talk-list li i {
    color: var(--verde-profundo);
    font-size: 1rem;
}

.talk-card-pro .btn-dourado {
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.85rem;
    padding: 12px 26px;
}

.talk-card-pro-featured {
    border-color: rgba(201, 169, 110, 0.5);
    background: var(--bege-claro);
}

.talks-footnote {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-titulo);
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 0.3px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.talks-footnote i {
    color: var(--dourado-claro);
}

@media (max-width: 575.98px) {
    .talk-list {
        grid-template-columns: 1fr;
    }
    .talk-card-pro {
        padding: 28px 22px 26px;
    }
    .talk-card-pro h3 {
        font-size: 1.2rem;
    }
}

/* ============================================
   MODAL DE INTERESSE
============================================ */
.modal-interesse .modal-content {
    background: var(--off-white);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-interesse .modal-header {
    background: linear-gradient(135deg, var(--verde-profundo), #1f4420);
    color: var(--branco);
    padding: 28px 32px;
    border-bottom: 3px solid var(--dourado);
    align-items: flex-start;
    gap: 16px;
}

.modal-interesse .modal-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dourado-claro);
    margin-bottom: 6px;
}

.modal-interesse .modal-title {
    font-family: var(--font-titulo);
    color: var(--branco);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.modal-interesse .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.75;
    margin: 0;
}

.modal-interesse .btn-close:hover {
    opacity: 1;
}

.modal-interesse .modal-body {
    padding: 30px 32px 34px;
}

.modal-interesse .modal-lead {
    color: var(--texto-medio);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-interesse input[readonly] {
    background: rgba(201, 169, 110, 0.08);
    color: var(--verde-profundo);
    font-weight: 600;
    cursor: default;
}

@media (max-width: 575.98px) {
    .modal-interesse .modal-header,
    .modal-interesse .modal-body {
        padding: 22px 20px;
    }
    .modal-interesse .modal-title {
        font-size: 1.15rem;
    }
}

/* ============================================
   SEÇÃO CAFÉ COM CARLA
============================================ */
.cafe-section {
    position: relative;
    overflow: hidden;
}

.cafe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 80%, rgba(201, 169, 110, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(44, 95, 45, 0.04) 0%, transparent 40%);
}

.cafe-card {
    background: linear-gradient(135deg, var(--branco), var(--bege-claro));
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cafe-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cafe-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--dourado), var(--dourado-brilho));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 6px 25px rgba(201, 169, 110, 0.3);
}

.cafe-icon-wrapper i {
    font-size: 2rem;
    color: var(--branco);
}

.cafe-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cafe-feature {
    text-align: center;
    max-width: 180px;
}

.cafe-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(44, 95, 45, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.cafe-feature-icon i {
    color: var(--verde-profundo);
    font-size: 1.1rem;
}

.cafe-feature h5 {
    font-family: var(--font-titulo);
    font-size: 0.95rem;
    color: var(--verde-profundo);
    margin-bottom: 4px;
}

.cafe-feature p {
    font-size: 0.8rem;
    color: var(--texto-medio);
}

/* Café com Carla — Imagem */
.cafe-image-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.cafe-image-box {
    width: 100%;
    max-width: 500px;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(201, 169, 110, 0.15);
}

.cafe-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

.cafe-image-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dourado);
    color: var(--branco);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
    white-space: nowrap;
}

/* ============================================
   CAFÉ COM CARLA — NOVO CARD (referência IA)
============================================ */
.cafe-card-new {
    position: relative;
    background: linear-gradient(135deg, #243a28 0%, #2e4a33 50%, #28402d 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(20, 35, 20, 0.28);
}

.cafe-card-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 90%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.cafe-leaf-decor {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 70px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.85;
}

.cafe-card-row {
    position: relative;
    z-index: 3;
}

/* ---------- Coluna do conteúdo ---------- */
.cafe-card-row > .cafe-card-content {
    padding: 70px 50px 60px 130px !important;
    color: var(--branco);
}

.cafe-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--dourado-claro);
    font-family: var(--font-texto);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.cafe-eyebrow i {
    color: var(--dourado);
    font-size: 1.05rem;
}

.cafe-title {
    font-family: var(--font-titulo);
    color: var(--branco);
    font-size: clamp(1.8rem, 2.6vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.3px;
    margin-bottom: 22px;
    max-width: 520px;
}

.cafe-title em {
    color: var(--dourado-claro);
    font-style: italic;
    font-weight: 700;
}

.cafe-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    max-width: 320px;
}

.cafe-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.5), transparent);
}

.cafe-divider i {
    color: var(--dourado);
    font-size: 0.9rem;
}

.cafe-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 18px;
    max-width: 540px;
}

.cafe-desc strong {
    color: var(--branco);
    font-weight: 600;
}

.cafe-features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 32px 0 36px;
    max-width: 520px;
}

.cafe-feature-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cafe-feature-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cafe-feature-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.cafe-feature-icon-circle i {
    color: var(--verde-profundo);
    font-size: 1.05rem;
}

.cafe-feature-row p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.94rem;
    line-height: 1.5;
    margin: 0;
}

.cafe-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.cafe-actions .cafe-btn-primary,
a.cafe-btn-primary,
.btn.cafe-btn-primary {
    background: var(--dourado) !important;
    background-image: none !important;
    color: var(--branco) !important;
    font-family: var(--font-texto);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 15px 28px !important;
    border-radius: 12px !important;
    border: 2px solid var(--dourado) !important;
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
    transition: var(--transition);
    --bs-btn-bg: var(--dourado);
    --bs-btn-color: var(--branco);
    --bs-btn-border-color: var(--dourado);
    --bs-btn-hover-bg: var(--dourado-brilho);
    --bs-btn-hover-color: var(--branco);
    --bs-btn-hover-border-color: var(--dourado-brilho);
}

.cafe-actions .cafe-btn-primary:hover,
a.cafe-btn-primary:hover,
.btn.cafe-btn-primary:hover {
    background: var(--dourado-brilho) !important;
    border-color: var(--dourado-brilho) !important;
    color: var(--branco) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 169, 110, 0.5);
}

.cafe-actions .cafe-btn-outline,
a.cafe-btn-outline,
.btn.cafe-btn-outline {
    background: transparent !important;
    background-image: none !important;
    color: var(--branco) !important;
    font-family: var(--font-texto);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 15px 28px !important;
    border-radius: 12px !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    transition: var(--transition);
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--branco);
    --bs-btn-border-color: rgba(255, 255, 255, 0.4);
}

.cafe-actions .cafe-btn-outline:hover,
a.cafe-btn-outline:hover,
.btn.cafe-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    color: var(--branco) !important;
    transform: translateY(-2px);
}

.cafe-quote {
    color: var(--dourado-claro);
    font-family: var(--font-titulo);
    font-style: italic;
    font-size: 1.05rem;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cafe-quote em {
    font-style: italic;
}

.cafe-quote i {
    color: var(--dourado);
    font-size: 1rem;
}

/* ---------- Coluna da foto ---------- */
.cafe-card-row > .cafe-card-photo-col {
    padding: 30px 30px 30px 0 !important;
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.cafe-card-photo {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
    background: var(--bege-claro);
}

.cafe-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 540px;
}

@media (max-width: 991.98px) {
    .cafe-card-row > .cafe-card-content {
        padding: 50px 32px 40px 90px !important;
    }
    .cafe-leaf-decor {
        width: 60px;
    }
    .cafe-card-row > .cafe-card-photo-col {
        padding: 0 24px 30px !important;
        min-height: auto;
    }
    .cafe-card-photo img {
        min-height: 380px;
    }
}

@media (max-width: 575.98px) {
    .cafe-card-row > .cafe-card-content {
        padding: 44px 22px 36px 22px !important;
    }
    .cafe-leaf-decor {
        display: none;
    }
    .cafe-actions {
        flex-direction: column;
    }
    .cafe-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   SEÇÃO CONTATO
============================================ */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, var(--verde-profundo), var(--verde-escuro));
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(59, 107, 155, 0.08) 0%, transparent 40%);
}

.contact-section .section-tag {
    color: var(--dourado-claro);
}

.contact-section .section-tag::before {
    background: var(--dourado-claro);
}

.contact-section .section-title {
    color: var(--branco);
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-lg);
    padding: 36px;
    height: 100%;
}

.contact-info-card h3 {
    font-family: var(--font-titulo);
    color: var(--branco);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item .icon-circle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(201, 169, 110, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item .icon-circle i {
    color: var(--dourado);
    font-size: 1rem;
}

.contact-info-item h5 {
    font-family: var(--font-texto);
    color: var(--branco);
    font-size: 0.85rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.contact-info-item a:hover {
    color: var(--dourado);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link {
    width: 46px;
    height: 46px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link i {
    color: var(--dourado);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--dourado);
    border-color: var(--dourado);
    transform: translateY(-3px);
}

.social-link:hover i {
    color: var(--branco);
}

/* Form */
.contact-form-card {
    background: var(--branco);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.contact-form-card h3 {
    font-family: var(--font-titulo);
    color: var(--verde-profundo);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-card .form-subtitle {
    color: var(--texto-medio);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 20px;
}

.form-floating-custom input,
.form-floating-custom textarea,
.form-floating-custom select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--bege-medio);
    border-radius: var(--radius-sm);
    font-family: var(--font-texto);
    font-size: 0.9rem;
    color: var(--texto-escuro);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}

.form-floating-custom select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16' fill='%23C9A96E'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
    cursor: pointer;
}

.form-floating-custom input:focus,
.form-floating-custom textarea:focus,
.form-floating-custom select:focus {
    border-color: var(--dourado);
    background-color: var(--branco);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-floating-custom input::placeholder,
.form-floating-custom textarea::placeholder {
    color: #b5b0a8;
}

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

.form-floating-custom label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--texto-medio);
    margin-bottom: 6px;
    display: block;
    letter-spacing: 0.5px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--verde-escuro);
    padding: 40px 0 20px;
    position: relative;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    font-family: var(--font-titulo);
    font-size: 1.2rem;
    color: var(--branco);
    font-weight: 600;
}

.footer-brand span {
    color: var(--dourado);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--dourado);
    background: rgba(201, 169, 110, 0.1);
}

.footer-social a:hover i {
    color: var(--dourado);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-bottom a {
    color: var(--dourado);
}

.footer-bottom a:hover {
    color: var(--dourado-claro);
}

/* ============================================
   BACK TO TOP & WHATSAPP
============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--dourado);
    color: var(--branco);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--terracota);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulseWpp 2s infinite;
}

.whatsapp-float i {
    color: var(--branco);
    font-size: 1.6rem;
}

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

@keyframes pulseWpp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   RESPONSIVE — TABLET (max 991px)
============================================ */
@media (max-width: 991.98px) {
    .hero-image-frame {
        width: 340px;
        height: 420px;
        margin: 40px auto 0;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-decor-badge {
        left: 10px;
        bottom: -10px;
    }

    .hero-decor-float {
        right: 10px;
        top: 10px;
    }

    .about-image-main {
        max-width: 350px;
        height: 420px;
        margin: 0 auto;
    }

    .about-decor-frame {
        max-width: 350px;
        height: 420px;
    }

    /* Quote badge reposicionado para tablet */
    .about-quote-badge {
        position: absolute;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 20px !important;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item .timeline-dot {
        left: 12px !important;
        right: auto !important;
    }

    .project-features {
        grid-template-columns: 1fr;
    }

    .cafe-card {
        padding: 36px 24px;
    }

    .cafe-features {
        gap: 24px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (max 767px)
============================================ */
@media (max-width: 767.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .section-padding-lg {
        padding: 80px 0;
    }

    /* ---- HERO ---- */
    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        margin-top: 30px;
        padding-top: 20px;
        gap: 20px;
    }

    .hero-image-frame {
        width: 100%;
        max-width: 320px;
        height: 420px;
        margin: 20px auto 0;
    }

    .hero-bg-decor .circle-1,
    .hero-bg-decor .circle-2 {
        display: none;
    }

    .hero-decor-badge {
        left: 10px;
        bottom: 10px;
    }

    .hero-decor-float {
        right: 10px;
        top: 10px;
    }

    /* ---- ABOUT (Quem é Carla) ---- */
    .about-image-col .position-relative {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-image-main {
        max-width: 280px;
        height: 380px;
        margin: 0 auto;
    }

    .about-decor-frame {
        display: none;
    }

    /* Badge da citação fica SOBREPOSTO na imagem (canto inferior) */
    .about-quote-badge {
        position: absolute;
        bottom: -20px;
        right: -10px;
        left: auto;
        transform: none;
        max-width: 220px;
        padding: 16px 20px;
    }

    .about-quote-badge p {
        font-size: 0.82rem;
    }

    .about-quote-badge span {
        font-size: 0.7rem;
    }

    .about-info {
        margin-top: 40px;
    }

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

    .about-roles {
        justify-content: center;
    }

    .section-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    /* ---- CARROSSEL ---- */
    .logos-carousel {
        margin-top: 24px;
        padding: 20px 0 0;
    }

    /* ---- PALESTRAS ---- */
    .talks-image-box {
        height: 280px;
    }

    /* ---- CONTATO ---- */
    .contact-form-card {
        padding: 28px;
    }

    /* ---- FOOTER ---- */
    .footer-top,
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    /* ---- CAFÉ COM CARLA ---- */
    .cafe-card {
        padding: 28px 16px;
    }

    .cafe-card::before {
        display: none;
    }

    .cafe-image-box {
        height: 250px;
        max-width: 100%;
    }

    .cafe-image-wrapper {
        margin-bottom: 30px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE PEQUENO (max 575px)
============================================ */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-stat h3 {
        font-size: 1.5rem;
    }

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

    .hero-image-frame {
        max-width: 280px;
        height: 360px;
    }

    .hero-decor-badge,
    .hero-decor-float {
        display: none;
    }

    .btn-dourado,
    .btn-verde,
    .btn-outline-dourado {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    /* About: badge menor em telas bem pequenas */
    .about-image-main {
        max-width: 250px;
        height: 340px;
    }

    .about-quote-badge {
        max-width: 200px;
        padding: 14px 16px;
        bottom: -16px;
        right: -5px;
    }

    .about-quote-badge p {
        font-size: 0.78rem;
    }
}

/* ============================================
   BANNER DE COOKIES (LGPD)
============================================ */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2000;
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(20, 35, 20, 0.28);
    padding: 22px 26px;
    transform: translateY(140%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
    pointer-events: none;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-banner-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.14);
    border: 1px solid rgba(201, 169, 110, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-banner-icon i {
    font-size: 1.5rem;
    color: var(--dourado);
}

.cookie-banner-text {
    flex: 1;
    min-width: 0;
}

.cookie-banner-text h4 {
    font-family: var(--font-titulo);
    color: var(--verde-profundo);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.cookie-banner-text p {
    color: var(--texto-medio);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--dourado);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-texto);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn-reject {
    background: transparent;
    color: var(--texto-medio);
    border: 1.5px solid rgba(90, 85, 80, 0.3);
}

.cookie-btn-reject:hover {
    border-color: var(--texto-medio);
    color: var(--texto-escuro);
}

.cookie-btn-accept {
    background: var(--dourado);
    color: var(--branco);
    border: 1.5px solid var(--dourado);
    box-shadow: 0 6px 18px rgba(201, 169, 110, 0.32);
}

.cookie-btn-accept:hover {
    background: var(--dourado-brilho);
    border-color: var(--dourado-brilho);
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .cookie-banner {
        padding: 20px;
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .cookie-banner-actions {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* ============================================
   SEÇÃO INSTAGRAM
============================================ */
.insta-section {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--bege-claro) 100%);
    position: relative;
    overflow: hidden;
}

.insta-head {
    margin-bottom: 40px;
}

.insta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dourado);
    font-family: var(--font-texto);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.insta-eyebrow i { font-size: 1.1rem; }

.insta-title {
    font-family: var(--font-titulo);
    color: var(--verde-profundo);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}

.insta-desc {
    color: var(--texto-medio);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0;
}

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #C9A96E, #E0C992);
    color: var(--branco) !important;
    font-family: var(--font-texto);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
    transition: var(--transition);
}

.insta-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 169, 110, 0.5);
    color: var(--branco) !important;
}

.insta-carousel {
    position: relative;
}

.insta-post {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 8px 24px rgba(44, 95, 45, 0.1);
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.insta-post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.55), rgba(201, 169, 110, 0.55));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.insta-post-overlay i {
    color: #fff;
    font-size: 2.2rem;
}

.insta-post:hover img { transform: scale(1.08); }
.insta-post:hover .insta-post-overlay { opacity: 1; }

.insta-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.insta-prev,
.insta-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 169, 110, 0.4);
    background: #fff;
    color: var(--verde-profundo);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.insta-prev:hover,
.insta-next:hover {
    background: var(--dourado);
    border-color: var(--dourado);
    color: #fff;
    transform: translateY(-2px);
}
