/* Temporal: Ver todos los elementos */
/* * {
    outline: 1px solid rgba(255, 0, 0, 0.3) !important;
} */

body {
    font-family: 'Segoe UI', sans-serif;
    /* font-family: Arial, sans-serif; */
    line-height: 1.6;
    color: #111;
}


.section-intro {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

section {
    padding: 60px 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}


.subtext {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* .container {
    max-width: 900px;
    margin: auto;
    padding: 0 10px;
} */

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


h1,
h2,
h3,
p {
    margin: 0;
}

p {
    margin-top: 10px;
    margin-bottom: 10px;
}

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

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* p {
    margin-bottom: 10px;
} */

.subtext {
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    padding: 25px;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    background: #f1f1f1;
}

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

.card p {
    color: #555;
    line-height: 1.7;
}

#problemas {
    padding: 10px 20px;
    background: #f7f7f7;
    text-align: center;
}

#problemas h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

/* como puedo ayudarte */
#soluciones {
    padding: 60px 0px;
    /* background-color: #FFFF; */
    background: #ffffff;
    text-align: center;
    /* background: #fff; */
}

#soluciones h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

/* #soluciones .card {
    background: #f9f9f9;
    color: rgb(10, 8, 8);
}

#soluciones .card p {
    color: #1e45c5;
} */

/* Menos problemas, más control */
#cierre {
    padding: 10px 20px;
    background: #f7f7f7;
    text-align: center;

}

/* Como funciona */
#proceso {
    padding: 10px 20px;
    background: #f7f7f7;
}

#contacto {
    padding: 80px 20px;
    text-align: center;
    background: #f7f7f7;
    border-top: 4px solid #285da3;

}

#contacto .subtext {
    margin-bottom: 30px;
}

/* Centrar los bloques de email y WhatsApp */
.contact-actions {
    display: flex;
    flex-direction: column;
    /* Apila los elementos uno bajo otro */
    align-items: center;
    /* Los centra horizontalmente */
    gap: 30px;
    /* Espacio entre el bloque de email y el botón de WA */
    margin-top: 40px;
    width: 100%;
}

/* Centrar el contenido general de la sección */
#contacto .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Centra el H2 y el P */
}

.contact-card {

    position: relative;
    max-width: 700px;
    margin: 40px auto 0;
    padding: 40px;

    background: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);

    border: 1px solid #eaeaea;
}

.contact-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #285da3;

    border-radius: 16px 16px 0 0;
}


/* Centrar lo que hay dentro de la caja de email */
.email-box {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


.email-box span {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

#toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s;
}

#toast.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}