/* ============================================================
   SECCIÓN CONTACTO (TARJETA GRANDE)
   ============================================================ */

section {
    padding: 2rem 1rem;
    background-color: white;
    margin: 1rem auto;
    max-width: 1100px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

section h1 {
    color: #001f3f;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
}

section p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.8rem;
}



/* ============================================================
   FORMULARIO ESTILO CABILDO
   ============================================================ */

form > div {
    margin-bottom: 1.2rem;
}

/* Etiquetas del formulario */
form label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 700;
    color: #001F3F;
}

/* Campos de texto */
form input,
form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #cfd6df;
    border-radius: 10px;

    background: #f8fafc;
    font-size: 1rem;
    transition: all 0.25s ease;
}

/* Efecto al enfocar */
form input:focus,
form textarea:focus {
    outline: none;
    border-color: #001F3F;
    background: white;
    box-shadow: 0 0 8px rgba(0, 31, 63, 0.25);
}

/* Textarea más alto */
form textarea {
    min-height: 130px;
    resize: vertical;
}


/* ============================================================
   BOTÓN DE ENVÍO ESTILO CABILDO
   ============================================================ */

form button {
    background-color: #001f3f;
    color: white;
    border: none;
    padding: 0.8rem 1.6rem;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;

    transition: background-color 0.25s ease,
                transform 0.25s ease,
                box-shadow 0.25s ease;
}

/* Hover */
form button:hover {
    background-color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}


/* ============================================================
   FOOTER
   ============================================================ */

footer {
    text-align: center;
    padding: 1rem;
    background-color: #001f3f;
    color: white;
    margin-top: 2rem;
    border-radius: 8px;
}


