﻿:root {
    --choco-deep: #F5EDE2;
    --choco-mid: #EBE1D5;
    --choco-warm: #DDD4C5;
    --gold: #996E5F;
    --gold-light: #DAB88B;
    --cream: #3E4460;
    --cream-light: #FEFAF6;
    --text-dark: #2A2E42;
    --text-mid: #3E4460;
    --white: #FFFFFF;
    --rose: #B8826E;
    --rose-light: #DAB88B;
    /* Escala tipográfica */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    --text-label: 10px;
    /* badges, labels uppercase */
    --text-sm: 12px;
    /* metadados, rodapés */
    --text-base: 13px;
    /* listas, descrições compactas */
    --text-md: 14px;
    /* body geral */
    --text-body: 15px;
    /* corpo principal */
    --leading-body: 1.8;
    --leading-tight: 1.15;
    --tracking-label: 4px;
    --tracking-nav: 2.5px;
    --tracking-btn: 2px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream-light);
    color: var(--text-dark);
    overflow-x: hidden;
}


/* ===== NAV ===== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 250, 246, 0.97);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 72px;
    border-bottom: 1px solid rgba(153, 110, 95, 0.3);
    overflow: visible;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-svg {
    flex-shrink: 0;
    display: block;
}


.nav-logo-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--choco-deep);
    border: 1px solid;
    padding: 3px 7px;
}
.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.nav-logo-text span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold-light);
    font-family: 'Jost', sans-serif;
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-links a {
    display: block;
    padding: 0 16px;
    height: 70px;
    line-height: 70px;
    color: rgba(62, 68, 96, 0.75);
    text-decoration: none;
    font-size: 10.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--choco-deep) !important;
    padding: 0 24px !important;
    font-weight: 600 !important;
    border-radius: 2px;
    letter-spacing: 1.5px !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    border-bottom-color: transparent !important;
}


/* ===== HERO ===== */

.hero {
    min-height: 100vh;
    background: var(--choco-deep);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    overflow: visible;
    padding: 72px 0 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245,237,226,0) 0%, rgba(218,184,139,0.08) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23996E5F' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}


/* Decorative lines */

.hero-line {
    position: absolute;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    width: 1px;
    height: 60%;
    opacity: 0.3;
}

.hero-line:nth-child(1) {
    left: 15%;
    top: 20%;
}

.hero-line:nth-child(2) {
    right: 15%;
    top: 10%;
    height: 80%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    align-items: start;
    gap: 0 4rem;
    width: 100%;
    flex: 1;
}

.hero-label {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-banner-img {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    width: 100%;
    flex-shrink: 0;
    margin-bottom: 2.5rem;
}

.hero-banner-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center 55%;
    display: block;
}

.hero-banner-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(245, 237, 226, 0) 50%,
        rgba(245, 237, 226, 0.45) 80%,
        rgba(245, 237, 226, 0.72) 100%
    );
    pointer-events: none;
}

.hero-banner-img .hero-label {
    position: absolute;
    bottom: 16px;
    left: 20px;
    margin-bottom: 0;
    color: rgba(42, 26, 12, 0.85);
    text-shadow: none;
    font-weight: 700;
    z-index: 2;
}

.hero-banner-img .hero-label::before {
    background: rgba(42, 26, 12, 0.55);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.0;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-title strong {
    font-weight: 700;
    color: var(--gold-light);
    font-style: italic;
}

.hero-desc {
    font-size: var(--text-body);
    color: rgba(62, 68, 96, 0.75);
    line-height: var(--leading-body);
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 440px;
}

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

.btn-primary {
    background: var(--rose);
    color: var(--cream);
    padding: 15px 36px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--rose-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 144, 106, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--text-mid);
    padding: 14px 36px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(62, 68, 96, 0.30);
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    border: 1px solid rgba(153, 110, 95, 0.20);
    padding: 28px 24px;
    background: rgba(245, 237, 226, 0.6);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s;
}

.stat-card:hover::before {
    height: 100%;
}

.stat-card:hover {
    border-color: rgba(153, 110, 95, 0.5);
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(62, 68, 96, 0.60);
    font-weight: 400;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(62, 68, 96, 0.40);
    font-size: var(--text-label);
    letter-spacing: var(--tracking-label);
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(153, 110, 95, 0.6), transparent);
}

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


/* ===== SECTIONS GENERAL ===== */

section {
    padding: 100px 4rem;
}

