/* ============================================================
   RESET E VARIÁVEIS
============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0508;
    --black-soft: #140b0f;
    --plum: #2a1820;
    --gold: #c9a961;
    --gold-light: #e6d5a8;
    --rose: #b76e79;
    --pink: #e8b4b8;
    --cream: #f5efe6;
    --gray: #9a8f89;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Jost', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ============================================================
   CURSOR CUSTOMIZADO
============================================================ */
.cursor, .cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    transition: transform 0.3s ease, width 0.3s, height 0.3s;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 97, 0.1);
}

/* ============================================================
   PRELOADER
============================================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content { text-align: center; }

.preloader-logo {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.preloader-line {
    width: 200px;
    height: 1px;
    background: rgba(201, 169, 97, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    animation: preloadLine 1.5s ease-in-out infinite;
}

@keyframes preloadLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.preloader-content p {
    margin-top: 20px;
    font-size: 0.8rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gray);
}

/* ============================================================
   HEADER
============================================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(10, 5, 8, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--cream);
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo span {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 5px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cream);
    position: relative;
    transition: var(--transition);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-whatsapp-header {
    padding: 12px 24px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp-header:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 1.5px;
    background: var(--cream);
    transition: var(--transition);
}

/* ============================================================
   HERO
============================================================ */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?q=80&w=2000') center/cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1.2); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 5, 8, 0.92) 0%, rgba(42, 24, 32, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text { max-width: 750px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-badge i { color: var(--gold); }

#hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--cream);
}

#hero h1 .highlight {
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
}

#hero p {
    font-size: 1.15rem;
    color: rgba(245, 239, 230, 0.8);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    padding: 16px 38px;
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
}

.btn-ghost {
    padding: 16px 38px;
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245, 239, 230, 0.3);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(245, 239, 230, 0.1);
    flex-wrap: wrap;
}

.hero-stats .stat strong {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.hero-stats .stat span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-top: 8px;
    display: block;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
}

/* ============================================================
   MARQUEE
============================================================ */
.marquee {
    background: var(--gold);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-track span {
    color: var(--black);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 0 40px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================================
   SEÇÕES GENÉRICAS
============================================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding: 0 30px;
}

.section-label::before, .section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.section-label::before { left: 0; }
.section-label::after { right: 0; }

.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.05rem;
}

/* ============================================================
   POR QUE TER UM SITE
============================================================ */
.section-why {
    padding: 120px 0;
    background: var(--black-soft);
    position: relative;
}

.section-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.08), transparent 60%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-card {
    padding: 40px 30px;
    background: rgba(42, 24, 32, 0.4);
    border: 1px solid rgba(201, 169, 97, 0.1);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.why-card:hover::before { transform: scaleX(1); }

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 97, 0.3);
    background: rgba(42, 24, 32, 0.7);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 25px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gold);
    color: var(--black);
    transform: rotateY(180deg);
}

.why-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--cream);
}

.why-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ============================================================
   SOBRE
============================================================ */
.section-about {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.about-image:hover img { transform: scale(1.05); }

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--black);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    backdrop-filter: blur(10px);
}

.about-badge i {
    font-size: 2rem;
    color: var(--gold);
}

.about-badge strong {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    display: block;
    color: var(--cream);
}

.about-badge span {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    margin: 20px 0 25px;
    line-height: 1.2;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--cream);
}

.about-list i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ============================================================
   SERVIÇOS
