/* 🔁 Reset general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 🌐 Tipografía y colores base */
body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #e6ecf0;
}

/* 📦 Contenedor principal */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* 🧭 Header institucional */
.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #1e272e;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    gap: 20px;
}

/* 🌲 Logo */
.logo img {
    max-height: 80px;
    border: 2px solid #FFD700;
    border-radius: 10px;
}

/* 🏛️ Título */
.titulo h1 {
    font-family: 'Cinzel', serif;
    margin: 0;
}

.titulo h3 {
    font-family: 'Libre Bodoni', serif;
    font-size: 1rem;
    margin: 5px 0;
}

/* 🧭 Menú de navegación */
.menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.menu a:hover {
    border-bottom: 2px solid #FFD700;
}

/* 📦 Sección genérica */
.seccion {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.siniestros {
    background-color: #fef9e7;
    border-right: 5px solid #FFD700;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.siniestros h2 {
    color: #1A2A6C;
    text-shadow: 1px 1px 2px rgba(255, 215, 0, 0.3);
}

.siniestros ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.siniestros p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

.paso {
    background-color: #fdf6e3;
    /* crema suave */
    border-left: 6px solid #ffc107;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.paso:hover {
    transform: scale(1.01);
}

.paso h5 {
    color: #1A2A6C;
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 1.1rem;
}

.paso ul {
    list-style: none;
    padding-left: 0;
}

.paso ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.paso ul li i {
    margin-right: 8px;
    color: #28a745;
}

.telefonos {
    background-color: #f5f5f5;
    border-left: 5px solid #999;
    padding: 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.telefonos h3 {
    color: #1A2A6C;
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.telefonos p {
    margin-bottom: 8px;
    font-weight: 500;
}

.telefonos ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.telefonos hr {
    margin: 20px 0;
    border-top: 1px dashed #999;
}

/* 🧭 Footer institucional */
.footer {
    background-color: #1e272e;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    margin-top: 40px;
}

.footer-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.footer-link:hover {
    text-decoration: underline;
    color: #fff;
}

@media (max-width: 768px) {

    .siniestros,
    .telefonos {
        padding: 20px;
    }

    .telefonos {
        margin-top: 20px;
    }

    .telefonos ul {
        padding-left: 15px;
    }
}