:root {
    --green:       #059669;
    --green-dark:  #047857;
    --green-deep:  #064e3b;
    --green-light: #10b981;
    --gold:        #d97706;
    --gold-light:  #fbbf24;
    --purple:      #7c3aed;
    --bg:          #f8fafc;
    --card:        #ffffff;
    --text:        #1e293b;
    --muted:       #64748b;
    --border:      #e2e8f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3 { font-family: 'Outfit', sans-serif; }

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 1.5rem;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
}

.nav-brand img { width: 36px; height: 36px; }

.brand-name { display: block; font-weight: 700; font-size: 0.95rem; color: var(--green-deep); line-height: 1.2; }
.brand-sub  { display: block; font-size: 0.7rem;  color: var(--muted); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }

.btn-nav-check {
    background: var(--green) !important;
    color: white !important;
    padding: 0.5rem 1.1rem;
    border-radius: 0.625rem;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: background 0.2s, transform 0.2s !important;
}

.btn-nav-check:hover { background: var(--green-dark) !important; transform: translateY(-1px); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(145deg, #022c22 0%, #064e3b 40%, #065f46 100%);
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(16,185,129,0.12) 0%, transparent 60%);
}

.hero-inner { position: relative; max-width: 760px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.3);
    color: #6ee7b7;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--green-light);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 0.875rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(16,185,129,0.35);
}

.btn-hero-primary:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(16,185,129,0.4); }

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 0.875rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.2s;
    backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

.hero-scroll {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.35);
    font-size: 1.1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Trust Bar ──────────────────────────────────────────────────────────── */
.trust-bar { background: white; border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; }

.trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.trust-item i { color: var(--green); }
.trust-divider { width: 1px; height: 20px; background: var(--border); }

/* ── Sections ───────────────────────────────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section-alt { background: white; }

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    background: rgba(5,150,105,0.08);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.875rem;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
}

.section-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 3rem;
    line-height: 1.65;
}

/* ── Packages ───────────────────────────────────────────────────────────── */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.pkg-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: var(--green-light);
}

.pkg-card.pkg-gold  { border-color: #fcd34d; background: #fffbeb; }
.pkg-card.pkg-gold:hover { box-shadow: 0 12px 32px rgba(217,119,6,0.15); }

.pkg-card.pkg-premium { border-color: #c4b5fd; background: #f5f3ff; }
.pkg-card.pkg-premium:hover { box-shadow: 0 12px 32px rgba(124,58,237,0.12); }

.pkg-badge {
    display: inline-block;
    background: rgba(5,150,105,0.08);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.625rem;
    border-radius: 2rem;
    letter-spacing: 0.04em;
    align-self: flex-start;
}

.pkg-badge.gold    { background: rgba(217,119,6,0.1);  color: var(--gold); }
.pkg-badge.premium { background: rgba(124,58,237,0.1); color: var(--purple); }

.pkg-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
}

.pkg-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.pkg-card.pkg-gold .pkg-price    { color: var(--gold); }
.pkg-card.pkg-premium .pkg-price { color: var(--purple); }

.pkg-price-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: -0.5rem;
}

.pkg-tiers {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    flex: 1;
}

.tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.tier span { color: var(--muted); }
.tier strong { color: var(--text); font-weight: 600; }

.pkg-btn {
    display: block;
    text-align: center;
    background: var(--green);
    color: white;
    border-radius: 0.75rem;
    padding: 0.625rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s;
    margin-top: 0.25rem;
}

.pkg-btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.pkg-card.pkg-gold .pkg-btn    { background: var(--gold); }
.pkg-card.pkg-gold .pkg-btn:hover { background: #b45309; }
.pkg-card.pkg-premium .pkg-btn { background: var(--purple); }
.pkg-card.pkg-premium .pkg-btn:hover { background: #6d28d9; }

/* ── Steps ──────────────────────────────────────────────────────────────── */
.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 180px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
    position: relative;
}

.step-num {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 32px;
    height: 32px;
    background: var(--green);
    color: white;
    border-radius: 1.25rem 0 0.625rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.step-icon {
    width: 52px;
    height: 52px;
    background: rgba(5,150,105,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.step p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.55;
}

.step-arrow {
    color: #cbd5e1;
    font-size: 1.1rem;
    padding-top: 3.5rem;
    flex-shrink: 0;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--green);
    color: white;
    padding: 0.9rem 2.25rem;
    border-radius: 0.875rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(5,150,105,0.25);
}

.btn-cta:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(5,150,105,0.3); }

/* ── Contact ────────────────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.contact-card-big {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: 1rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.contact-card-big > i:first-child {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 36px;
    text-align: center;
    color: var(--muted);
}

.contact-card-big > div { flex: 1; }

.contact-card-big.whatsapp { border-color: #bbf7d0; background: #f0fdf4; }
.contact-card-big.whatsapp > i:first-child { color: #16a34a; font-size: 2rem; }
.contact-card-big.whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(22,163,74,0.15); }

.cc-label { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.2rem; }
.cc-value { display: block; font-size: 1rem; font-weight: 700; color: var(--text); }
.cc-sub   { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }
.cc-arrow { color: var(--muted); font-size: 0.9rem; flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
    background: var(--green-deep);
    color: rgba(255,255,255,0.7);
    padding: 2.5rem 1.5rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand img { width: 36px; height: 36px; opacity: 0.9; }
.footer-brand strong { display: block; color: white; font-size: 0.95rem; }
.footer-brand span   { display: block; font-size: 0.78rem; opacity: 0.6; }

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-copy { font-size: 0.75rem; opacity: 0.45; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-links a:not(.btn-nav-check) { display: none; }
    .steps-grid { flex-direction: column; }
    .step-arrow { display: none; }
    .trust-divider { display: none; }
    .hero { min-height: 92vh; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
    .hero-cta { flex-direction: column; }
}
