/* Amiga Capital — diseño premium */
:root {
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --coral: #f97316;
    --violet: #7c3aed;
    --ink: #0c1222;
    --ink-soft: #1e293b;
    --slate: #475569;
    --paper: #f8fafc;
    --white: #ffffff;
    --gradient-hero: linear-gradient(135deg, #0c1222 0%, #134e4a 45%, #5b21b6 100%);
    --gradient-accent: linear-gradient(90deg, #f97316, #fb7185, #a78bfa);
    --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
    --shadow-card: 0 12px 40px rgba(13, 148, 136, 0.12);
    --radius: 16px;
    --radius-lg: 24px;
    --font-display: 'Sora', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--ink-soft);
    background: var(--paper);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--coral); }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Top bar */
.top-bar {
    background: var(--ink);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-bar a { color: #99f6e4; }
.top-bar .pulse { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.92); }
.pulse-dot { width: 8px; height: 8px; background: #34d399; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* Header */
.main-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15,23,42,0.06);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 0; gap: 1rem;
}
.logo {
    font-family: var(--font-display);
    font-weight: 800; font-size: 1.35rem;
    color: var(--ink);
    display: flex; align-items: center; gap: 0.65rem;
}
.logo-text span { background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-img {
    width: 48px; height: 48px; object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(13, 148, 136, 0.25));
}
.footer-logo-link {
    display: inline-flex; align-items: center; gap: 0.65rem;
    color: white; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
    margin-bottom: 1rem;
}
.footer-logo-link:hover { color: #5eead4; }
.footer-logo-link img { object-fit: contain; }
.whatsapp-float {
    position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 150;
    display: flex; align-items: center; gap: 0.5rem;
    background: #25d366; color: #fff;
    padding: 0.85rem 1.1rem; border-radius: 999px;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
    font-weight: 700; font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.02); color: #fff; box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55); }
.whatsapp-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.map-wrap {
    margin-top: 1rem; border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-card); border: 1px solid #e2e8f0;
    background: #e2e8f0;
    min-height: 320px;
}
.map-wrap--hero { min-height: 420px; margin-top: 1.5rem; }
.map-section .map-coords { margin-top: 1rem; font-size: 0.9rem; color: var(--slate); }
.map-fallback {
    display: none; padding: 2rem; text-align: center; background: #f1f5f9;
}
.map-wrap:empty + .map-fallback { display: block; }
@media (max-width: 600px) {
    .whatsapp-label { display: none; }
    .whatsapp-float { padding: 0.95rem; border-radius: 50%; }
}
.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; list-style: none; align-items: center; gap: 1.75rem; }
.nav-list a {
    font-weight: 600; font-size: 0.95rem; color: var(--ink-soft);
}
.nav-list a.active, .nav-list a:hover { color: var(--teal-dark); }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: 0.9rem;
    border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary {
    background: var(--gradient-accent); color: var(--white);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(249, 115, 22, 0.45); color: var(--white); }
.btn-outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-teal { background: var(--teal-dark); color: white; }
.btn-teal:hover { background: var(--teal); color: white; }
.menu-toggle {
    display: none; background: none; border: none; cursor: pointer;
    min-width: 44px; min-height: 44px; padding: 0.5rem;
    align-items: center; justify-content: center; flex-direction: column;
    -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-backdrop {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(12, 18, 34, 0.55);
    opacity: 0; visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    pointer-events: none;
}
.nav-backdrop.active {
    opacity: 1; visibility: visible;
    pointer-events: auto;
}
body.nav-open { overflow: hidden; }

/* Hero */
.hero {
    position: relative; min-height: 92vh;
    display: flex; align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: center/cover no-repeat;
    opacity: 0.22;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(12,18,34,0.95) 0%, rgba(12,18,34,0.7) 50%, rgba(91,33,182,0.5) 100%);
}
.hero-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    padding: 4rem 0;
}
.hero-badge {
    display: inline-block; padding: 0.4rem 1rem; border-radius: 999px;
    background: rgba(255,255,255,0.12); color: #fcd34d;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 1.25rem; border: 1px solid rgba(255,255,255,0.15);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800; color: var(--white); line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hero h1 em { font-style: normal; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-lead { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 1.5rem; max-width: 520px; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.75rem; color: var(--white); }
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.82); }

.form-glass {
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.8);
}
.form-glass h2.form-title { font-family: var(--font-display); color: var(--ink); margin-bottom: 0.35rem; font-size: 1.25rem; font-weight: 700; }
.form-glass .sub { color: var(--slate); font-size: 0.9rem; margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.35rem; color: var(--ink-soft); }
.form-input {
    width: 100%; padding: 0.85rem 1rem; border: 1px solid #e2e8f0;
    border-radius: 12px; font-family: inherit; font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,0.15); }
.form-privacy { font-size: 0.75rem; color: var(--slate); margin-top: 0.75rem; line-height: 1.5; }
.form-privacy a { font-weight: 600; }

/* Sections */
.section { padding: 5rem 0; }
.section-dark { background: var(--ink); color: rgba(255,255,255,0.9); }
.section-tag {
    display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--teal-dark); margin-bottom: 0.75rem;
}
.section-dark .section-tag { color: #5eead4; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800; color: var(--ink); margin-bottom: 1rem;
}
.section-dark .section-title { color: var(--white); }
.section-desc { max-width: 640px; color: var(--slate); margin-bottom: 2.5rem; }
.section-dark .section-desc { color: rgba(255,255,255,0.7); }

