/* Variáveis de Cores e Espaçamento */
:root {
    --bg-color: #111822;
    --bg-darker: #0a0e14;
    --gold: #cfa861;
    --gold-light: #e0c88a;
    --gold-dark: #a88a4a;
    --gold-border: rgba(207, 168, 97, 0.35);
    --gold-overlay: rgba(207, 168, 97, 0.9);
    --white: #ffffff;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
}

/* Reset e Configurações Globais */
body, html {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--white);
    scroll-behavior: smooth;
}

/* Tipografia da Logo em Texto */
.lume-text {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
}
.on3-text {
    color: var(--white);
    font-weight: 700;
    letter-spacing: 2px;
}
.text-light-50 {
    color: rgba(255, 255, 255, 0.7);
}
.text-gold {
    color: var(--gold);
}
.bg-gold {
    background-color: var(--gold) !important;
}
.bg-darker {
    background-color: var(--bg-darker);
}

/* Espaçamento Uniforme */
.section-spacing {
    padding: var(--space-lg) 0;
}
.section-spacing-inner {
    padding: var(--space-lg) 0;
}
.section-header {
    margin-bottom: var(--space-md);
}
.container-section {
    margin-top: var(--space-md);
}

/* Navbar Personalizada */
.navbar {
    background-color: transparent;
    transition: all 0.4s ease;
    padding: var(--space-sm) 0;
}
.navbar.scrolled {
    background-color: rgba(17, 24, 34, 0.95);
    padding: calc(var(--space-sm) * 0.5) 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}
.navbar-nav .nav-link {
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-left: var(--space-sm);
    transition: color 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold-light);
}
.navbar-nav .nav-link:active {
    color: var(--gold-dark);
}
.custom-toggler {
    border: none;
}
.custom-toggler:focus {
    box-shadow: none;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: var(--bg-darker) !important;
    border: 1px solid var(--gold-border) !important;
    border-radius: 4px;
}
.dropdown-item {
    color: var(--white) !important;
    transition: all 0.3s ease;
}
.dropdown-item:hover,
.dropdown-item.active {
    background-color: rgba(207, 168, 97, 0.2) !important;
    color: var(--gold-light) !important;
}
.dropdown-item:active {
    color: var(--gold-dark) !important;
}

/* Hero Section com Textura de Luz */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 3px,
            rgba(207, 168, 97, 0.025) 3px,
            rgba(207, 168, 97, 0.025) 6px
        ),
        radial-gradient(ellipse at 25% 15%, rgba(224, 200, 138, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 85%, rgba(168, 138, 74, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 2s ease-in-out;
}

/* Botões */
.btn-gold {
    background-color: var(--gold);
    color: var(--bg-color);
    border: 2px solid var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.btn-gold:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--bg-color);
}
.btn-gold:active {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
}
.btn-outline-gold {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 700;
    padding: 12px 30px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--bg-color);
    border-color: var(--gold-light);
}
.btn-outline-gold:active {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--bg-color);
}

/* Seções e Títulos */
.section-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    margin-top: var(--space-sm);
}
.title-line-sm {
    width: 40px;
    height: 2px;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-sm);
}
.title-line-wide {
    width: 100px;
}
.title-line-center {
    margin-left: auto;
    margin-right: auto;
}

/* Divisor de Seção com title-line */
.section-divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
}
.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.section-divider .title-line {
    margin-top: 0;
    flex-shrink: 0;
}

/* Galeria de Fotos */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 3 / 4;
    border: 2px solid var(--gold-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.gallery-item:hover,
.gallery-item:focus-within {
    border-color: var(--gold-light);
    box-shadow: 0 8px 25px rgba(207, 168, 97, 0.35);
    transform: translateY(-5px);
}
.gallery-item:hover::before,
.gallery-item:focus-within::before {
    opacity: 1;
}
.gallery-item:active {
    border-color: var(--gold-dark);
    transform: translateY(-2px);
}
.gallery-link {
    color: inherit;
    text-decoration: none;
    display: block;
}
.gallery-link:hover {
    color: inherit;
}
.gallery-link:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
    border-radius: 4px;
}
.gallery-item img {
    transition: transform 0.5s ease, filter 0.4s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 14, 20, 0.92) 0%,
        rgba(10, 14, 20, 0.45) 45%,
        transparent 70%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}
.gallery-overlay-content {
    text-align: center;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}
