:root {
    --brand-primary: #1e40af;
    --brand-accent: #3b82f6;
    --brand-dark: #0f172a;
    --brand-soft: #f0f7ff;
    --glass: rgba(255, 255, 255, 0.7);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: var(--brand-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 12px;
    top: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    background: #0f172a;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    outline: 2px solid #3b82f6;
    z-index: 2000;
}

.bg-soft { background: #f0f7ff; }

.bg-gradient-night {
    background: radial-gradient(circle at 20% 20%, rgba(59,130,246,0.12), transparent 35%),
                radial-gradient(circle at 80% 0%, rgba(30,64,175,0.12), transparent 30%),
                linear-gradient(120deg, #0f172a, #1e3a8a);
}

.object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    object-position: center;
}

img, iframe {
    max-width: 100%;
}

.stat-number {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.stat-number span { font-size: 0.65em; }

/* FAQ styling */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.faq-accordion .accordion-button {
    padding: 18px 20px;
    font-weight: 700;
    gap: 12px;
    background: #ffffff;
}

.faq-accordion .accordion-button:focus { box-shadow: none; }

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--brand-primary);
    background: #eef4ff;
}

.faq-accordion .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon {
    background: #1e40af;
    color: white;
    transform: rotate(45deg);
}

.faq-accordion .accordion-body {
    background: #fff;
    color: #475569;
}

h1, h2, h3, .font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* --- MODERN PILL HEADER --- */
.header-container {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 95%;
    max-width: 1100px;
}

.nav-pill {
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--brand-dark);
    padding-left: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 14px;
    align-items: center;
}

.nav-links li { list-style: none; }

.nav-links a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 50px;
    transition: var(--transition);
    display: block;
}

.nav-links a:hover {
    color: var(--brand-primary);
    background: rgba(30, 64, 175, 0.08);
}

.menu-toggle {
    display: none;
    background: #0f172a;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    background: #0f172a;
    color: #e2e8f0;
    padding: 24px;
    box-shadow: -12px 0 30px rgba(0,0,0,0.18);
    transition: right 0.25s ease;
    z-index: 1400;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.04);
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    line-height: 1;
}

.sidebar-close:hover { background: rgba(255,255,255,0.1); }

.mobile-sidebar a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
}

.mobile-sidebar a:hover { background: rgba(255,255,255,0.06); }

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1300;
}

.sidebar-open .mobile-sidebar { right: 0; }
.sidebar-open .sidebar-overlay { opacity: 1; pointer-events: all; }

.btn-reserve {
    background: var(--brand-dark);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-reserve:hover {
    background: var(--brand-primary);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.2);
    color: white;
    text-decoration: none;
}

/* --- HERO: THE MASTERPIECE --- */
.hero-v2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: 
        radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1;
    animation: floatUp 0.6s ease forwards;
    margin-bottom: 30px;
}

    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 32px;
    box-shadow: 0 18px 80px rgba(0,0,0,0.2);
    padding: 32px;
    max-width: 34rem;
}

.hero-actions .btn {
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 700;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .header-container { top: 14px; width: 95%; }
    .nav-pill { padding: 10px 14px; justify-content: space-between; }
    .nav-links, .btn-reserve { display: none; }
    .menu-toggle { display: inline-flex; }

    .hero-actions { flex-wrap: wrap; }
    .hero-actions .btn { width: 100%; max-width: 100%; padding: 12px 14px; border-radius: 12px; justify-content: center; }
}

.experience-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 40px;
    left: -30px;
    width: 280px;
    border: 1px solid #f1f5f9;
}

@media (max-width: 768px) {
    .experience-card {
        position: relative;
        top: -26px;
        width: 100%;
        margin: 0 auto 32px;
        max-width: none;
        justify-content: center;
        text-align: center;
        z-index: 3;
        left: 0;
        right: 0;
    }

    .floating-whatsapp {
        bottom: 150px;
        right: 18px;
    }
}