.section-label {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 300;
    color: var(--choco-deep);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-title strong {
    font-weight: 700;
    font-style: italic;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin-bottom: 2rem;
}


/* ===== PRAZOS BANNER ===== */

.prazos-banner {
    background: var(--choco-deep);
    padding: 40px 4rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.prazo-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--cream);
}

.prazo-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.prazo-text strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold-light);
    font-weight: 600;
    line-height: 1;
}

.prazo-text span {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(62, 68, 96, 0.55);
    text-transform: uppercase;
}

.prazo-divider {
    width: 1px;
    height: 60px;
    background: rgba(153, 110, 95, 0.2);
}


/* ===== MISSÃO VISÃO VALORES ===== */

#missao {
    background: var(--cream-light);
    max-width: 1400px;
    margin: 0 auto;
}

.mvv-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-header {
    margin-bottom: 4rem;
}

.mvv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
}

.mvv-card {
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.mvv-card:nth-child(1) {
    background: var(--choco-deep);
}

.mvv-card:nth-child(2) {
    background: var(--choco-mid);
}

.mvv-card:nth-child(3) {
    background: var(--choco-warm);
    grid-row: span 1;
}

.mvv-card-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(153, 110, 95, 0.15);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.mvv-card-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.mvv-card-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    line-height: var(--leading-tight);
}

.mvv-card-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(153, 110, 95, 0.6);
    margin-bottom: 1.5rem;
}

.mvv-card-text {
    font-size: var(--text-md);
    line-height: var(--leading-body);
    color: rgba(62, 68, 96, 0.75);
    font-weight: 400;
}

.valores-section {
    background: var(--cream-light);
    padding: 60px 4rem;
    margin-top: 2px;
}

.valores-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.valor-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid rgba(45, 51, 80, 0.12);
}

.valor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.valor-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--choco-deep);
    margin-bottom: 4px;
}

.valor-desc {
    font-size: var(--text-md);
    color: var(--text-mid);
    line-height: var(--leading-body);
}


/* ===== CARDÁPIO ===== */

#cardapio {
    background: linear-gradient(180deg, var(--choco-deep) 0%, var(--choco-mid) 100%);
    padding: 100px 4rem 45px;
    color: #ffffff;
}

.cardapio-wrapper {
    max-width: none;
}

.cardapio-header {
    max-width: 900px;
}

.cardapio-header .section-title {
    color: var(--cream);
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 3rem;
    border-bottom: none;
    flex-wrap: wrap;
}

.tab {
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
    cursor: pointer;
    border: 1.5px solid rgba(153, 110, 95, 0.35);
    border-radius: 2px;
    transition: all 0.3s;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.55);
}

.tab:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.75);
}

.tab.active {
    color: #fff;
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(153, 110, 95, 0.35);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Bolos */

.bolos-intro {
    background: rgba(153, 110, 95, 0.08);
    border: 1px solid rgba(153, 110, 95, 0.2);
    padding: 20px 28px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bolos-intro span {
    font-size: var(--text-md);
    color: rgba(62, 68, 96, 0.72);
}

.bolos-intro strong {
    color: var(--gold-light);
}

.preco-section {
    margin-bottom: 3rem;
}

.preco-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    max-width: 100%;
    flex-wrap: wrap;
}

.preco-badge {
    background: var(--gold);
    color: var(--choco-deep);
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.preco-line {
    flex: 1;
    min-width: 20px;
    max-width: 200px;
    height: 1px;
    background: rgba(153, 110, 95, 0.2);
}

.bolos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.bolo-item {
    background: rgba(62, 68, 96, 0.04);
    border: 1px solid rgba(153, 110, 95, 0.12);
    padding: 18px 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.bolo-item:hover {
    border-color: rgba(153, 110, 95, 0.4);
    background: rgba(62, 68, 96, 0.07);
}

.bolo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 6px;
}

.bolo-desc {
    font-size: var(--text-base);
    color: rgba(62, 68, 96, 0.5);
    line-height: 1.65;
}


/* Doces */

.doces-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.doce-col {
    background: rgba(62, 68, 96, 0.03);
    border: 1px solid rgba(153, 110, 95, 0.12);
    overflow: hidden;
}

.doce-col-header {
    background: var(--gold);
    padding: 12px 16px;
    text-align: center;
}

.doce-col-header .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--choco-deep);
    line-height: 1;
}

.doce-col-header .cat {
    font-size: var(--text-label);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(62, 68, 96, 0.7);
    margin-top: 2px;
}

.doce-list {
    padding: 12px;
    list-style: none;
}

