@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* ═══════ PALETA PREMIUM DARK CHAMPAGNE ═══════ */
    --primary: #C9A86C;
    --primary-soft: rgba(201, 168, 108, 0.12);
    --primary-light: #DFC08A;
    --primary-dark: #A8894F;
    --secondary: #1A1520;
    --secondary-soft: rgba(26, 21, 32, 0.5);
    --accent: #4A0E1B;
    --accent-soft: rgba(74, 14, 27, 0.2);

    --bg: #0A0A0A;
    --bg-dark: #050505;
    --bg-alt: #111111;
    --bg-card: rgba(18, 18, 18, 0.85);
    --bg-glass: rgba(20, 20, 20, 0.6);
    --bg-cream: #0E0E0E;
    --white: #FFFFFF;

    --text: #D4CFC7;
    --text-muted: #8A8580;
    --text-dark: #F5F0E8;
    --text-light: #F8F5F0;
    --border: rgba(201, 168, 108, 0.12);
    --border-light: rgba(201, 168, 108, 0.06);
    --border-gold: rgba(201, 168, 108, 0.25);

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-pill: 50px;

    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 8px 32px rgba(201, 168, 108, 0.15);
    --shadow-glow: 0 0 40px rgba(201, 168, 108, 0.08);

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════ RESET ═══════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body > * { max-width: 100%; }

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
.min-h-svh { min-height: 100svh; }

/* ═══════ TYPOGRAPHY ═══════ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.15;
    font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 7vw, 5rem); letter-spacing: -1px; }
h2 { font-size: clamp(1.75rem, 5vw, 3.25rem); letter-spacing: -0.5px; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.25rem); }

p, body, .body-text {
    font-size: clamp(0.875rem, 2vw, 1.05rem);
}

/* ═══════ LAYOUT ═══════ */
section, .section {
    padding: clamp(3rem, 10vw, 6rem) clamp(1rem, 5%, 5%);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    width: 100%;
}
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 2rem);
    width: 100%;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.75rem, 2vw, 1.5rem);
    width: 100%;
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════ BUTTONS ═══════ */
.btn {
    padding: clamp(10px, 2vw, 14px) clamp(16px, 4vw, 28px);
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    transition: left 0.6s ease;
}
.btn:hover::after { left: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #0A0A0A;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 108, 0.3);
}

.btn-outline {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: #0A0A0A;
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--text-light);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}
.btn-whatsapp:hover {
    background: #1EBE57;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-admin {
    background: rgba(201, 168, 108, 0.1);
    color: var(--primary);
    border: 1px solid var(--border-gold);
    padding: clamp(6px, 1.5vw, 10px) clamp(12px, 3vw, 20px);
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
}
.btn-admin:hover {
    background: var(--primary);
    color: #0A0A0A;
}

@media (max-width: 768px) {
    .btn:not(.btn-admin):not(.btn-nav) { width: 100%; }
    .nav-actions .btn {
        width: auto !important;
        padding: 6px 10px;
        font-size: 0.65rem;
        gap: 5px;
    }
}

/* ═══════ NAVBAR ═══════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: clamp(12px, 3vw, 20px) clamp(1rem, 5%, 5%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: clamp(8px, 1.5vw, 14px) clamp(1rem, 5%, 5%);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3.5vw, 1.9rem);
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1001;
    letter-spacing: 1px;
}

.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    gap: clamp(15px, 3vw, 30px);
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 400;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: clamp(8px, 1.5vw, 15px);
    align-items: center;
    z-index: 1001;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    background: none;
    width: 32px;
    height: 32px;
}
.burger span {
    width: 24px;
    height: 1.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 992px) {
    .burger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(85%, 340px);
        height: 100svh;
        background: #0E0E0E;
        flex-direction: column;
        justify-content: center;
        padding: clamp(2rem, 6vw, 3rem);
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        z-index: 999;
        overflow-y: auto;
        border-left: 1px solid var(--border);
    }
    .nav-links.active { right: 0; }
    .nav-links a {
        font-size: clamp(1rem, 4vw, 1.2rem);
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-light);
    }
}

/* ═══════ HERO ═══════ */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.6) 40%,
        rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(201, 168, 108, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 14, 27, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: clamp(300px, 90%, 600px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 108, 0.1);
    border: 1px solid var(--border-gold);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 500;
    color: var(--primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge i { color: var(--primary); }

.hero h1 {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.1;
}
.hero h1 em {
    font-style: italic;
    color: var(--primary);
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: var(--text-muted);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    max-width: 480px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 16px);
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    padding-top: clamp(1rem, 3vw, 1.5rem);
    border-top: 1px solid var(--border);
}

.hero-stat { text-align: left; }

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    color: var(--primary);
}

