*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root { --gold: #C9A84C; --gold-light: #E8C97A; --gold-dim: #8a6f2e; --black: #0a0a0a; --dark2: #1a1a1a; --dark3: #222222; --white: #f5f0e8; --white2: #e8e0d0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { -webkit-touch-callout: none; -webkit-user-drag: none; user-select: none; -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; }
body { background: var(--black); color: var(--white); font-family: 'Lato', sans-serif; font-weight: 300; overflow-x: hidden; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; height: 56px; background: rgba(10,10,10,0.97); border-bottom: 1px solid rgba(201,168,76,0.2); }
.nav-logo { font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 3px; color: var(--gold); cursor: pointer; }
.hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; height: 1px; background: var(--gold); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-drawer { position: fixed; top: 56px; left: 0; right: 0; bottom: 0; background: rgba(10,10,10,0.98); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px; transform: translateX(100%); transition: transform 0.35s ease; z-index: 999; }
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a { font-family: 'Cinzel', serif; font-size: 16px; letter-spacing: 5px; color: var(--white2); text-decoration: none; cursor: pointer; padding: 12px 32px; border: 1px solid transparent; transition: all 0.3s; }
.nav-drawer a:active, .nav-drawer a.ativo { color: var(--gold); border-color: rgba(201,168,76,0.3); }
.page { display: none; min-height: 100vh; padding-top: 56px; }
.page.active { display: block; }
.hero { position: relative; height: calc(100svh - 56px); min-height: 500px; overflow: hidden; }
.slideshow { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.1) 40%, rgba(10,10,10,0.75) 75%, rgba(10,10,10,0.95) 100%); }
.hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 0 28px 40px; }
.hero-tag { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 5px; color: var(--gold); margin-bottom: 12px; animation: fadeUp 0.8s 0.3s both; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; line-height: 1.0; color: var(--white); margin-bottom: 6px; animation: fadeUp 0.8s 0.5s both; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 4px; color: var(--gold-dim); margin-bottom: 24px; animation: fadeUp 0.8s 0.7s both; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp 0.8s 0.9s both; }
.slide-dots { position: absolute; bottom: 160px; right: 24px; display: flex; flex-direction: column; gap: 6px; z-index: 5; }
.dot { width: 2px; height: 16px; background: rgba(201,168,76,0.3); cursor: pointer; transition: all 0.3s; }
.dot.active { background: var(--gold); height: 28px; }
.about-section { background: var(--dark2); }
.about-image { position: relative; overflow: hidden; height: 380px; }
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: brightness(0.8) sepia(0.1); }
.about-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, var(--dark2)); }
.gold-frame { position: absolute; top: 20px; left: 20px; right: 20px; bottom: 20px; border: 1px solid rgba(201,168,76,0.25); pointer-events: none; z-index: 2; }
.about-content { padding: 36px 28px 48px; }
.about-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 20px; color: var(--gold-light); margin-top: 16px; line-height: 1.4; }
.btn-gold { display: inline-block; font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px; padding: 16px 28px; background: var(--gold); color: var(--black); border: none; cursor: pointer; transition: all 0.2s; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.btn-gold:active { background: var(--gold-light); transform: scale(0.97); }
.btn-outline { display: inline-block; font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px; padding: 15px 28px; background: transparent; color: var(--gold); border: 1px solid var(--gold-dim); cursor: pointer; transition: all 0.2s; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.btn-outline:active { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.section-tag { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 5px; color: var(--gold); margin-bottom: 16px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--gold-light); }
.section-title.lg { font-size: 48px; }
.section-divider { width: 50px; height: 1px; background: var(--gold); margin-bottom: 24px; }
.body-text { font-size: 14px; line-height: 1.9; color: #999; margin-bottom: 12px; }
.page-header { text-align: center; padding: 48px 28px 40px; }
.page-header::before { content: ''; display: block; width: 1px; height: 40px; background: var(--gold); margin: 0 auto 20px; }
.page-header p.sub { font-size: 12px; color: #555; margin-top: 8px; letter-spacing: 1px; }
.service-card { background: var(--dark2); padding: 36px 28px; margin: 0 0 2px; position: relative; overflow: hidden; border-left: 3px solid transparent; transition: border-color 0.3s; }
.service-card:active { border-left-color: var(--gold); }
.service-icon { font-size: 28px; margin-bottom: 14px; }
.service-name { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 4px; color: var(--gold); margin-bottom: 10px; }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.service-desc { font-size: 13px; line-height: 1.8; color: #777; margin-bottom: 24px; }
.pacotes { display: flex; flex-direction: column; gap: 10px; }
.pacote { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; border: 1px solid rgba(201,168,76,0.15); gap: 12px; }
.pacote-nome { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 3px; color: var(--gold-dim); margin-bottom: 4px; }
.pacote-detalhe { font-size: 12px; color: #777; line-height: 1.5; }
.pacote-preco { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--gold-light); white-space: nowrap; flex-shrink: 0; }
.conditions-section { background: var(--dark2); padding: 40px 28px; margin-top: 2px; border-top: 1px solid rgba(201,168,76,0.2); }
.cond-title { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px; color: var(--gold); margin-bottom: 16px; margin-top: 28px; }
.cond-title:first-child { margin-top: 0; }
.cond-item { display: flex; gap: 10px; margin-bottom: 10px; font-size: 13px; color: #888; line-height: 1.7; }
.cond-item::before { content: '—'; color: var(--gold-dim); flex-shrink: 0; }
.cta-wrap { padding: 36px 28px 48px; text-align: center; }
.contact-info { padding: 36px 28px; background: var(--dark2); }
.contact-links { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.contact-link { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid rgba(201,168,76,0.2); text-decoration: none; color: var(--white); -webkit-tap-highlight-color: transparent; transition: border-color: 0.2s; min-height: 64px; }
.contact-link:active { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.contact-link-icon { font-size: 24px; flex-shrink: 0; }
.contact-link-text strong { display: block; font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 3px; color: var(--gold); margin-bottom: 2px; }
.contact-link-text span { font-size: 13px; color: #888; }
.contact-form-wrap { padding: 36px 28px 48px; background: var(--dark3); }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 3px; color: var(--gold-dim); margin-bottom: 8px; }
.form-input, .form-textarea { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2); color: var(--white); font-family: 'Lato', sans-serif; font-size: 16px; padding: 14px 16px; outline: none; -webkit-appearance: none; border-radius: 0; transition: border-color 0.3s; }
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-status { margin-top: 14px; font-size: 13px; text-align: center; min-height: 20px; }
.form-status.success { color: #7dc77d; }
.form-status.error { color: #d9736a; }
.portfolio-grid { columns: 2; column-gap: 3px; padding: 0 0 60px; }
.portfolio-item { break-inside: avoid; margin-bottom: 3px; overflow: hidden; cursor: pointer; }
.portfolio-item img { width: 100%; display: block; filter: brightness(0.9); transition: filter 0.3s; }
.portfolio-item:active img { filter: brightness(1.05); }
.portfolio-loading { text-align: center; padding: 80px 28px; font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px; color: #555; }
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.97); z-index: 9999; align-items: center; justify-content: center; padding: 16px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 16px; right: 20px; font-size: 36px; color: var(--gold); cursor: pointer; font-family: 'Cormorant Garamond', serif; line-height: 1; padding: 8px; }
footer { text-align: center; padding: 36px 20px; border-top: 1px solid rgba(201,168,76,0.15); background: var(--dark2); }
.footer-logo { font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 5px; color: var(--gold); margin-bottom: 8px; }
.footer-text { font-size: 11px; color: #555; letter-spacing: 1px; line-height: 1.8; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (min-width: 768px) {
nav { padding: 0 48px; }
.hamburger { display: none; }
.nav-drawer { position: static; transform: none; flex-direction: row; background: transparent; gap: 32px; height: 56px; justify-content: flex-end; }
.nav-drawer a { font-size: 11px; letter-spacing: 3px; padding: 4px 0; border: none; }
.nav-drawer a:hover { color: var(--gold); }
.hero { height: calc(100vh - 56px); }
.hero-content { padding: 0 80px 60px; max-width: 560px; }
.hero-title { font-size: 80px; }
.about-section { display: grid; grid-template-columns: 1fr 1fr; }
.about-image { height: auto; }
.about-content { padding: 80px 80px 80px 60px; }
.services-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 0 60px; }
.service-card { margin: 0; }
.conditions-section { margin: 2px 60px 0; }
.cta-wrap { padding: 48px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; margin: 0 60px; gap: 2px; }
.contact-info, .contact-form-wrap { padding: 60px 50px; }
.portfolio-grid { columns: 3; column-gap: 4px; }
.page-header { padding: 60px 40px 50px; }
.section-title.lg { font-size: 64px; }
}
@media (min-width: 1100px) { .portfolio-grid { columns: 4; } }

/* ══ WHATSAPP FLUTUANTE (DOURADO) ══ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: var(--gold); /* Fundo dourado do site */
    color: var(--black); /* Ícone escuro para dar contraste */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s, background-color 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background-color: var(--gold-light); /* Dourado mais claro ao passar o mouse */
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* Ajuste na responsividade para telas grandes */
@media (min-width: 768px) {
    .whatsapp-float {
        bottom: 40px;
        right: 40px;
        width: 64px;
        height: 64px;
    }
}
/* ══ FILTROS DO PORTFÓLIO ══ */
.portfolio-filtros {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.btn-filtro {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    padding: 10px 24px;
    background: transparent;
    color: #888;
    border: 1px solid rgba(201,168,76,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filtro.ativo {
    background: rgba(201,168,76,0.1);
    color: var(--gold);
    border-color: var(--gold);
}

.btn-filtro:active {
    transform: scale(0.95);
}
/* ══ SKELETON LOADERS (CARREGAMENTO) ══ */
@keyframes skeletonPulse {
  0% { background-color: rgba(255, 255, 255, 0.03); }
  50% { background-color: rgba(255, 255, 255, 0.08); }
  100% { background-color: rgba(255, 255, 255, 0.03); }
}

.skeleton-item {
  width: 100%;
  margin-bottom: 4px;
  animation: skeletonPulse 1.5s infinite ease-in-out;
  border-radius: 2px;
  break-inside: avoid;
}
/* Oculta o selo flutuante do reCAPTCHA */
.grecaptcha-badge { 
    visibility: hidden !important; 
}

/* ══ SUBCATEGORIAS DO PORTFÓLIO ══ */
.subcategoria-titulo {
    column-span: all;          /* Quebra a grid para ocupar a tela toda */
    -webkit-column-span: all;  /* Suporte para navegadores Safari/iOS */
    text-align: center;
    margin: 60px 0 24px 0;
    break-inside: avoid;
}

/* Tira a margem gigante do primeiro título para não ficar um buraco no topo */
.subcategoria-titulo:first-child {
    margin-top: 10px;
}

.subcategoria-titulo h3 {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--gold-light);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.subcategoria-linha {
    width: 60px;
    height: 1px;
    background: rgba(201,168,76,0.3);
    margin: 0 auto;
}