.doce-list li {
    font-size: var(--text-sm);
    color: rgba(62, 68, 96, 0.68);
    padding: 5px 0;
    border-bottom: 1px solid rgba(153, 110, 95, 0.06);
    line-height: 1.5;
}

.doce-list li:last-child {
    border-bottom: none;
}

.doce-list li.special {
    color: var(--gold-light);
    font-weight: 500;
}


/* Kits */

.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.kit-card {
    border: 1px solid rgba(153, 110, 95, 0.2);
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
}

.kit-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.kit-card-header {
    padding: 28px 24px 20px;
    background: rgba(62, 68, 96, 0.04);
}

.kit-tag {
    font-size: var(--text-label);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.kit-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 4px;
}

.kit-people {
    font-size: 11px;
    color: rgba(62, 68, 96, 0.4);
    letter-spacing: 1px;
}

.kit-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    padding: 16px 24px;
    border-top: 1px solid rgba(153, 110, 95, 0.15);
    border-bottom: 1px solid rgba(153, 110, 95, 0.15);
}

.kit-includes {
    padding: 16px 24px;
    list-style: none;
}

.kit-includes li {
    font-size: var(--text-base);
    color: rgba(62, 68, 96, 0.65);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kit-includes li::before {
    content: '✓';
    color: var(--gold);
    font-size: 10px;
}

.kit-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--choco-deep);
    font-size: var(--text-label);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
}


/* Personalizados */

.pers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.pers-item {
    border: 1px solid rgba(153, 110, 95, 0.12);
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.pers-item:hover {
    border-color: rgba(153, 110, 95, 0.4);
    background: rgba(153, 110, 95, 0.05);
}

.pers-name {
    font-size: var(--text-base);
    color: rgba(62, 68, 96, 0.72);
    line-height: 1.4;
    flex: 1;
}

.pers-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    margin-left: 12px;
}


/* ===== LIGHTBOX GALERIA EVENTOS ===== */
#lb-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
#lb-modal.ativo { display: flex; }
#lb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,14,24,0.92);
}
#lb-box {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 92vw;
    max-height: 92vh;
    position: relative;
}
#lb-box.lb-loading::after {
    content: '';
    position: absolute;
    width: 44px;
    height: 44px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: lb-spin 0.75s linear infinite;
    z-index: 20;
}
@keyframes lb-spin { to { transform: rotate(360deg); } }
#lb-img {
    max-width: 88vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.7);
    display: block;
    position: relative;
    z-index: 1;
    transition: opacity 0.2s;
}
#lb-box.lb-loading #lb-img {
    opacity: 0.15;
}
#lb-close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: rgba(30,30,30,0.65);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}
#lb-close:hover { background: rgba(30,30,30,0.92); }
#lb-prev, #lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30,30,30,0.65);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}
#lb-prev { left: 20px; }
#lb-next { right: 20px; }
#lb-prev:hover, #lb-next:hover { background: rgba(30,30,30,0.92); }
#lb-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    background: rgba(0,0,0,0.4);
    padding: 4px 14px;
    border-radius: 20px;
    z-index: 10;
}
@media (max-width: 768px) {
    #lb-prev { left: 8px; }
    #lb-next { right: 8px; }
    #lb-prev, #lb-next { width: 40px; height: 40px; }
}

/* ===== MOMENTOS / EVENTOS ===== */

#momentos {
    background: linear-gradient(135deg, var(--choco-deep) 0%, var(--choco-mid) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.momentos-inner {
    padding: 0 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.momentos-header {
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 2rem;
}

.momentos-headline-img {
    width: 100%;
    margin-bottom: 3rem;
    overflow: hidden;
    border-radius: 2px;
    max-height: 420px;
}

.momentos-headline-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.7s ease;
}

.momentos-headline-img img:hover {
    transform: scale(1.03);
}

.momentos-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    border-left: 3px solid var(--gold);
    padding-left: 24px;
}


/* ===== FOTOS EVENTOS ===== */
.evento-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: var(--choco-mid);
}
.evento-card-body {
    padding: 24px 28px 28px;
}
.eventos-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 4rem;
}

.evento-card {
    background: var(--choco-deep);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

.evento-card:hover {
    transform: translateY(-6px);
}

.evento-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.evento-card:hover::after {
    transform: scaleX(1);
}

.evento-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.evento-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 8px;
}

.evento-desc {
    font-size: var(--text-base);
    color: rgba(62, 68, 96, 0.55);
    line-height: var(--leading-body);
}

.depoimentos-section {
    margin-top: 4rem;
}

.depo-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.depo-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

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