.gallery-overlay-content i {
    display: block;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 0.35rem;
}
.gallery-overlay-content span,
.gallery-overlay-content h5 {
    display: block;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin: 0;
}
.gallery-overlay-meta {
    display: block;
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.35rem;
}
.gallery-overlay-action {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    transition: gap 0.3s ease;
}
.gallery-item:hover img,
.gallery-item:focus-within img {
    transform: scale(1.06);
    filter: brightness(0.92);
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus-within .gallery-overlay {
    opacity: 1;
}
.gallery-item:hover .gallery-overlay-content,
.gallery-item:focus-within .gallery-overlay-content {
    transform: translateY(0);
}

/* Portfólio (home) — cards de navegação */
.gallery-item--portfolio .gallery-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 14, 20, 0.95) 0%,
        rgba(17, 24, 34, 0.55) 50%,
        transparent 75%
    );
}
.gallery-item--portfolio .gallery-overlay-content h5 {
    font-size: 1rem;
    letter-spacing: 2px;
}

/* GLightbox Gallery Items */
.glightbox {
    display: block;
    text-decoration: none;
    color: inherit;
}
.glightbox:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
    border-radius: 4px;
}
.glightbox.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 3 / 4;
    border: 2px solid var(--gold-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Mobile / touch — overlay parcial sempre visível */
@media (hover: none) {
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(10, 14, 20, 0.8) 0%,
            transparent 40%
        );
        padding: var(--space-sm);
    }
    .gallery-overlay-content {
        transform: translateY(0);
        flex-direction: row;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        width: 100%;
        justify-content: center;
    }
    .gallery-overlay-content i {
        font-size: 1rem;
        margin-bottom: 0;
    }
    .gallery-overlay-content span {
        font-size: 0.7rem;
    }
    .gallery-item--portfolio .gallery-overlay-content {
        flex-direction: column;
        align-items: center;
    }
    .gallery-item:active img {
        transform: scale(1.03);
        filter: brightness(0.88);
    }
    .gallery-item:active .gallery-overlay {
        background: linear-gradient(
            to top,
            rgba(10, 14, 20, 0.95) 0%,
            rgba(207, 168, 97, 0.15) 60%,
            transparent 80%
        );
    }
}

/* Borda dourada padronizada para imagens */
.profile-img,
.about-img {
    border: 3px solid var(--gold-border);
    transition: border-color 0.3s ease;
}
.profile-img:hover,
.about-img:hover {
    border-color: var(--gold-light);
}

/* Sobre */
.about-profile-wrap {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}
.about-profile-wrap::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid var(--gold-border);
    transition: border-color 0.3s ease;
}
.about-profile-wrap::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    opacity: 0.15;
    z-index: 0;
}
.about-profile-wrap:hover::before {
    border-color: var(--gold-light);
}
.about-profile-wrap .profile-img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.about-name {
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}
.about-role {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}
.about-quote {
    position: relative;
    padding-left: var(--space-md);
    border-left: 3px solid var(--gold);
    margin-bottom: var(--space-md);
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}
.about-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}
.specialty-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    border: 1px solid var(--gold-border);
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.specialty-tag:hover {
    background-color: rgba(207, 168, 97, 0.15);
    border-color: var(--gold-light);
    color: var(--gold-light);
}
.about-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}
.social-icon {
    color: var(--white);
    transition: color 0.3s;
}
.social-icon:hover {
    color: var(--gold-light);
}
.social-icon:active {
    color: var(--gold-dark);
}

/* Hero Sections Específicas */
.hero-retratos {
    background: linear-gradient(rgba(17, 24, 34, 0.7), rgba(17, 24, 34, 0.8)), url('img/retratos/retrato-4.jpg') center center/cover no-repeat fixed;
}
.hero-urbano {
    background: linear-gradient(rgba(17, 24, 34, 0.7), rgba(17, 24, 34, 0.8)), url('img/urbanos/urbano-1.png') center center/cover no-repeat fixed;
}
.hero-eventos {
    background: linear-gradient(rgba(17, 24, 34, 0.7), rgba(17, 24, 34, 0.8)), url('img/retratos/retrato-10.jpg') center center/cover no-repeat fixed;
}
.hero-home {
    background: linear-gradient(rgba(17, 24, 34, 0.7), rgba(17, 24, 34, 0.8)), url('img/retratos/retrato-3.jpg') center center/cover no-repeat fixed;
}

/* Filtros */
.filter-btn {
    color: var(--white) !important;
    background-color: transparent !important;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
    color: var(--gold-light) !important;
    border-bottom-color: var(--gold);
}
.filter-btn:active {
    color: var(--gold-dark) !important;
    border-bottom-color: var(--gold-dark);
}

.gallery-item-wrapper {
    transition: opacity 0.3s ease;
    opacity: 1;
}

/* Cards de Features */
.feature-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    transition: all 0.3s ease;
}
.feature-box:hover {
    background-color: rgba(207, 168, 97, 0.15);
    border-color: var(--gold-light);
    transform: translateY(-10px);
}
.feature-box .title-line-sm {
    margin-left: auto;
    margin-right: auto;
}