============================================================ */
.section-services {
    padding: 120px 0;
    background: var(--black-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.service-card {
    background: rgba(42, 24, 32, 0.4);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.service-image {
    height: 260px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-image img { transform: scale(1.1); }

.service-content {
    padding: 30px;
    position: relative;
}

.service-price {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 5px 14px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50px;
}

.service-content h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--cream);
}

.service-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover { gap: 15px; }

/* ============================================================
   ANTES E DEPOIS
============================================================ */
.section-before-after {
    padding: 120px 0;
}

.before-after-container {
    max-width: 900px;
    margin: 0 auto;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.before-after-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    position: absolute;
    inset: 0;
}

.after-image { position: absolute; inset: 0; }

.before-image {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
}

.before-image img { width: 200%; }

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--gold);
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

.slider-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.label {
    position: absolute;
    top: 20px;
    padding: 8px 18px;
    background: rgba(10, 5, 8, 0.8);
    color: var(--cream);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    z-index: 4;
}

.after-label { right: 20px; }
.before-label { left: 20px; }

/* ============================================================
   GALERIA
============================================================ */
.section-gallery {
    padding: 120px 0;
    background: var(--black-soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 5, 8, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--gold);
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================================
   EQUIPE
============================================================ */
.section-team {
    padding: 120px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
}

.team-card {
    text-align: center;
    transition: var(--transition);
}

.team-image {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    width: 220px;
    height: 220px;
    margin: 0 auto 25px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    transition: var(--transition);
}

.team-card:hover .team-image {
    border-color: var(--gold);
    transform: scale(1.05);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-card p {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* ============================================================
   DEPOIMENTOS
============================================================ */
.section-testimonials {
    padding: 120px 0;
    background: var(--black-soft);
    overflow: hidden;
}

.testimonials-slider { position: relative; }

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: rgba(42, 24, 32, 0.5);
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateY(-5px);
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 25px;
    line-height: 1.6;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.author strong {
    display: block;
    color: var(--cream);
    font-size: 0.95rem;
}

.author span {
    font-size: 0.8rem;
    color: var(--gray);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.testimonial-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.testimonial-controls button:hover {
    background: var(--gold);
    color: var(--black);
}

/* ============================================================
   AGENDAMENTO
============================================================ */
.section-booking {
    padding: 120px 0;
    position: relative;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.booking-info h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin: 20px 0 20px;
    line-height: 1.2;
}

.booking-info > p {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature i {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature strong {
    display: block;
    color: var(--cream);
    font-size: 0.95rem;
}

.feature span {
    font-size: 0.85rem;
    color: var(--gray);
}

.booking-contact p {
    color: var(--gray);
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-contact i { color: var(--gold); }

.booking-form-wrap {
    background: rgba(42, 24, 32, 0.5);
    padding: 45px;
    border-radius: 25px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    backdrop-filter: blur(10px);
}

.booking-form-wrap h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--cream);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 5, 8, 0.6);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 10px;
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(10, 5, 8, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(154, 143, 137, 0.6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-width { width: 100%; justify-content: center; }

.form-note {
    font-size: 0.8rem;
    color: var(--gray);
    text-align: center;
    margin-top: 15px;
}

/* ============================================================
   FAQ
============================================================ */
.section-faq {
    padding: 120px 0;
    background: var(--black-soft);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
    font-size: 1rem;
}

.faq-item.active .faq-question i { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 200px; }

.faq-answer p {
    padding-bottom: 25px;
    color: var(--gray);
    font-size: 1rem;
}

/* ============================================================
   INSTAGRAM
============================================================ */
.section-instagram {
    padding: 120px 0 0;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insta-item::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    inset: 0;
    background: rgba(201, 169, 97, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.insta-item:hover::after { opacity: 1; }
.insta-item:hover img { transform: scale(1.1); }

/* ============================================================
   CTA
============================================================ */
.section-cta {
    padding: 120px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--plum), var(--black-soft));
    padding: 80px 60px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-box h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    position: relative;
}

.cta-box p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
    background: var(--black-soft);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 20px;
}

.footer-logo span {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 5px;
}

.footer-col p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--cream);
}

.footer-col a {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    padding: 5px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
    padding: 0;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    font-size: 0.85rem;
    color: var(--gray);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom a {
    color: var(--gold);
    transition: var(--transition);
}

.footer-bottom a:hover { color: var(--cream); }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulseWhats 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: var(--black);
    color: var(--cream);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulseWhats {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
}

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 968px) {
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none; }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        z-index: 999;
        gap: 30px;
        border-left: 1px solid rgba(201, 169, 97, 0.2);
    }

    .nav.active { right: 0; }

    .nav a { font-size: 1.2rem; }

    .menu-toggle { display: flex; z-index: 1001; }

    .btn-whatsapp-header { display: none; }

    .about-grid, .booking-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image img { height: 400px; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .testimonial-card { min-width: 100%; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .insta-grid { grid-template-columns: repeat(3, 1fr); }

    .before-after-slider { height: 400px; }

    .hero-stats { gap: 30px; }
    .hero-stats .stat strong { font-size: 1.8rem; }

    .section-why, .section-services, .section-gallery,
    .section-team, .section-testimonials, .section-booking,
    .section-faq, .section-before-after {
        padding: 80px 0;
    }
}

@media (max-width: 600px) {
    .container { padding: 0 20px; }

    .header-actions .btn-whatsapp-header { display: none; }

    h1 { font-size: 2.2rem; }

    .hero-buttons { flex-direction: column; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

    .hero-stats { gap: 20px; }

    .form-row { grid-template-columns: 1fr; }

    .booking-form-wrap { padding: 25px; }

    .cta-box { padding: 50px 25px; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }

    .footer-grid { grid-template-columns: 1fr; }

    .insta-grid { grid-template-columns: repeat(2, 1fr); }

    .before-after-slider { height: 350px; }

    .slider-circle { width: 45px; height: 45px; font-size: 0.9rem; }
}