* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --preto: #1a1a1a;
    --dourado: #d4af37;
    --dourado-claro: #e8d4a2;
    --branco: #ffffff;
    --cinza-claro: #f5f5f5;
    --cinza-escuro: #333333;
}

html {
    scroll-behavior: smooth;
}

/* Reveal on scroll */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll[data-reveal-delay="1"] { transition-delay: 0.08s; }
.reveal-on-scroll[data-reveal-delay="2"] { transition-delay: 0.16s; }
.reveal-on-scroll[data-reveal-delay="3"] { transition-delay: 0.24s; }
.reveal-on-scroll[data-reveal-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--preto);
    line-height: 1.6;
    background-color: var(--branco);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: 0.5px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.9);
    padding: 0.38rem 2rem;
    z-index: 1000;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 1.2rem;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232, 212, 162, 0.22);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 0;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 62px;
    width: auto;
    max-width: min(44vw, 240px);
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.6rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.nav-cta {
    justify-self: end;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.55);
    background: rgba(20, 20, 20, 0.72);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle-bar {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #f3ddab;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

nav a {
    color: #f4ebd8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, opacity 0.3s ease;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 1.8px;
}

nav a:hover {
    color: var(--dourado);
    opacity: 0.95;
}

.cta-button {
    background-color: transparent;
    color: var(--dourado-claro);
    padding: 0.52rem 1.08rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.8);
    cursor: pointer;
    font: inherit;
}

.cta-button:hover {
    background-color: rgba(212, 175, 55, 0.12);
    color: var(--dourado);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #121212 0%, #232323 100%);
    background-image: linear-gradient(135deg, rgba(18, 18, 18, 0.62) 0%, rgba(35, 35, 35, 0.62) 100%), url('fotos/home/home 1.jpeg');
    background-size: cover;
    background-position: center 30%;
    color: var(--branco);
    padding: 150px 2rem 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

@media (max-width: 768px) {
    .hero {
        min-height: 92svh;
        padding: 128px 1.2rem 72px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 72%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.34);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1,
.hero-content p,
.hero-buttons {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.hero .destaque {
    color: var(--dourado);
    font-size: 3rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--dourado-claro);
    line-height: 1.8;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.38);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--dourado);
    color: var(--preto);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--dourado);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--dourado);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dourado);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--dourado);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background-color: var(--dourado);
    color: var(--preto);
    transform: translateY(-2px);
}

/* Sobre Section */
.sobre {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f9f7f3 0%, #fdfbf8 100%);
    position: relative;
    overflow: hidden;
}

#sobre {
    scroll-margin-top: 120px;
}

#galeria-corporativo,
#testemunhos {
    scroll-margin-top: 120px;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sobre::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

section {
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--preto);
    font-weight: 700;
    font-family: 'Georgia', 'Garamond', serif;
    letter-spacing: 0.8px;
}

.section-title--light {
    color: white;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--dourado);
    margin: 1rem auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--cinza-escuro);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sobre-text {
    text-align: center;
}

.sobre-text h3 {
    font-size: 1.8rem;
    color: var(--preto);
    margin-bottom: 1.5rem;
}

.sobre-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-items: center;
}

.feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 245, 240, 0.95) 100%);
    padding: 1.5rem;
    border-left: 4px solid var(--dourado);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 280px;
    text-align: center;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
}

.feature h4 {
    color: var(--dourado);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.sobre-galeria {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.sobre-galeria img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 28px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.sobre-galeria img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.7);
}

/* Serviços Section */
.servicos{
    background: radial-gradient(circle at 15% 20%, rgba(201, 164, 92, 0.12) 0%, transparent 35%),
                radial-gradient(circle at 90% 80%, rgba(201, 164, 92, 0.08) 0%, transparent 32%),
                #0d0d0d;
    overflow:hidden;
    padding: 5rem 2rem;
}

.servicos .section-title {
    color: #f6ead0;
    letter-spacing: 0.4px;
}

.servicos .section-subtitle {
    color: #dfcfa6;
    max-width: 680px;
    line-height: 1.75;
}

