/* =====================================================
   RESET GENERAL
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* =====================================================
   CUERPO GENERAL
===================================================== */
body {
    background: #eef3ff;
    overflow-x: hidden;
}

/* =====================================================
   BANNER PRINCIPAL
===================================================== */
.hero {
    width: 100%;
    text-align: center;
    padding: 20px 10px;
}

.hero img {
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

/* =====================================================
   SUBTÍTULO
===================================================== */
.hero-sub {
    margin-top: 18px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.hero-sub h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.hero-sub p {
    font-size: 17px;
    color: #444;
    line-height: 1.45;
}

/* =====================================================
   CONTENEDOR GENERAL
===================================================== */
.container {
    width: 95%;
    max-width: 900px;
    margin: 20px auto 40px auto;
}

/* =====================================================
   TARJETAS (CARDS)
===================================================== */
.card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.card h2 {
    text-align: center;
    margin-bottom: 14px;
    font-size: 24px;
    font-weight: 700;
}

/* =====================================================
   FILA ÍCONO + TEXTO - PASOS 1, 2, 3
===================================================== */
.linea-icono {
    display: flex;
    align-items: flex-start;
    margin: 14px 0;
}

.icon-number {
    min-width: 38px;
    height: 38px;
    background: #6a11cb;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
    text-align: center;
    line-height: 38px;
    margin-right: 12px;
}

.linea-icono p {
    flex: 1;
    font-size: 17px;
    line-height: 1.4;
}

/* =====================================================
   BOTONES
===================================================== */
.btn {
    display: block;
    width: 85%;
    max-width: 350px;
    margin: 15px auto;
    padding: 14px 0;
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    background: #fff;
    color: #ff6b00;
    border: 2px solid #ff6b00;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.25s;
}

.btn:hover {
    background: #ff6b00;
    color: #fff;
}

.btn-invertido {
    background: #ff6b00;
    color: white;
    border: 2px solid #ff6b00;
}

.btn-invertido:hover {
    background: #fff;
    color: #ff6b00;
}

/* =====================================================
   FOOTER
===================================================== */
footer {
    text-align: center;
    padding: 25px 0;
    font-size: 15px;
    color: #555;
}

/* =====================================================
   RESPONSIVE PARA CELULARES
===================================================== */
@media (max-width: 480px) {

    .hero-sub h1 {
        font-size: 24px;
    }

    .hero-sub p {
        font-size: 15px;
    }

    .card h2 {
        font-size: 22px;
    }

    .btn {
        font-size: 18px;
        padding: 13px 0;
    }
}