.depo-card {
    background: var(--cream-light);
    border: 1px solid rgba(45, 51, 80, 0.1);
    padding: 28px;
    position: relative;
    transition: all 0.3s;
}

.depo-card:hover {
    border-color: rgba(153, 110, 95, 0.3);
    box-shadow: 0 8px 30px rgba(45, 51, 80, 0.08);
}

.depo-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.depo-text {
    font-size: var(--text-md);
    color: var(--text-dark);
    line-height: var(--leading-body);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.depo-stars {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.depo-author {
    font-size: var(--text-sm);
    color: #111111;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.depo-author span {
    display: block;
    color: var(--text-mid);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: var(--text-sm);
    margin-top: 2px;
}


/* ===== ORÇAMENTO ===== */

#orcamento {
    background: linear-gradient(135deg, var(--choco-mid) 0%, var(--choco-deep) 100%);
    padding: 45px 4rem 100px;
}

.orcamento-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
}

.orcamento-info .section-title {
    color: var(--cream);
}

.orcamento-features {
    list-style: none;
    margin-top: 2rem;
}

.orcamento-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--text-md);
    color: rgba(62, 68, 96, 0.65);
    padding: 10px 0;
    border-bottom: 1px solid rgba(153, 110, 95, 0.1);
}

.orcamento-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.form-card {
    background: rgba(62, 68, 96, 0.04);
    border: 1px solid rgba(153, 110, 95, 0.2);
    padding: 40px;
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--cream);
    font-weight: 600;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(153, 110, 95, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(62, 68, 96, 0.05);
    border: 1px solid rgba(153, 110, 95, 0.2);
    color: var(--cream);
    padding: 12px 16px;
    font-size: var(--text-body);
    font-family: var(--font-body);
    transition: all 0.3s;
    outline: none;
}

.form-input::placeholder {
    color: rgba(62, 68, 96, 0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold);
    background: rgba(62, 68, 96, 0.08);
}

.form-select option {
    background: var(--choco-deep);
    color: var(--cream);
}

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

.form-submit {
    width: 100%;
    background: var(--rose);
    color: var(--cream);
    border: none;
    padding: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Jost', sans-serif;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--rose-light);
    box-shadow: 0 8px 30px rgba(201, 144, 106, 0.45);
}


/* ===== LOCALIZAÇÃO ===== */

.localizacao {
    background: var(--cream-light);
    padding: 80px 4rem;
}

.loc-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.loc-info .section-title {
    color: var(--choco-deep);
}

.loc-details {
    list-style: none;
    margin-top: 2rem;
}

.loc-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(45, 51, 80, 0.08);
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.5;
}

.loc-details .icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.loc-details strong {
    color: var(--choco-deep);
    display: block;
    margin-bottom: 2px;
}

.loc-map {
    background: var(--choco-deep);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(153, 110, 95, 0.2);
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.loc-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(153, 110, 95, 0.1) 0%, transparent 70%);
}

.loc-map:hover {
    border-color: var(--gold);
}

.loc-map span {
    color: rgba(62, 68, 96, 0.5);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.loc-map .map-icon {
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.loc-map .map-btn {
    background: var(--gold);
    color: var(--choco-deep);
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}


/* ===== FOOTER ===== */

footer {
    background: linear-gradient(135deg, var(--choco-deep) 0%, var(--choco-mid) 100%);
    padding: 60px 4rem 30px;
    border-top: 1px solid rgba(153, 110, 95, 0.15);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(153, 110, 95, 0.1);
    margin-bottom: 30px;
}

.footer-brand .nav-logo-text {
    font-size: 22px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(62, 68, 96, 0.4);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(153, 110, 95, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--choco-deep);
}

.footer-col-title {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    padding: 6px 0;
    font-size: 13px;
    color: rgba(62, 68, 96, 0.4);
    border-bottom: 1px solid rgba(153, 110, 95, 0.05);
    transition: color 0.2s;
    cursor: pointer;
}

.footer-links li:hover {
    color: var(--gold-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(62, 68, 96, 0.2);
}


/* ===== WHATSAPP FLOATING ===== */

.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25D366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    animation: pulse-wa 2s infinite;
    transition: transform 0.2s;
}

.wa-float:hover {
    transform: scale(1.1);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    }
}


/* ===== FONT AWESOME ICON COLORS ===== */

.prazo-icon i {
    color: var(--gold);
}

.mvv-card-icon {
    color: var(--gold-light);
}

.evento-icon {
    color: var(--gold);
}

.loc-details .icon i {
    color: var(--gold);
}

.loc-map .map-icon {
    color: var(--gold);
}

.loc-map .map-icon i {
    color: var(--gold);
}

.tab i {
    font-size: 13px;
    margin-right: 5px;
}


/* ===== SCROLLBAR ===== */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--choco-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
}