/* Cards de Pacotes */
.package-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gold-border) !important;
    transition: all 0.3s ease;
    position: relative;
}
.package-card:hover {
    background-color: rgba(207, 168, 97, 0.2);
    border-color: var(--gold-light) !important;
    box-shadow: 0 10px 30px rgba(207, 168, 97, 0.3);
    transform: translateY(-5px);
}
.package-card .title-line-sm {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}
.border-gold {
    border-color: var(--gold-border) !important;
}

/* Rodapé */
.site-footer {
    padding: var(--space-lg) 0 var(--space-md);
    border-top: 1px solid var(--gold-border);
}
.site-footer .title-line {
    margin-bottom: var(--space-md);
}
.site-footer hr {
    border-color: var(--gold-border) !important;
    margin: var(--space-md) auto;
    max-width: 200px;
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: var(--space-lg) 0;
}
.cta-section .title-line {
    margin-bottom: var(--space-md);
}

.info-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    border: 1px solid var(--gold-border);
    border-radius: 2px;
}
.gallery-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.cross-gallery-card {
    max-width: 320px;
    margin: 0 auto;
}
.process-step {
    text-align: center;
    padding: var(--space-md);
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    height: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.process-step:hover {
    border-color: var(--gold-light);
    transform: translateY(-4px);
}
.process-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gold-border);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}
.process-step h5 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}
.process-step p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Link voltar (páginas de galeria) */
.hero-back-link {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0 var(--space-md);
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.back-link:hover {
    color: var(--gold);
}
.back-link i {
    transition: transform 0.3s ease;
}
.back-link:hover i {
    transform: translateX(-4px);
}

/* Portfólio 2 colunas */
.portfolio-grid {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ */
.faq-item {
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq-item:hover {
    border-color: var(--gold-light);
}
.faq-question {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    color: var(--white);
    text-align: left;
    padding: var(--space-sm) var(--space-md);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.faq-question:hover {
    background: rgba(207, 168, 97, 0.1);
}
.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item.open .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 var(--space-md);
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 var(--space-md) var(--space-sm);
}
.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .display-3 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 6px 12px !important;
        margin: 4px 2px;
    }
}

/* Animações Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Lightbox modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}
.lightbox-modal .gslide-image {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-modal .gslide-image img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}
.lightbox-modal button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    line-height: 1;
    padding: 0;
}
.lightbox-modal button:hover {
    background: rgba(207, 168, 97, 0.4);
    border-color: var(--gold-border);
}
.lightbox-modal button[aria-label="Fechar"] {
    top: 20px;
    right: 20px;
    transform: none;
    font-size: 2.5rem;
}

/* Lightbox — marca d'água discreta */
.lightbox-image-wrap {
    position: relative;
    display: inline-block;
    line-height: 0;
}
.lightbox-watermark {
    position: absolute;
    bottom: 10px;
    right: 10px;
    pointer-events: none;
    z-index: 5;
    padding: 5px 10px;
    background: rgba(10, 14, 20, 0.5);
    border: 1px solid var(--gold-border);
    border-radius: 2px;
    backdrop-filter: blur(4px);
    opacity: 0.75;
    transition: opacity 0.3s ease;
}
.lightbox-image-wrap:hover .lightbox-watermark {
    opacity: 0.95;
}
.lightbox-watermark-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    white-space: nowrap;
}
.lightbox-watermark-text .lume-text,
.lightbox-watermark-text .on3-text {
    font-size: inherit;
    letter-spacing: inherit;
}

@media (max-width: 768px) {
    .lightbox-watermark {
        bottom: 6px;
        right: 6px;
        padding: 4px 8px;
    }
    .lightbox-watermark-text {
        font-size: 0.5rem;
    }
}

/* Barra de confiança */
.trust-bar {
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--gold-border);
    padding: var(--space-sm) 0;
}
.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.trust-item i {
    color: var(--gold);
}

/* Depoimentos */
.testimonial-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    padding: var(--space-md);
    height: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-4px);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}
.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}
.testimonial-author {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}
.testimonial-service {
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Botão WhatsApp flutuante */
.float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--gold);
    color: var(--bg-color);
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(207, 168, 97, 0.4);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.float-whatsapp:hover {
    background-color: var(--gold-light);
    color: var(--bg-color);
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(207, 168, 97, 0.5);
}
.float-whatsapp.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

/* Lightbox — botões acessíveis */
.lightbox-modal button {
    font-family: 'Montserrat', sans-serif;
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
    .hero-section::before,
    .hero-section::after {
        display: none;
    }
}

