/* ==========================================================================
   RAZOR BARBEARIA — Design System & CSS
   Premium Dark Theme with Gold Accents
   ========================================================================== */

/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
    /* Brand Colors */
    --gold: #c8982e;
    --gold-light: #d4a94a;
    --gold-dark: #a07824;
    --gold-glow: rgba(200, 152, 46, 0.25);
    --gold-subtle: rgba(200, 152, 46, 0.08);

    /* Backgrounds */
    --bg-deep: #07070c;
    --bg-primary: #0a0a0f;
    --bg-secondary: #0e0e15;
    --bg-card: #111118;
    --bg-card-hover: #16161f;
    --bg-elevated: #1a1a24;

    /* Text */
    --text-primary: #f0ece4;
    --text-secondary: #a8a29e;
    --text-muted: #6b6560;

    /* Glass */
    --glass-bg: rgba(10, 10, 15, 0.75);
    --glass-border: rgba(200, 152, 46, 0.12);
    --glass-border-subtle: rgba(255, 255, 255, 0.04);

    /* Fonts */
    --font-display: 'Playfair Display', serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --t-fast: 0.2s;
    --t-normal: 0.35s;
    --t-slow: 0.6s;

    /* Spacing */
    --section-py: clamp(80px, 10vw, 140px);
    --container-px: clamp(16px, 4vw, 40px);
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color var(--t-fast) var(--ease-smooth); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ── Utilities ──────────────────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.text-gold { color: var(--gold); }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag i { font-size: 0.7rem; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    text-transform: none;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 550px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-desc { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--t-normal) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0f;
    border-color: var(--gold);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(200, 152, 46, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-glass {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-color: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.4);
}

/* ── Preloader ──────────────────────────────────────────────────────────── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner { text-align: center; }

.preloader-logo {
    width: 80px;
    height: 80px;
    animation: pulse 1.5s ease-in-out infinite;
    margin: 0 auto 30px;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--bg-elevated);
    border-radius: 10px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 10px;
    animation: preloaderFill 1.5s var(--ease-smooth) forwards;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    padding: 20px 0;
    transition: all var(--t-normal) var(--ease-smooth);
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 38px;
    transition: transform var(--t-fast) var(--ease-smooth);
}

.logo:hover img { transform: scale(1.05); }

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--t-normal) var(--ease-smooth);
}

.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.btn-nav { padding: 10px 22px; font-size: 0.85rem; }

.header-actions { display: flex; align-items: center; gap: 16px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    z-index: 9999;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--t-normal) var(--ease-smooth);
    transform-origin: center;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 8999;
    background: rgba(7, 7, 12, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-normal) var(--ease-smooth);
}

.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-menu-content { text-align: center; }

.mobile-menu-content ul { margin-bottom: 40px; }

.mobile-menu-content li { margin-bottom: 20px; }

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-secondary);
    transition: color var(--t-fast) var(--ease-smooth);
}

.mobile-link:hover { color: var(--gold); }

.btn-mobile-cta { margin-top: 20px; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: heroZoom 20s var(--ease-smooth) infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right, rgba(7, 7, 12, 0.95) 0%, rgba(7, 7, 12, 0.6) 50%, rgba(7, 7, 12, 0.3) 100%),
        linear-gradient(to top, rgba(7, 7, 12, 0.9) 0%, transparent 40%);
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { left: 25%; animation-delay: 1.5s; animation-duration: 9s; }
.particle:nth-child(3) { left: 45%; animation-delay: 3s; animation-duration: 6s; }
.particle:nth-child(4) { left: 60%; animation-delay: 0.5s; animation-duration: 8s; }
.particle:nth-child(5) { left: 75%; animation-delay: 2s; animation-duration: 10s; }
.particle:nth-child(6) { left: 90%; animation-delay: 4s; animation-duration: 7.5s; }

@keyframes particleFloat {
    0%   { bottom: -5%; opacity: 0; transform: translateX(0); }
    15%  { opacity: 0.6; }
    50%  { opacity: 0.3; transform: translateX(30px); }
    85%  { opacity: 0.6; }
    100% { bottom: 105%; opacity: 0; transform: translateX(-20px); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-subtle);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid var(--glass-border-subtle);
    margin-bottom: 40px;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--glass-border);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll a {
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(200, 152, 46, 0.4);
    border-radius: 20px;
    position: relative;
}

.hero-scroll span {
    display: block;
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 22px; opacity: 0.3; }
}

/* ── About ──────────────────────────────────────────────────────────────── */
.about {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.section-bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-subtle), transparent);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-visual { position: relative; }