/* ===== RESPONSIVE ===== */

/* ===== HAMBURGER MENU ===== */

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

.nav-hamburger.ativo span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.ativo span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.ativo span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-nav-overlay.ativo {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 320px);
    height: 100vh;
    background: var(--cream-light);
    z-index: 1100;
    padding: 90px 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}
.mobile-nav-drawer.ativo {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mobile-nav-links li a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid rgba(153,110,95,0.15);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.mobile-nav-links li a:hover {
    color: var(--gold);
}
.mobile-nav-cta {
    margin-top: 16px;
    display: inline-block !important;
    background: var(--gold) !important;
    color: #fff !important;
    padding: 16px 28px !important;
    border-radius: 2px;
    text-align: center;
    border-bottom: none !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    font-family: 'Jost', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

/* Nav hamburguer já a partir de 1100px */
@media (max-width: 1100px) {
    .nav-hamburger {
        display: flex;
    }
    .mobile-nav-overlay {
        display: block;
    }
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 1.5rem;
    }
    section {
        padding: 70px 1.5rem;
    }
    .hero-content {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
    .hero-stats {
        display: none;
    }
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    .doces-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .kits-grid {
        grid-template-columns: 1fr;
    }
    .depo-grid {
        grid-template-columns: 1fr;
    }
    .orcamento-wrapper {
        grid-template-columns: 1fr;
    }
    .loc-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .eventos-types {
        grid-template-columns: 1fr;
    }
    .valores-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    /* Botões hero: empilhar e ocupar largura total */
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    /* Prazos: empilhar itens verticalmente, sem corte de texto */
    .prazos-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 30px 1.5rem;
    }
    .prazo-item {
        width: 100%;
        gap: 16px;
    }
    .prazo-text span {
        white-space: normal;
        word-break: break-word;
    }
    .prazo-divider {
        display: none;
    }

    /* Cardápio: tabs em duas colunas no mobile */
    #cardapio {
        padding: 60px 1rem;
    }
    .tabs {
        flex-wrap: wrap;
        gap: 8px;
        border-bottom: none;
    }
    .tab {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
        font-size: 10px;
        padding: 12px 8px;
        text-align: center;
    }
    .bolos-grid {
        grid-template-columns: 1fr;
    }
    .doces-grid {
        grid-template-columns: 1fr;
    }
    .pers-grid {
        grid-template-columns: 1fr;
    }
    /* Impede que preco-line estoure em mobile */
    .preco-label {
        flex-wrap: wrap;
    }
    .preco-line {
        display: none;
    }

    /* Momentos/Localização */
    .momentos-header {
        grid-template-columns: 1fr;
    }
    .localizacao {
        padding: 60px 1.5rem;
    }
    .loc-map {
        height: 220px;
    }

    footer {
        padding: 40px 1.5rem 24px;
    }

    /* Seção de título */
    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    /* MVV: corrigir padding excessivo do inline style */
    .mvv-grid {
        padding: 0 1.5rem !important;
    }
    #missao > div {
        padding: 60px 1.5rem 40px !important;
    }
    .mvv-card {
        padding: 40px 28px;
    }

    /* Seções sem override de padding */
    .valores-section {
        padding: 40px 1.5rem;
    }
    .momentos-inner {
        padding: 0 1.5rem;
    }
    #orcamento {
        padding: 40px 1.5rem 60px;
    }
    .frase-destaque-outer {
        padding: 0 1rem;
    }
    .frase-destaque-banner {
        padding: 40px 1.5rem;
        border-radius: 0;
    }
    .noivas-banner {
        padding: 24px 20px;
        margin: 2rem 0;
    }
    .noivas-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .noivas-banner-cta {
        width: 100%;
        text-align: center;
        white-space: normal;
    }
    .noivas-banner-title {
        font-size: 1.5rem;
    }
}




/* ===== OVERRIDES TEMA CLARO 2026 ===== */
/* Forçar texto escuro onde --choco-deep agora é creme */
.nav-cta,
.preco-badge,
.doce-col-header .price,
.kit-badge,
.loc-map .map-btn,
.footer-social a:hover { color: var(--text-dark) !important; }

.section-title,
.valor-title,
.loc-info .section-title,
.loc-details strong { color: var(--text-dark); }