/* Cards */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-card);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(15,23,42,0.05);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { height: 200px; object-fit: cover; width: 100%; }
.card-body { padding: 1.5rem; }
.card-body h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--ink); }
.card-body p { font-size: 0.95rem; color: var(--slate); }
.card-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; font-weight: 700; font-size: 0.9rem; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.process-step {
    padding: 1.5rem; border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(13,148,136,0.08), rgba(124,58,237,0.06));
    border: 1px solid rgba(13,148,136,0.12);
    position: relative;
}
.process-num {
    font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
    background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1; margin-bottom: 0.5rem;
}
.process-step h3.process-step-title,
.process-step h4 { font-family: var(--font-display); margin-bottom: 0.5rem; color: var(--ink); }
.section-dark .process-step-title { color: #fff; font-size: 1.05rem; }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split ul { list-style: none; margin-top: 1rem; }
.split li {
    padding: 0.65rem 0 0.65rem 2rem; position: relative;
    border-bottom: 1px solid #e2e8f0;
}
.split li::before {
    content: '✓'; position: absolute; left: 0; color: var(--teal-dark); font-weight: 800;
}

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
    background: var(--white); padding: 1.75rem; border-radius: var(--radius);
    border-left: 4px solid var(--coral); box-shadow: var(--shadow-card);
}
.testimonial p { font-style: italic; color: var(--ink-soft); margin-bottom: 1rem; font-size: 0.95rem; }
.testimonial cite { font-weight: 700; font-size: 0.9rem; color: var(--ink); font-style: normal; }
.testimonial span { display: block; font-size: 0.8rem; color: var(--slate); font-weight: 400; }

/* Cities */
.cities { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.city-pill {
    padding: 0.5rem 1.1rem; border-radius: 999px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    font-size: 0.9rem; font-weight: 600;
}

/* CTA band */
.cta-band {
    background: var(--gradient-hero); padding: 4rem 0; text-align: center;
    border-radius: var(--radius-lg); margin: 0 1rem;
}
.cta-band h2 { font-family: var(--font-display); color: white; font-size: 2rem; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; max-width: 560px; margin-inline: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
.main-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: white; margin-bottom: 1rem; }
.footer-title { color: white; font-weight: 700; margin-bottom: 1rem; font-size: 0.9rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: #5eead4; }
.footer-disclaimer {
    background: rgba(0,0,0,0.25); padding: 1.25rem 0; font-size: 0.78rem; line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom {
    padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.85rem;
}

/* Cookie banner */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--ink); color: rgba(255,255,255,0.9);
    padding: 1.25rem; box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; max-width: var(--max); margin: 0 auto; }
.cookie-inner p { font-size: 0.9rem; flex: 1; min-width: 280px; }
.cookie-inner a { color: #5eead4; }
.cookie-btns { display: flex; gap: 0.75rem; }
.btn-cookie-ok { background: var(--teal); color: white; padding: 0.6rem 1.25rem; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; }
.btn-cookie-no { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); padding: 0.6rem 1.25rem; border-radius: 8px; cursor: pointer; }

/* Legal pages */
.legal-hero {
    background: var(--gradient-hero); padding: 4rem 0 3rem; text-align: center; color: white;
}
.legal-hero h1 { font-family: var(--font-display); font-size: 2.25rem; }
.legal-content { max-width: 800px; margin: 0 auto; padding: 3rem 1rem 4rem; }
.legal-content h2 { font-family: var(--font-display); margin: 2rem 0 0.75rem; color: var(--ink); font-size: 1.25rem; }
.legal-content p, .legal-content li { margin-bottom: 1rem; color: var(--slate); }
.legal-content ul { padding-left: 1.5rem; }

/* Thanks / 404 */
.page-center { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1rem; text-align: center; }
.thanks-icon {
    width: 80px; height: 80px; margin: 0 auto 1.5rem; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--violet));
    display: grid; place-items: center; color: white;
}

/* Page header inner */
.page-hero {
    background: var(--gradient-hero); padding: 4rem 0 3rem; color: white; text-align: center;
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); }

@media (max-width: 992px) {
    .hero-grid, .split, .cards-3, .process-grid, .testimonials, .footer-grid { grid-template-columns: 1fr; }
    .top-bar .container > div:last-child { font-size: 0.75rem; }
    .main-header { position: sticky; top: 0; z-index: 1002; }
    .header-inner { position: relative; min-height: 64px; }
    .menu-toggle {
        display: flex;
        z-index: 1004;
        position: relative;
        margin-left: auto;
    }
    .main-nav {
        position: fixed;
        top: 0; left: 0;
        width: min(320px, 88vw);
        height: 100dvh;
        background: var(--white);
        z-index: 1003;
        transform: translateX(-100%);
        transition: transform 0.3s ease, visibility 0.3s;
        padding: 5.25rem 1.5rem 2rem;
        overflow-y: auto;
        box-shadow: 8px 0 32px rgba(15, 23, 42, 0.15);
        visibility: hidden;
        pointer-events: none;
    }
    .main-nav.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }
    .main-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        width: 100%;
    }
    .main-nav .nav-list a {
        display: block;
        padding: 0.85rem 0.5rem;
        font-size: 1.05rem;
        border-bottom: 1px solid #f1f5f9;
    }
    .main-nav .nav-list li:last-child a {
        border-bottom: none;
        margin-top: 0.75rem;
    }
    .main-nav .nav-list .btn {
        width: 100%;
        text-align: center;
        border-bottom: none;
    }
    .cookie-banner { z-index: 1005; }
}