/* --- BENTO GRID SERVICES --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.bento-item {
    background: white;
    border-radius: 32px;
    padding: 32px;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border-color: var(--brand-accent);
}

.bento-item h4 { font-weight: 700; margin-top: 12px; }

.bento-primary { grid-column: span 8; background: var(--brand-dark); color: white; }
.bento-secondary { grid-column: span 4; }
.bento-tertiary { grid-column: span 4; }
.bento-quad { grid-column: span 8; background: #e0f2fe; }

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    animation: floatUp 0.6s ease forwards;
}


.footer-quick {
    position: relative;
    z-index: 1;
    background: #111827;
    color: #e2e8f0;
    border: 1px solid #1f2937;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.24);
    backdrop-filter: blur(6px);
}

.footer-quick h6 { color: #cbd5e1; }
.footer-quick p { margin-bottom: 8px; color: #e2e8f0; }
.footer-quick a { color: #e2e8f0; text-decoration: none; }
.footer-quick a:hover { color: #f8fafc; }
 
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: 1500;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.social-section {
    position: relative;
    background: radial-gradient(circle at 12% 18%, rgba(59,130,246,0.22), transparent 38%),
                radial-gradient(circle at 82% 12%, rgba(16,185,129,0.24), transparent 36%),
                linear-gradient(135deg, #0f172a, #0b2659 45%, #0a3c7a);
    overflow: hidden;
}

.social-section::before,
.social-section::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
    z-index: 0;
}

.social-section::before {
    background: #22c55e;
    top: -140px;
    left: -80px;
}

.social-section::after {
    background: #3b82f6;
    bottom: -140px;
    right: -110px;
}

/* Map action buttons */
.map-actions .btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #0f172a;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.map-actions .btn-map:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.map-actions .btn-map-primary {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
}

.map-actions .btn-map-primary:hover {
    background: #16348f;
    color: #fff;
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.3);
}

/* cleaned duplicate footer-quick block */
.icon-pill {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

.icon-pill.whatsapp { background: linear-gradient(135deg, #22c55e, #16a34a); }
.icon-pill.facebook { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.icon-pill.tiktok { background: linear-gradient(135deg, #0f172a, #111827); }
.icon-pill.neutral { background: linear-gradient(135deg, #0ea5e9, #2563eb); }

@keyframes floatUp {
    from { opacity: 0; transform: translateY(16px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
/* --- SOCIAL REFRESH --- */
.social-section {
    background: linear-gradient(160deg, #eef2ff, #f8fafc);
}

.social-wrap {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 18px 60px rgba(15,23,42,0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.social-wrap::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 12px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 60%);
    pointer-events: none;
}

.social-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef2ff;
    color: #0f172a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.85rem;
}

.social-header p { max-width: 760px; margin: 0 auto; }

.social-actions .btn { min-width: 220px; }

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    background: #f8fafc;
}

.social-pill.strong {
    background: #1e40af;
    color: #fff;
    border-color: #1e3a8a;
    box-shadow: 0 10px 26px rgba(30,64,175,0.18);
}

.social-pill.soft { background: #eef2ff; color: #0f172a; }

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.social-tile {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-tile:hover {
    transform: translateY(-3px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 40px rgba(15,23,42,0.12);
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.social-icon.whatsapp { background: linear-gradient(135deg, #22c55e, #16a34a); }
.social-icon.facebook { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.social-icon.tiktok { background: linear-gradient(135deg, #0f172a, #111827); }

.social-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 8px;
}

.social-list li i { margin-top: 2px; }

.social-cta {
    background: #1e40af;
    color: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(30,64,175,0.25);
}

.social-cta:hover { background: #16348f; color: #fff; }

.social-ghost {
    background: #f8fafc;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 700;
    text-decoration: none;
}

.social-ghost:hover { border-color: #1e40af; color: #0f172a; }

.social-link-btn {
    background: #0f172a;
    color: #fff;
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.social-link-btn:hover { background: #111827; color: #fff; }

.social-link-btn.ghost {
    background: #eef2ff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.social-link-btn.dark { background: #0f172a; color: #fff; }