.servicos-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.servico-card{
    background: linear-gradient(180deg, #1b1b1b 0%, #151515 100%);
    border: 1px solid rgba(201, 164, 92, 0.26);
    border-radius: 22px;
    padding: 34px 30px;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(201, 164, 92, 0.12), transparent 65%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
}

.servico-card:hover{
    transform: translateY(-10px);
    border-color: #d7b671;
    box-shadow: 0 18px 42px rgba(201, 164, 92, 0.24);
}

.servico-card:hover::before {
    transform: translateX(120%);
}

.servico-icon{
    font-size: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1px solid rgba(201, 164, 92, 0.45);
    background: rgba(201, 164, 92, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.servico-card h3{
    color: #f1d9a2;
    margin-bottom: 12px;
    font-size: 1.35rem;
    line-height: 1.35;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.servico-card p{
    line-height: 1.82;
    color: #e9e9e9;
    font-size: 1rem;
    max-width: 36ch;
    position: relative;
    z-index: 1;
}

/* Galeria */
.galeria {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fdfbf8 0%, #faf7f2 100%);
    position: relative;
    overflow: hidden;
}

.galeria::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.galeria::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.galeria-categoria {
    font-size: 1.8rem;
    color: var(--preto);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.galeria-categoria:first-of-type {
    margin-top: 0;
}

.galeria-bloco {
    position: relative;
    z-index: 1;
}

.galeria-mobile-jump {
    display: none;
}

body.is-phone .galeria-mobile-jumps {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}

body.is-phone .galeria-mobile-jump {
    display: inline-flex;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--preto) 0%, var(--cinza-escuro) 100%);
    border: 1px solid rgba(201, 164, 92, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.galeria-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.galeria-item:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 164, 92, 0.65);
    box-shadow: 0 16px 36px rgba(212, 175, 55, 0.28);
}

.galeria-item:hover::before {
    animation-duration: 0.6s;
}

.galeria-item:hover::after {
    transform: translateY(0);
}

.galeria-item:hover img {
    animation: saltoLeve 0.45s ease-out;
    transform: scale(1.06);
}

@keyframes saltoLeve {
    0% { transform: translateY(0) scale(1); }
    45% { transform: translateY(-7px) scale(1.03); }
    100% { transform: translateY(0) scale(1.06); }
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(6px);
    z-index: 2100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.is-open {
    display: flex;
    animation: lightboxFadeIn 0.25s ease-out;
}

.lightbox img {
    max-width: min(92vw, 1200px);
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(201, 164, 92, 0.55);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    animation: lightboxZoomIn 0.28s ease-out;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(201, 164, 92, 0.65);
    background: rgba(20, 20, 20, 0.75);
    color: #f2d79d;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.lightbox-close:hover {
    transform: scale(1.06);
    background: rgba(201, 164, 92, 0.25);
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.96);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Testemunhos */
.testemunhos {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f9f7f3 0%, #fdfbf8 100%);
    position: relative;
    overflow: hidden;
}

.testemunhos::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.testemunhos::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.testemunhos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testemunho-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 245, 240, 0.95) 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--dourado);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.testemunho-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.stars {
    color: var(--dourado);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testemunho-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testemunho-autor {
    font-weight: bold;
    color: var(--preto);
    margin-bottom: 0.3rem;
}

.testemunho-evento {
    font-size: 0.9rem;
    color: var(--dourado);
}

/* Contato Section */
.contato {
    background: linear-gradient(135deg, var(--preto) 0%, var(--cinza-escuro) 100%);
    color: var(--branco);
    padding: 5rem 2rem;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    justify-items: center;
}

.contato-banner {
    width: min(960px, 100%);
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem) clamp(1.2rem, 3vw, 2.2rem);
    border-radius: 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
}

.contato-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: none;
    pointer-events: none;
}

.contato-banner > * {
    position: relative;
    z-index: 1;
}

.contato-banner h3 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.08;
    color: var(--branco);
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.contato-banner p {
    color: var(--dourado-claro);
    font-size: 1.05rem;
}

.contato-banner-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contato-banner-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.52rem;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.78rem 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.contato-banner-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.52rem;
    border-radius: 999px;
    padding: 0.78rem 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    cursor: pointer;
    font: inherit;
}

.contato-banner-whatsapp {
    background: var(--dourado);
    color: var(--preto);
    border: 1px solid var(--dourado);
}

.contato-banner-whatsapp svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.contato-banner-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.35);
}