/* Headers marrom/terracota: texto claro */
.doce-col-header .price { color: #FDF6EE !important; }
.doce-col-header .cat   { color: rgba(253,246,238,0.75) !important; }
/* Subtítulos que usam --choco-mid/warm (agora creme) */
.momentos-quote { color: var(--text-dark); }
.depo-author    { color: var(--text-dark); }


/* Nav CTA e kit-badge: texto claro no fundo terracota */
.nav-cta { color: #FDF6EE !important; }
.nav-cta:hover { color: #FDF6EE !important; }

/* Badges e botões com fundo terracota/escuro: texto claro */
.preco-badge { color: #FDF6EE !important; }
.badge-classica  { color: #7A4E45 !important; }
.kit-badge   { color: #FDF6EE !important; }
.loc-map .map-btn { color: #FDF6EE !important; }
.footer-social a:hover { color: #FDF6EE !important; }
.form-submit { color: #FDF6EE !important; }
/* Nav: ajustar links e borda */
.nav-links a { color: rgba(62, 68, 96, 0.75); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
nav { border-bottom-color: rgba(153, 110, 95, 0.2); }

/* btn-outline: borda visível em fundo claro */
.btn-outline { border-color: rgba(62, 68, 96, 0.3); color: var(--text-dark); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Hero scroll indicator */
.hero-scroll-text { color: rgba(62, 68, 96, 0.4); }

/* MVV cards: degradê terracota sutil dentro da paleta */
.mvv-card:nth-child(1) { background: linear-gradient(135deg, #F5E8D5 0%, #E8CCA8 100%); }
.mvv-card:nth-child(2) { background: linear-gradient(135deg, #EDE0CC 0%, #DFC4A4 100%); }
.mvv-card:nth-child(3) { background: linear-gradient(135deg, #E5D4BE 0%, #D4B090 100%); }
.mvv-card-title { color: #3E4460 !important; }
.mvv-card-text { color: rgba(74, 55, 40, 0.85) !important; }
.mvv-card-subtitle { color: rgba(153, 110, 95, 0.75) !important; }
.mvv-card-icon { color: #996E5F; }
.mvv-card-number { color: rgba(62, 68, 96, 0.1); }

@keyframes shimmer-branco {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmer-gold {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}


/* ===== SHIMMER BRANCO — badge PREMIUM ===== */
.badge-shimmer-branco {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.badge-shimmer-branco::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: translateX(-150%);
  animation: shimmer-sweep 4s linear infinite;
  pointer-events: none;
}
@keyframes shimmer-sweep {
  0%   { transform: translateX(-150%); }
  20%  { transform: translateX(350%); }
  100% { transform: translateX(350%); }
}



/* ===== FRASE DESTAQUE 25 ANOS ===== */

.frase-destaque-outer {
    background: var(--cream-light);
    padding: 0 2rem;
}

.frase-destaque-banner {
    background: url('imagens/drive-background-v2.jpg') center center / cover no-repeat;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 0;
    padding: 60px 4rem;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.frase-destaque-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 7, 5, 0.75);
}

.frase-destaque-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.frase-destaque-deco {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--gold);
    line-height: 0.5;
    opacity: 0.6;
}

.frase-destaque-deco--close {
    line-height: 0.2;
}

.frase-destaque-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 600;
    font-style: italic;
    color: #FDF6EE;
    line-height: 1.3;
    letter-spacing: 0.5px;
    margin: 0;
}

.frase-destaque-linha {
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
    margin: 4px 0;
}

.frase-destaque-sub {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

/* ===== BANNER PARA NOIVAS ===== */

.noivas-banner {
    background: linear-gradient(135deg, #f5e8d8 0%, #efe0c8 50%, #f5e8d8 100%);
    border: 1.5px solid rgba(153, 110, 95, 0.35);
    border-radius: 4px;
    margin: 3rem 0;
    padding: 36px 40px;
}

.noivas-banner-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.noivas-banner-icon {
    font-size: 2.4rem;
    color: var(--gold);
    flex-shrink: 0;
    opacity: 0.85;
}

.noivas-banner-content {
    flex: 1;
    min-width: 200px;
}

.noivas-banner-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.noivas-banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 8px;
    line-height: 1.2;
}

.noivas-banner-title strong {
    color: var(--gold);
    font-weight: 700;
}

.noivas-banner-desc {
    font-size: 13px;
    color: rgba(62, 68, 96, 0.7);
    margin: 0;
    line-height: 1.7;
}

.noivas-banner-cta {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ===== FOTO DA EQUIPE ===== */

.equipe-foto-wrap {
    max-width: 1200px;
    margin: 0 auto 0;
    padding: 0 4rem 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.equipe-foto {
    width: 100%;
    max-width: 520px;
    border-radius: 4px;
    object-fit: cover;
    aspect-ratio: 4/3;
    border: 1px solid rgba(201, 153, 58, 0.2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.equipe-foto-caption {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    text-align: center;
}

@media (max-width: 768px) {
    .equipe-foto-wrap {
        padding: 0 1rem 40px;
    }
}

/* ===== PROTEÇÃO DE CONTEÚDO ===== */

/* Preços e nomes de produtos: não selecionáveis */
.preco-badge, .bolo-name, .kit-badge, .pers-name,
.doce-col-header, .doce-price {
    user-select: none;
    -webkit-user-select: none;
}

/* Impressão: ocultar interface e exibir marca d'água */
@media print {
    nav, .prazos-banner, .hero-btns, .whatsapp-float,
    .insta-float, #lgpd-banner, .tabs, footer { display: none !important; }

    body::after {
        content: '© 2026 P&C Doces e Bolos — pecdoces.com.br — Todos os direitos reservados.';
        display: block;
        text-align: center;
        padding: 24px;
        font-family: serif;
        color: #aaa;
        font-size: 11px;
        border-top: 1px solid #ddd;
        margin-top: 40px;
    }
}

/* ===== NOSSOS PRODUTOS — GALERIA ===== */
.produtos-subtitulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}
.produtos-info {
    text-align: center;
    font-size: 12px;
    color: rgba(62,68,96,0.6);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}
.produtos-info i { margin-right: 6px; color: var(--gold); }

.produtos-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
    margin-bottom: 2.5rem;
}

.produto-card {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(153,110,95,0.15);
    border-radius: 6px;
    padding: 1rem;
    transition: box-shadow 0.25s, transform 0.25s;
}
.produto-card:hover {
    box-shadow: 0 6px 24px rgba(153,110,95,0.15);
    transform: translateY(-2px);
}

.produto-fotos {
    display: flex;
    gap: 6px;
    margin-bottom: 0.75rem;
}
.produto-foto-wrap {
    flex: 1;
}
.produto-foto {
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(153,110,95,0.08);
    border: 1px dashed rgba(153,110,95,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(153,110,95,0.5);
    font-size: 11px;
    text-align: center;
    padding: 10px;
}
.produto-foto i { font-size: 2rem; }
.produto-foto span { font-size: 9px; line-height: 1.3; word-break: break-all; }
.produto-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.produto-nome {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: 0.3px;
}

.produtos-cta {
    text-align: center;
    padding: 2rem 1rem 1rem;
    border-top: 1px solid rgba(153,110,95,0.12);
    margin-top: 0.5rem;
}
.produtos-cta p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

/* ===== CAROUSEL DE PRODUTOS ===== */
.produtos-section {
    margin-bottom: 2.5rem;
}
.produtos-section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}
.produtos-section-label i {
    color: var(--gold);
    margin-right: 8px;
}
/* Hero image */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.hero-img-frame {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.hero-img:hover { transform: scale(1.04); }

/* Doces destaque banner */
.doces-destaque-banner {
    width: 100%;
    max-height: 340px;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}
.doces-destaque-banner img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    transition: transform 0.7s ease;
}
.doces-destaque-banner img:hover { transform: scale(1.03); }

@media (max-width: 768px) {
    .hero-img-frame { aspect-ratio: 3/2; }
    .doces-destaque-banner, .doces-destaque-banner img { height: 200px; }
}

.carousel-outer {
    position: relative;
}
.carousel {
    width: 100%;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    gap: 14px;
    transition: transform 0.28s ease;
}
.carousel-card {
    width: calc(50% - 7px);
    min-width: calc(50% - 7px);
    flex-shrink: 0;
}
.carousel-foto {
    position: relative;
    width: 100%;
    height: 460px;
    border-radius: 10px;
    overflow: hidden;
    background: #ede4d8;
}
.carousel-foto img {
    display: block;
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center center;
}
.carousel-foto-placeholder {
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(153,110,95,0.25);
    font-size: 2.5rem;
    border-style: dashed;
}
#carousel-bolos .carousel-foto,
#carousel-personalizados .carousel-foto {
    height: auto;
    aspect-ratio: 3 / 4;
}
#carousel-bolos .carousel-foto img,
#carousel-personalizados .carousel-foto img {
    height: 100%;
}

/* ===== DOCES — padronização de enquadramento e zoom ===== */
#carousel-doces .carousel-foto {
    height: auto;
    aspect-ratio: 3 / 4;
}
#carousel-doces .carousel-foto img {
    height: 100%;
    object-position: center 45%;
    transform-origin: center 45%;
}
/* 1 — Bombom de Cereja */
#carousel-doces .carousel-card:nth-child(1) .carousel-foto img {
    transform: scale(1.1);
    object-position: center 42%;
}
/* 2 — Raspas de Chocolate */
#carousel-doces .carousel-card:nth-child(2) .carousel-foto img {
    transform: scale(1.05);
    object-position: center 40%;
}
/* 3 — Tortinha de Limão */
#carousel-doces .carousel-card:nth-child(3) .carousel-foto img {
    transform: scale(1.15);
    object-position: center 44%;
}
/* 4 — Coco Queimado */
#carousel-doces .carousel-card:nth-child(4) .carousel-foto img {
    transform: scale(1.2);
    object-position: center 42%;
}
/* 5 — Beijinho */
#carousel-doces .carousel-card:nth-child(5) .carousel-foto img {
    transform: scale(1.15);
    object-position: center 44%;
}
/* 6 — Morango no Chocolate */
#carousel-doces .carousel-card:nth-child(6) .carousel-foto img {
    transform: scale(1.1);
    object-position: center 46%;
}
/* 7 — Ninho com Nutella */
#carousel-doces .carousel-card:nth-child(7) .carousel-foto img {
    transform: scale(1.05);
    object-position: center 42%;
}
/* 8 — Merengue de Ninho */
#carousel-doces .carousel-card:nth-child(8) .carousel-foto img {
    transform: scale(1.1);
    object-position: center 40%;
}
/* 9 — Caixa Sortida (foto de grupo) */
#carousel-doces .carousel-card:nth-child(9) .carousel-foto img {
    object-position: center 30%;
}
/* 10 — Caixa Premium (foto de grupo) */
#carousel-doces .carousel-card:nth-child(10) .carousel-foto img {
    object-position: center 50%;
}
/* 11 — Mesa de Doces */
#carousel-doces .carousel-card:nth-child(11) .carousel-foto img {
    object-position: center 40%;
}
/* 12 — Brigadeiro de Nozes */
#carousel-doces .carousel-card:nth-child(12) .carousel-foto img {
    object-position: center 35%;
}
/* 13 — Doces Personalizados */
#carousel-doces .carousel-card:nth-child(13) .carousel-foto img {
    object-position: center 50%;
}
/* 14 — Sortidos Clássicos */
#carousel-doces .carousel-card:nth-child(14) .carousel-foto img {
    object-position: center 40%;
}
.produto-nome { display: none; }
@media (max-width: 500px) {
    .carousel-foto,
    .carousel-foto-placeholder { height: 320px; }
    .carousel-foto img { height: 320px; }
    #carousel-bolos .carousel-foto { height: auto; aspect-ratio: 3 / 4; }
    #carousel-doces .carousel-foto { height: auto; aspect-ratio: 3 / 4; }
    #carousel-doces .carousel-foto img { height: 100%; }
}
.produto-nome {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: 0.3px;
    margin-top: 0.55rem;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(30,30,30,0.65);
    border: none;
    box-shadow: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s, opacity 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }
.carousel-btn:hover { background: rgba(30,30,30,0.90); }
.carousel-btn:disabled { opacity: 0; cursor: default; pointer-events: none; }
@media (max-width: 500px) {
    .carousel-card { width: calc(75% - 7px); min-width: calc(75% - 7px); }
}

/* ===== PREÇO OCULTO — blur + revelar ===== */
.preco-oculto {
    filter: blur(7px);
    user-select: none;
    pointer-events: none;
    transition: filter 0.45s ease;
    display: inline-block;
}
.preco-oculto.revelado {
    filter: none;
    pointer-events: auto;
}

.btn-ver-preco {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    background: transparent;
    padding: 4px 11px;
    border-radius: 2px;
    cursor: pointer;
    white-space: nowrap;
    vertical-align: middle;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.btn-ver-preco:hover {
    background: var(--gold);
    color: #fff;
}

.preco-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-ver-mais {
    margin-left: 14px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #25D366;
    border: 1px solid #25D366;
    background: transparent;
    padding: 4px 10px;
    border-radius: 2px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.btn-ver-mais:hover { background: #25D366; color: #fff; }

/* Kit price row alinha blur + botão lado a lado */
.kit-price {
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

