@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --blue-light: #eff6ff;
    --blue-mid: #dbeafe;
    --text: #111827;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --bg: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

/* ─── BUTTONS ─────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: var(--blue);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}

.btn:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.45);
}

.btn:active { transform: translateY(0); }

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    box-shadow: none;
}

/* ─── HEADER ──────────────────────────────── */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0;
    height: 68px;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 14px 0 0 var(--blue), 7px -11px 0 var(--blue);
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14.5px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--blue); background: var(--blue-light); }

.nav-links a:last-child {
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    padding: 9px 18px;
}

.nav-links a:last-child:hover { background: var(--blue-dark); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    gap: 4px;
}

.mobile-menu a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.mobile-menu a:hover { background: var(--blue-light); color: var(--blue); }

.mobile-menu.open { display: flex; }

/* ─── HERO ────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #0ea5e9 100%);
    color: #fff;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: 50px;
    line-height: 1.08;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.hero h1 span { color: #93c5fd; }

.hero p {
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 540px;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.hero-points span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-points span::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(74,222,128,0.25);
    color: #4ade80;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-bottom: 32px;
}

.hero-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero-stat span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.hero-card {
    background: var(--white);
    color: var(--text);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18);
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), #0ea5e9);
    border-radius: 20px 20px 0 0;
}

.hero-card h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--text);
    font-weight: 800;
}

.hero-card ul { list-style: none; margin-bottom: 24px; }

.hero-card li {
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
}

.hero-card li::before {
    content: '→';
    color: var(--blue);
    font-weight: 800;
    flex-shrink: 0;
}

.hero-card li:last-child { border-bottom: none; }

/* ─── SECTIONS ────────────────────────────── */
section { padding: 80px 0; }

.section-title {
    text-align: center;
    margin-bottom: 52px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 14px;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title p {
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
    font-size: 16.5px;
    line-height: 1.7;
}

/* ─── BENEFIT CARDS ───────────────────────── */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #60a5fa);
    opacity: 0;
    transition: opacity 0.2s;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card:hover::after { opacity: 1; }

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--blue);
    flex-shrink: 0;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--text);
    font-weight: 700;
}

.card p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.65;
}

/* ─── JOBS ────────────────────────────────── */
#jobs { background: var(--blue-light); }

.job-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.job-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.job-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.job-box h3 {
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.job-box > p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin-bottom: 4px;
}

.tag {
    display: inline-flex;
    align-items: center;
    background: var(--blue-mid);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.job-box ul {
    list-style: none;
    margin: 16px 0 24px;
    flex: 1;
}

.job-box ul li {
    padding: 9px 0;
    color: #4b5563;
    font-size: 14px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 9px;
}

.job-box ul li::before {
    content: '✓';
    color: #10b981;
    font-weight: 800;
    font-size: 12px;
    flex-shrink: 0;
}

.job-box ul li:last-child { border-bottom: none; }

/* ─── PROCESS STEPS ───────────────────────── */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 38px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--blue-mid), var(--blue), var(--blue-mid));
    z-index: 0;
}

.step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px 24px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.step-number {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 14px rgba(37,99,235,0.4);
}

.step h4 {
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
}

.step p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
}

/* ─── TESTIMONIALS ────────────────────────── */
.testimonial-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.testimonial > p {
    color: #374151;
    margin-bottom: 18px;
    font-size: 14.5px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #60a5fa);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

.testimonial strong {
    display: block;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 12.5px;
    color: var(--text-muted);
}

/* ─── CTA ─────────────────────────────────── */
.cta-section { background: var(--bg); }

.cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
    color: #fff;
    text-align: center;
    border-radius: 24px;
    padding: 72px 40px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.cta h2 {
    font-size: 38px;
    margin-bottom: 14px;
    font-weight: 900;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.85);
    font-size: 16.5px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta .btn {
    background: #fff;
    color: var(--blue);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    font-size: 16px;
    padding: 15px 32px;
}

.cta .btn:hover { background: #f0f9ff; transform: translateY(-2px); }

/* ─── FORM ────────────────────────────────── */
.form-section { background: var(--white); }

.form-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.form-info { padding-top: 8px; }

.form-info h2 {
    font-size: 36px;
    margin-bottom: 14px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.form-info p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 15.5px;
    line-height: 1.7;
}

.checklist { list-style: none; }

.checklist li {
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    color: #374151;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist li:last-child { border-bottom: none; }

.checklist li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

form {
    background: var(--bg);
    padding: 36px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 18px; }

label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--text);
    letter-spacing: 0.01em;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14.5px;
    font-family: inherit;
    outline: none;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:hover, select:hover, textarea:hover {
    border-color: #93c5fd;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 16px;
    background: var(--blue);
    color: #fff;
    font-size: 15.5px;
    font-weight: 800;
    border-radius: var(--radius-sm);
    font-family: inherit;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(37,99,235,0.35);
    margin-top: 4px;
}

.submit-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(37,99,235,0.45);
}

.submit-btn:active { transform: translateY(0); }
.submit-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* ─── FOOTER ──────────────────────────────── */
footer {
    background: #0f172a;
    color: rgba(255,255,255,0.55);
    padding: 32px 0;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

footer a:hover { color: #fff; }

/* ─── WHATSAPP ────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: #fff;
    padding: 14px 20px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    z-index: 999;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-float:hover {
    background: #1db954;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 30px rgba(37,211,102,0.55);
}

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 992px) {
    .hero-wrap,
    .form-wrap,
    .grid-3,
    .job-list,
    .testimonial-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps::before { display: none; }

    .hero { padding: 64px 0 56px; }

    .hero h1 { font-size: 38px; }

    .section-title h2,
    .form-info h2,
    .cta h2 {
        font-size: 28px;
    }

    .nav-links { display: none; }
    .hamburger { display: flex; }

    .form-row { grid-template-columns: 1fr; }

    .hero-stats { gap: 20px; }
    .hero-stat strong { font-size: 24px; }

    form { padding: 24px; }

    .cta { padding: 50px 24px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 30px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; justify-content: center; }
    .steps { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; }
}