.contato-banner-proposta {
    background: transparent;
    color: var(--dourado-claro);
    border: 1px solid rgba(212, 175, 55, 0.7);
}

.contato-banner-proposta:hover {
    background: rgba(212, 175, 55, 0.14);
    color: var(--dourado);
}

.contato-info {
    max-width: 560px;
    width: 100%;
}

.contato-info h3 {
    font-size: 1.28rem;
    color: var(--dourado);
    margin-bottom: 1.1rem;
}

.info-item {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.72rem;
}

.info-icon {
    font-size: 1.2rem;
    color: var(--dourado);
    min-width: 24px;
}

.info-text p {
    margin: 0.12rem 0;
    line-height: 1.4;
}

.info-text strong {
    color: var(--dourado);
    font-size: 0.96rem;
}

.contato-info .social-links {
    margin-top: 0.85rem;
    gap: 0.8rem;
}

.contato-info .social-links a {
    width: 36px;
    height: 36px;
}

.contato-info .social-links a svg {
    width: 16px;
    height: 16px;
}

.whatsapp-float {
    display: none;
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 1900;
    align-items: center;
    gap: 0.48rem;
    padding: 0.74rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.55);
    background: rgba(12, 12, 12, 0.94);
    color: #f3dca7;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.35px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    background: rgba(212, 175, 55, 0.14);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42);
}

.whatsapp-float.is-attention {
    animation: whatsappPulse 1.15s ease-out 2;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    }
    45% {
        transform: scale(1.06);
        box-shadow: 0 0 0 7px rgba(212, 175, 55, 0.16), 0 14px 30px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    }
}

.whatsapp-float.is-compact {
    gap: 0;
    padding: 0.72rem;
    border-radius: 999px;
}

.whatsapp-float.is-compact span {
    display: none;
}

/* Footer */
footer {
    background-color: #0f0f0f;
    color: var(--dourado-claro);
    padding: 3rem 2rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: slideUpFooter 0.8s ease-out;
}

@keyframes slideUpFooter {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dourado), transparent);
    animation: slideSweep 1.5s ease-in-out infinite;
}

@keyframes slideSweep {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    animation: footerRiseIn 0.8s ease-out;
}

@keyframes footerRiseIn {
    from {
        transform: translateY(30px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    animation: footerRiseIn 0.8s ease-out;
}

.footer-section:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-section h4 {
    color: var(--dourado);
    margin-bottom: 1rem;
    animation: slideRight 0.6s ease-out;
}

.footer-section p {
    color: #f3e7ca;
}

.footer-logo-title {
    display: flex;
    justify-content: center;
}

.footer-logo-img {
    width: min(220px, 62vw);
    height: auto;
    display: block;
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    animation: slideRight 0.6s ease-out;
}

.footer-section ul li:nth-child(1) { animation-delay: 0.1s; }
.footer-section ul li:nth-child(2) { animation-delay: 0.15s; }
.footer-section ul li:nth-child(3) { animation-delay: 0.2s; }
.footer-section ul li:nth-child(4) { animation-delay: 0.25s; }

.footer-section a {
    color: var(--dourado-claro);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--dourado);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dourado);
    color: var(--preto);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-links a svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.social-links a:nth-child(1) { animation-delay: 0.3s; }
.social-links a:nth-child(2) { animation-delay: 0.4s; }
.social-links a:nth-child(3) { animation-delay: 0.5s; }

.social-links a:hover {
    background-color: transparent;
    color: var(--dourado);
    border: 2px solid var(--dourado);
    width: 44px;
    height: 44px;
    animation: rotate 0.6s ease-in-out forwards;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

@keyframes rotate {
    from {
        transform: rotate(0deg) scale(1);
    }
    to {
        transform: rotate(360deg) scale(1.1);
    }
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
    color: #dcc28a;
    animation: footerRiseIn 1s ease-out 0.6s both;
}

.footer-bottom p {
    color: inherit;
    animation: footerTextRise 0.6s ease-out;
}

.footer-bottom p:first-child {
    animation-delay: 0.7s;
}

.footer-bottom p:last-child {
    animation-delay: 0.8s;
}

@keyframes footerTextRise {
    from {
        transform: translateY(20px);
    }
    to {
        transform: translateY(0);
    }
}

/* Modal Orçamento */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--branco);
    border-radius: 10px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dourado);
    transition: all 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--preto);
}

