:root {
    --magenta: #f23b8f;
    --green: #00b26f;
    --black: #111111;
    --gray-light: #f6f6f6;
    --white: #ffffff;
}

/* RESET BÁSICO */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* BASE */


html {
    font-family: "Funnel Sans", sans-serif;
}

body {
    margin: 0;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.55;
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 0;
    font-family: "Funnel Sans", sans-serif;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 24px;
}

p {
    font-size: 1.5em;
    margin-top: 0;
    font-weight: 400;
    color: #222;
}

/* TOP BANNER */
.top-banner {
    background: black!important;
    color: var(--white);
    font-size: 0.9rem;
    text-align: center;
}

.top-banner .container {
    padding: 10px 20px;
    font-weight: 500;
}


.hero-description,
.section-description {
    font-weight: 500;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid #eaeaea;
}

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

.logo {
    height: 60px;
}

.nav a {
    margin-left: 24px;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
}

.nav-highlight {
    color: var(--magenta);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--magenta), var(--green));
    color: var(--white);
    padding: 110px 0;
}

.hero-content {
    max-width: 1024px;
}

.hero h1 {
    font-size: 4.7rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.hero-price {
    font-size: 2.1rem;
    margin-bottom: 32px;
}

.ni-ahi {
    color:black;
}

/* SECTIONS */
.section {
    padding: 90px 0;
}

.section-light {
    background-color: var(--gray-light);
}

.section-dark {
    background-color: var(--black);
    color: var(--white);
}

.section-dark p {
    color: #eaeaea;
}

.section-description {
    max-width: 600px;
    margin-bottom: 40px;
}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.feature h3 {
    margin-bottom: 10px;
}

/* STEPS */
.steps {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
}

.step-number {
    font-size: 1.5em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--magenta);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
}

/* PLAN */
.plan-card {
    max-width: 420px;
    background-color: var(--white);
    padding: 32px;
    border-radius: 14px;
}

.plan-from {
    margin: 0;
}

.plan-price {
    font-size: 3rem;
    color: var(--magenta);
    margin: 6px 0 20px;
}

.plan-features {
    padding-left: 20px;
}

/* COVERAGE */
.coverage {
    max-width: 700px;
}

/* CONTACT */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 6px;
    border: none;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.95rem;
}

/* BUTTON */
.btn-primary {
    font-size: 1.3em;
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--white);
    color: var(--magenta);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

/* FOOTER */
.footer {
    background-color: #000;
    color: var(--white);
    text-align: center;
    padding: 28px 0;
    font-size: 0.9rem!important;
}

.footer p {
    color: whitesmoke;
    font-size: 0.9rem!important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .btn-primary {
        font-size: 1em;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}