.about-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform var(--t-slow) var(--ease-smooth);
}

.about-img-wrapper:hover .about-img { transform: scale(1.03); }

.about-img-border {
    position: absolute;
    inset: -8px;
    border: 2px solid var(--gold);
    border-radius: 16px;
    opacity: 0.15;
    pointer-events: none;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-deep);
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px var(--gold-glow);
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 400;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.about-highlights { display: flex; flex-direction: column; gap: 20px; }

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border-subtle);
    border-radius: 10px;
    transition: all var(--t-normal) var(--ease-smooth);
}

.highlight-item:hover {
    border-color: var(--glass-border);
    background: var(--bg-card-hover);
    transform: translateX(8px);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-subtle);
    color: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.highlight-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.highlight-item span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ── Services ───────────────────────────────────────────────────────────── */
.services {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

/* Price Table */
.price-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.price-category {
    background: var(--bg-card);
    border: 1px solid var(--glass-border-subtle);
    border-radius: 12px;
    padding: 32px;
    transition: border-color var(--t-normal) var(--ease-smooth);
}

.price-category:hover { border-color: var(--glass-border); }

.price-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border-subtle);
}

.price-category-header i {
    color: var(--gold);
    font-size: 1.3rem;
}

.price-category-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 0;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.price-row:last-child { border-bottom: none; }

.price-name {
    font-weight: 500;
    white-space: nowrap;
    color: var(--text-primary);
}

.price-dots {
    flex: 1;
    border-bottom: 2px dotted var(--glass-border-subtle);
    margin-bottom: 4px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}

/* Service Cards */
.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--glass-border-subtle);
    border-radius: 14px;
    padding: 40px 28px 36px;
    text-align: center;
    transition: all var(--t-normal) var(--ease-smooth);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--t-slow) var(--ease-smooth);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-card:hover .card-glow { opacity: 1; }

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--gold-subtle);
    color: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all var(--t-normal) var(--ease-smooth);
}

.service-card:hover .card-icon {
    background: var(--gold);
    color: var(--bg-deep);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-card.featured {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
    border-color: rgba(200, 152, 46, 0.2);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--bg-deep);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}

.card-price {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
}

/* ── Gallery ────────────────────────────────────────────────────────────── */
.gallery {
    padding: var(--section-py) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 7, 12, 0.8) 0%, rgba(7, 7, 12, 0) 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--t-normal) var(--ease-smooth);
}

.gallery-overlay i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── CTA Banner ─────────────────────────────────────────────────────────── */
.cta-banner {
    position: relative;
    padding: var(--section-py) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 12, 0.88);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    animation: pulse 3s ease-in-out infinite;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: none;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ── Contact ────────────────────────────────────────────────────────────── */
.contact {
    padding: var(--section-py) 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border-subtle);
    border-radius: 12px;
    transition: all var(--t-normal) var(--ease-smooth);
}

.contact-card:hover {
    border-color: var(--glass-border);
    transform: translateX(6px);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-subtle);
    color: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-card strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.contact-card a { color: var(--gold); }
.contact-card a:hover { color: var(--gold-light); }

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    min-height: 350px;
    border: 1px solid var(--glass-border-subtle);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(1) contrast(0.85) brightness(0.7) sepia(0.25);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
    position: relative;
    background: var(--bg-deep);
    padding: 80px 0 24px;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--glass-border-subtle);
}

.footer-logo {
    height: 48px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 280px;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all var(--t-normal) var(--ease-smooth);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--bg-deep);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--gold-glow);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--t-fast) var(--ease-smooth);
}

.footer-col ul a:hover { color: var(--gold); }

/* Schedule list */
.schedule-list {
    max-width: 260px;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--glass-border-subtle);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.schedule-list li.closed span:last-child { color: #e74c3c; }

/* Footer Contact */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 1rem;
}

.footer-contact-item a {
    color: var(--text-muted);
    transition: color var(--t-fast);
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-credits a { color: var(--gold); }

/* ── WhatsApp Float ─────────────────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 8000;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    transition: all var(--t-normal) var(--ease-smooth);
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-visual { order: -1; max-width: 400px; margin: 0 auto; }
    .price-table { grid-template-columns: 1fr; }
    .services-cards { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 300px; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .header-actions .btn-nav { display: none; }
    .hamburger { display: flex; }

    .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
    .hero-stats { flex-direction: column; gap: 20px; align-items: flex-start; }
    .stat-divider { width: 50px; height: 1px; }

    .services-cards { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item--large { grid-column: span 2; grid-row: span 1; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--large { grid-column: span 1; }
}
