/* ======== ESTILO 4 — IPS PREMIUM ======== */

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background: #FAF8F0;
    color: #0E2A47;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #0E2A47;
    border-bottom: 4px solid #F1C40F;
}

header img {
    height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #F1C40F;
    font-weight: 700;
}

/* SECCIONES */
.section {
    padding: 60px 40px;
    background: white;
    margin: 40px auto;
    width: 85%;
    border-left: 6px solid #F1C40F;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section h1 {
    color: #B7950B;
}

/* FORMULARIO */
form input {
    padding: 12px;
    width: 260px;
    border-radius: 6px;
    border: 2px solid #F1C40F;
}

form button {
    padding: 12px 20px;
    background: #F1C40F;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    color: #0E2A47;
}

form button:hover {
    background: #B7950B;
}

/* FOOTER */
footer {
    background: #0E2A47;
    color: #F1C40F;
    padding: 20px;
    text-align: center;
}