.hero-stat-label {
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 480px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 3;
    border: 1px solid var(--border-gold);
}

@media (min-width: 1024px) {
    .hero-image { display: block; }
}

/* ═══════ TAGLINE STRIP ═══════ */
.tagline-strip {
    background: var(--bg-alt);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tagline-track {
    display: flex;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tagline-strip span {
    color: var(--text-muted);
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    font-weight: 400;
    white-space: nowrap;
    padding: 0 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline-strip .dot {
    color: var(--primary);
    font-size: 0.5rem;
}

/* ═══════ TRUST BADGES ═══════ */
.trust-badges {
    background: var(--bg-alt);
    padding: clamp(1.5rem, 4vw, 2rem) 0;
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 5vw, 3rem);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.trust-item i {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

/* ═══════ SECTION COMMONS ═══════ */
.services { background: var(--bg); }
.features { background: var(--bg-alt); }
.gallery { background: var(--bg); }
.testimonials { background: var(--bg-alt); }
.pricing { background: var(--bg); }
.contact { background: var(--bg-alt); }

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-label {
    display: inline-block;
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.section-header p {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    font-weight: 300;
}

/* ═══════ SERVICE CARDS ═══════ */
.service-card {
    background: var(--bg-card);
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: var(--border-gold);
}

.service-icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--border-gold);
}

.service-icon i {
    color: var(--primary);
    width: clamp(24px, 5vw, 28px);
    height: clamp(24px, 5vw, 28px);
}

.service-card h3 { margin-bottom: 0.5rem; }

.service-card p {
    color: var(--text-muted);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    margin-bottom: 1rem;
    flex-grow: 1;
    font-weight: 300;
}

.service-price {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--primary);
}

.service-price span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* ═══════ FEATURE CARDS ═══════ */
.feature-card {
    background: var(--bg-card);
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    flex-shrink: 0;
    width: clamp(44px, 9vw, 52px);
    height: clamp(44px, 9vw, 52px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-sm);
}

.feature-icon i {
    color: #0A0A0A;
    width: clamp(20px, 4vw, 24px);
    height: clamp(20px, 4vw, 24px);
}

.feature-card h4 { margin-bottom: 0.4rem; }

.feature-card p {
    color: var(--text-muted);
    font-size: clamp(0.8rem, 1.5vw, 0.85rem);
    font-weight: 300;
}

/* ═══════ GALLERY ═══════ */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #0A0A0A;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(8px, 2vw, 12px);
}

@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border: 1px solid var(--border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    color: var(--primary-light);
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ═══════ TESTIMONIALS ═══════ */
.testimonial-card {
    background: var(--bg-card);
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-gold);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: var(--primary);
    width: 16px;
    height: 16px;
}

.testimonial-text {
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--text);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.8;
    font-family: var(--font-heading);
    font-weight: 400;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.testimonial-type {
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    color: var(--primary);
    letter-spacing: 0.5px;
}

/* ═══════ PRICING ═══════ */
.pricing-card {
    background: var(--bg-card);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pricing-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured {
    border: 1.5px solid var(--primary);
    position: relative;
    background: rgba(201, 168, 108, 0.04);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #0A0A0A;
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-size: clamp(0.6rem, 1.3vw, 0.7rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pricing-header h3 { margin-bottom: 0.5rem; }

.pricing-price {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 600;
    color: var(--primary);
    margin: 1rem 0;
}

.pricing-price span {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--text-muted);
}

.pricing-features {
    text-align: left;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0;
    font-size: clamp(0.8rem, 1.5vw, 0.88rem);
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
    font-weight: 300;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features i {
    color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pricing-card .btn { margin-top: auto; }

/* ═══════ QUOTE SECTION ═══════ */
.quote-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(201, 168, 108, 0.06) 0%, transparent 60%);
}

.quote-section .section-label { color: var(--primary); }
.quote-section h2 { color: var(--text-light); }
.quote-section p { color: var(--text-muted); }

.quote-form {
    background: var(--bg-card);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 600px) {
    .form-grid { grid-template-columns: repeat(2, 1fr); }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.04);
    transition: var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
    background: rgba(255, 255, 255, 0.06);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A86C' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group select option {
    background: #1A1A1A;
    color: var(--text-light);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* ═══════ CONTACT ═══════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 900px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
}

.contact-icon i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.contact-item h4 {
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-muted);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 300;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) brightness(0.8);
}

