/* Sistema visual moderno mantendo a paleta institucional verde e dourado. */
:root {
    --bg-main: radial-gradient(circle at 0% 0%, rgba(199, 154, 59, 0.2), transparent 36%),
        radial-gradient(circle at 100% 18%, rgba(30, 91, 70, 0.16), transparent 44%),
        linear-gradient(130deg, #f5f0e6 0%, #f8f4ec 42%, #f0e4cf 100%);
    --hero-overlay: linear-gradient(120deg, rgba(23, 69, 54, 0.93), rgba(41, 105, 84, 0.82) 52%, rgba(199, 154, 59, 0.47));
}

html {
    scroll-behavior: smooth;
}

body {
    background-image: var(--bg-main);
    background-attachment: fixed;
}

.section-shell {
    width: min(1280px, 100%);
    margin-inline: auto;
    padding: 4rem 1rem;
}

.label-overline {
    width: fit-content;
    border: 1px solid rgba(231, 214, 188, 0.9);
    background: rgba(255, 255, 255, 0.7);
    color: #1e5b46;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.4rem 0.95rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    color: #174536;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.98;
}

.section-text {
    color: rgba(29, 42, 40, 0.84);
    line-height: 1.7;
    margin-top: 0.65rem;
}

.card-panel {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(231, 214, 188, 0.82);
    border-radius: 1.45rem;
    padding: 1.5rem;
    box-shadow: 0 16px 34px rgba(29, 42, 40, 0.08);
}

.card-contrast {
    background: linear-gradient(130deg, rgba(23, 69, 54, 0.98), rgba(41, 105, 84, 0.96));
    color: #fff;
    border: 1px solid rgba(222, 194, 135, 0.3);
    border-radius: 1.45rem;
    padding: 1.6rem;
    box-shadow: 0 18px 36px rgba(16, 46, 36, 0.26);
}

.mini-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    line-height: 1;
    margin-bottom: 0.4rem;
    color: #dec287;
}

.hover-lift {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(29, 42, 40, 0.12);
}

.brand-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(29, 42, 40, 0.11);
}

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.82rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.24s ease;
    text-align: center;
}

.btn-primary {
    background: #c79a3b;
    color: #1d2a28;
}

.btn-primary:hover {
    filter: brightness(1.04);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.52);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(30, 91, 70, 0.3);
    color: #1e5b46;
}

.btn-outline:hover {
    background: rgba(30, 91, 70, 0.07);
}

.hero-full {
    position: relative;
    min-height: min(97vh, 920px);
    overflow: hidden;
    background: var(--hero-overlay), url('../img/salao-1.jpeg') center/cover no-repeat;
}

.hero-full::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 82% 28%, rgba(222, 194, 135, 0.42), transparent 34%),
        radial-gradient(circle at 12% 92%, rgba(255, 255, 255, 0.18), transparent 44%);
    pointer-events: none;
}

.hero-shell {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(3px);
}

.hero-chip {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0.8rem;
    padding: 0.45rem 0.65rem;
    text-align: center;
}

.reveal {
    animation: rise 0.8s ease both;
}

.reveal.delay-1 {
    animation-delay: 0.16s;
}

.reveal.delay-2 {
    animation-delay: 0.3s;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.95rem;
}

.trust-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(231, 214, 188, 0.8);
    border-radius: 1.2rem;
    padding: 1.15rem;
    box-shadow: 0 12px 24px rgba(29, 42, 40, 0.08);
}

.lens-shell {
    background: linear-gradient(140deg, rgba(23, 69, 54, 0.98), rgba(41, 105, 84, 0.96));
    border: 1px solid rgba(222, 194, 135, 0.3);
    border-radius: 1.6rem;
    padding: clamp(1.2rem, 2.5vw, 2rem);
    box-shadow: 0 22px 44px rgba(16, 46, 36, 0.24);
}

.lens-card {
    border-radius: 1rem;
    border: 1px solid rgba(222, 194, 135, 0.3);
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem;
}

.brand-strip {
    background: linear-gradient(120deg, rgba(23, 69, 54, 0.98), rgba(41, 105, 84, 0.95));
    border: 1px solid rgba(222, 194, 135, 0.3);
}

.brand-strip.alt {
    background: linear-gradient(120deg, rgba(41, 105, 84, 0.96), rgba(23, 69, 54, 0.93));
    border: 1px solid rgba(199, 154, 59, 0.35);
}

.brand-strip.alt .marquee-item {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(222, 194, 135, 0.34);
}

.marquee-wrap {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 7%, black 93%, transparent);
}

.marquee {
    display: flex;
    width: max-content;
    gap: 1rem;
    align-items: center;
    animation: none;
    will-change: transform;
}

.marquee-item {
    height: 82px;
    min-width: 280px;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
}

.marquee-item img {
    max-height: 76px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.85rem;
}

.gallery-panel {
    grid-column: span 3;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(231, 214, 188, 0.75);
    box-shadow: 0 14px 30px rgba(29, 42, 40, 0.1);
}

.gallery-panel img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(168deg, transparent 30%, rgba(0, 0, 0, 0.33));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-panel:hover::after {
    opacity: 1;
}

.gallery-panel:hover img {
    transform: scale(1.05);
}

.map-panel {
    border-radius: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(231, 214, 188, 0.8);
    box-shadow: 0 16px 34px rgba(29, 42, 40, 0.1);
}

.faq-answer {
    overflow: hidden;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-icon {
    transition: transform 0.28s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.final-cta {
    border-radius: 1.7rem;
    padding: clamp(1.4rem, 4vw, 3rem);
    text-align: center;
    border: 1px solid rgba(199, 154, 59, 0.38);
    box-shadow: 0 24px 46px rgba(16, 46, 36, 0.24);
    background: linear-gradient(110deg, rgba(23, 69, 54, 0.98), rgba(41, 105, 84, 0.92));
}

.whatsapp-float {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: whatsapp-pulse 2.25s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 91, 70, 0.43);
    }

    60% {
        transform: scale(1.07);
        box-shadow: 0 0 0 16px rgba(30, 91, 70, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 91, 70, 0);
    }
}

@media (max-width: 1200px) {
    .trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gallery-panel {
        grid-column: span 4;
    }
}

@media (max-width: 900px) {
    .section-shell {
        padding: 3.2rem 1rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-panel {
        grid-column: span 6;
    }

    .marquee-item {
        min-width: 230px;
        height: 70px;
    }

    .marquee-item img {
        max-height: 62px;
    }
}

@media (max-width: 640px) {
    .section-shell {
        padding: 2.7rem 1rem;
    }

    .hero-full {
        min-height: 94vh;
    }

    .hero-chip {
        font-size: 0.76rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-panel {
        grid-column: span 1;
    }

    .gallery-panel img {
        height: 178px;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