.modal-content h2 {
    color: var(--preto);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid var(--dourado);
    padding-bottom: 1rem;
}

.etapa-formulario {
    animation: fadeIn 0.4s ease-out;
}

.etapa-formulario h3 {
    color: var(--dourado);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.input-grande {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--dourado);
    border-radius: 8px;
    background-color: var(--cinza-claro);
    color: var(--preto);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.input-grande:focus {
    outline: none;
    background-color: var(--branco);
    border-color: var(--dourado);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.input-grande::placeholder {
    color: #999;
}

.opcoes-evento {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.opcao-evento {
    padding: 1.2rem;
    border: 2px solid var(--dourado);
    border-radius: 8px;
    background-color: var(--branco);
    color: var(--preto);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.opcao-evento:hover {
    background-color: var(--dourado);
    color: var(--preto);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--preto);
    font-weight: 500;
    transition: all 0.3s ease;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--dourado);
    border-radius: 4px;
    cursor: pointer;
    margin-right: 0.8rem;
    background-color: var(--branco);
    transition: all 0.3s ease;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--dourado);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a1a'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}

.checkbox-group label:hover {
    color: var(--dourado);
}

.modal-form label {
    display: block;
    color: var(--preto);
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--dourado);
    border-radius: 8px;
    background-color: var(--cinza-claro);
    color: var(--preto);
    font-family: inherit;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    background-color: var(--branco);
    border-color: var(--dourado);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
    color: #999;
}

.modal-form textarea {
    resize: vertical;
    min-height: 80px;
}

.botoes-modal {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-modal {
    flex: 1;
    padding: 1rem;
    background-color: var(--dourado);
    color: var(--preto);
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-modal:hover {
    background-color: #c9a227;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-modal:active {
    transform: translateY(0);
}

.btn-modal-secondary {
    flex: 1;
    padding: 1rem;
    background-color: transparent;
    color: var(--dourado);
    border: 2px solid var(--dourado);
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-modal-secondary:hover {
    background-color: var(--dourado);
    color: var(--preto);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
    nav {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0.55rem 0.9rem;
        gap: 0.45rem;
    }

    .logo {
        margin-right: auto;
    }

    .logo img {
        height: 48px;
        max-width: 46vw;
    }

    .nav-toggle {
        display: inline-flex;
        order: 3;
        margin-left: 0;
        z-index: 1002;
    }

    .nav-cta {
        display: inline-flex;
        order: 2;
        align-self: center;
        white-space: nowrap;
        padding: 0.42rem 0.72rem;
        font-size: 0.66rem;
        letter-spacing: 0.8px;
        border-width: 1px;
        max-width: 34vw;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    nav.nav-open .nav-toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    nav.nav-open .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    nav.nav-open .nav-toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        left: 0.65rem;
        right: 0.65rem;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        margin: 0;
        padding: 0.55rem;
        border-radius: 14px;
        border: 1px solid rgba(212, 175, 55, 0.26);
        background: rgba(15, 15, 15, 0.97);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
        z-index: 1001;
    }

    nav.nav-open .nav-links {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.78rem 0.9rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.03);
        font-size: 0.82rem;
        letter-spacing: 1.1px;
    }

    .nav-links a:hover {
        background: rgba(212, 175, 55, 0.1);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .destaque {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.15;
    }

    .contato-content {
        grid-template-columns: 1fr;
    }

    .contato-banner p {
        font-size: 0.96rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.72rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .servicos {
        padding: 4.2rem 1.2rem;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servico-card {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .servico-card h3 {
        font-size: 1.22rem;
    }

    .servico-card p {
        font-size: 0.97rem;
        max-width: 100%;
    }

    .sobre-galeria {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .sobre-content {
        gap: 2rem;
    }

    .sobre-text h3 {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .sobre-text p {
        font-size: 0.98rem;
    }

    .sobre-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .feature {
        max-width: none;
        width: 100%;
        padding: 1.2rem 1rem;
    }

    .sobre-galeria img {
        height: 250px;
    }

    .galeria {
        padding: 4rem 1rem;
    }

    .galeria .section-subtitle {
        margin-bottom: 1.4rem;
    }

    .galeria-mobile-jumps {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
        margin-bottom: 0.9rem;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .galeria-mobile-jump {
        display: inline-flex;
        grid-column: 1 / -1;
        justify-content: center;
        align-items: center;
        margin: 0 0 0.8rem;
        padding: 0.7rem 0.9rem;
        border-radius: 999px;
        border: 1px solid rgba(201, 164, 92, 0.65);
        background: rgba(20, 20, 20, 0.86);
        color: #f2d79d;
        text-decoration: none;
        font-size: 0.84rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        transition: transform 0.25s ease, background 0.25s ease;
    }

    .galeria-mobile-jump:hover {
        transform: translateY(-2px);
        background: rgba(201, 164, 92, 0.16);
    }

    .galeria-item:hover {
        transform: none;
    }

    .testemunhos-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: min(92vw, 520px);
        padding: 2.1rem 1.2rem 1.4rem;
        border-radius: 14px;
    }

    .modal-content h2 {
        font-size: 1.55rem;
        margin-bottom: 1.2rem;
    }

    .whatsapp-float {
        display: inline-flex;
    }

    .whatsapp-float.is-compact {
        padding: 0.68rem;
    }

}

@media (max-width: 600px) {
    .sobre-content {
        grid-template-columns: 1fr;
    }

    .sobre-galeria {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .sobre-galeria img {
        height: auto;
        aspect-ratio: 4 / 3;
        border-radius: 22px;
    }

    .sobre-galeria img:first-child {
        aspect-ratio: 5 / 4;
        object-position: center 42%;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (hover: none) and (pointer: coarse) {
    .galeria-mobile-jumps {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
        margin-bottom: 0.9rem;
    }

    .galeria-mobile-jump {
        display: inline-flex;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.48rem 0.7rem;
        gap: 0.38rem;
    }

    .logo img {
        height: 44px;
        max-width: 40vw;
    }

    .nav-links {
        left: 0.5rem;
        right: 0.5rem;
    }

    .nav-links a {
        font-size: 0.78rem;
        letter-spacing: 1px;
    }

    .nav-cta {
        padding: 0.34rem 0.52rem;
        font-size: 0.58rem;
        letter-spacing: 0.45px;
        max-width: 38vw;
    }

    .hero {
        min-height: 88svh;
        padding-top: 104px;
        padding-bottom: 56px;
    }

    .hero h1 {
        font-size: 1.95rem;
        line-height: 1.1;
    }

    .contato-banner h3 {
        font-size: clamp(1.7rem, 9vw, 2.4rem);
    }

    .hero .destaque {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.96rem;
        line-height: 1.62;
    }

    #sobre {
        scroll-margin-top: 165px;
    }

    #galeria-corporativo,
    #testemunhos {
        scroll-margin-top: 165px;
    }

    .sobre {
        padding: 4.2rem 1rem;
    }

    .sobre .section-title {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 0.7rem;
    }

    .sobre .section-subtitle {
        font-size: 0.98rem;
        margin-bottom: 2rem;
        line-height: 1.55;
    }

    .sobre-text h3 {
        font-size: 1.9rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .sobre-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .sobre-features {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .feature {
        padding: 1rem;
    }

    .sobre-galeria {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .sobre-galeria img {
        height: auto;
        aspect-ratio: 5 / 4;
        border-radius: 20px;
    }

    .sobre-galeria img:first-child {
        aspect-ratio: 4 / 3;
        object-position: center 38%;
    }

    .btn-primary, .btn-secondary {
        padding: 0.92rem 1.3rem;
        font-size: 0.92rem;
    }

    .servicos {
        padding: 3.8rem 1rem;
    }

    .servicos .section-subtitle {
        font-size: 0.96rem;
        line-height: 1.65;
        margin-bottom: 2.2rem;
    }

    .servico-card {
        padding: 24px 18px;
    }

    .testemunho-card {
        padding: 1.35rem 1.1rem;
    }

    .contato-banner-actions a,
    .contato-banner-actions button {
        width: 100%;
    }

    .botoes-modal {
        flex-direction: column;
    }

    .whatsapp-float {
        right: 10px;
        left: auto;
        bottom: calc(10px + env(safe-area-inset-bottom));
        padding: 0.72rem 0.92rem;
        font-size: 0.8rem;
    }

    .servico-icon {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
    }

    .servico-card p {
        line-height: 1.72;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
}