/* ═══════ FOOTER ═══════ */
footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 5%, 5%) clamp(1.5rem, 4vw, 2.5rem);
    border-top: 1px solid var(--border);
    margin-top: clamp(2rem, 6vw, 4rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: clamp(1.5rem, 5vw, 3rem);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-brand .logo {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    font-weight: 300;
}

footer h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
    font-weight: 600;
}

footer ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

footer a {
    color: var(--text-muted);
    font-size: clamp(0.8rem, 1.5vw, 0.88rem);
    transition: var(--transition);
    font-weight: 300;
}

footer a:hover { color: var(--primary); }

footer li {
    color: var(--text-muted);
    font-size: clamp(0.8rem, 1.5vw, 0.88rem);
    font-weight: 300;
}

.footer-bottom {
    margin-top: clamp(2rem, 5vw, 3rem);
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: clamp(0.7rem, 1.3vw, 0.75rem);
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 108, 0.08);
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.social-links a:hover i { color: #0A0A0A; }

.social-links i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* ═══════ WHATSAPP FLOAT ═══════ */
.whatsapp-float {
    position: fixed;
    bottom: clamp(20px, 4vw, 28px);
    right: clamp(20px, 4vw, 28px);
    width: clamp(52px, 11vw, 60px);
    height: clamp(52px, 11vw, 60px);
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(1.5rem, 4vw, 1.9rem);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.55);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: pulse-ring 2.5s ease infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.3); opacity: 0; }
    100% { opacity: 0; }
}

/* ═══════ REVEAL ANIMATIONS ═══════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════ ABOUT / EQUIPO HERO ═══════ */
.about-hero {
    min-height: 50svh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: center;
}

@media (min-width: 900px) {
    .about-content { grid-template-columns: 1fr 1fr; }
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.about-image img { width: 100%; height: auto; }

.about-text h2 { margin-bottom: 1rem; }
.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* ═══════ TEAM CARDS ═══════ */
.team-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.team-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.9);
}

.team-card:hover .team-image img {
    filter: brightness(1);
    transform: scale(1.03);
}

.team-info { padding: clamp(1rem, 3vw, 1.5rem); }

.team-info h4 { margin-bottom: 4px; }

.team-role {
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    font-size: clamp(0.75rem, 1.3vw, 0.85rem);
    color: var(--text-muted);
    font-weight: 300;
}

/* ═══════ AGENDAR HERO ═══════ */
.agendar-hero {
    min-height: 50svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px clamp(1rem, 5%, 5%) 3rem;
    background: var(--bg-alt);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-calendar {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2rem);
    border: 1px solid var(--border);
    margin-top: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-header h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

.calendar-nav {
    display: flex;
    gap: 8px;
}

.calendar-nav button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    transition: var(--transition);
}

.calendar-nav button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #0A0A0A;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day-name {
    text-align: center;
    font-size: clamp(0.6rem, 1.3vw, 0.7rem);
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.calendar-day:not(.disabled):hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.calendar-day.selected {
    background: var(--primary);
    color: #0A0A0A;
    font-weight: 600;
}

.calendar-day.disabled {
    color: rgba(255,255,255,0.15);
    cursor: not-allowed;
}

.time-slots {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.time-slots h4 {
    margin-bottom: 1rem;
    text-align: center;
}

.time-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.time-option {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: clamp(0.75rem, 1.3vw, 0.85rem);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
    background: transparent;
}

.time-option:hover,
.time-option.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: #0A0A0A;
}

/* ═══════ DIVIDER DECORATION ═══════ */
.section-divider {
    width: 60px;
    height: 1px;
    background: var(--primary);
    margin: 0 auto 1.5rem;
    opacity: 0.5;
}

/* ═══════ BODY NO SCROLL ═══════ */
body.no-scroll { overflow: hidden; }

/* ═══════ RESPONSIVE OVERRIDES ═══════ */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 3rem;
    }
    .hero-stats { justify-content: space-between; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { justify-content: center; text-align: center; }
}