* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    color: #222;
    line-height: 1.6;
}

/* Navegación */
nav {
    background: linear-gradient(90deg, #4fc3f7 0%, #0288d1 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.barnav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 18px 0;
}

.barnav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: color 0.2s, border-bottom 0.2s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.barnav a:hover {
    color: #ffd166;
    border-bottom: 2px solid #ffd166;
}

/* Espacio entre secciones */
.espacio {
    height: 20px;
}

/* Título principal */
.titulos {
    text-align: center;
    font-size: 2.5rem;
    color: #0288d1;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 20px 0;
    text-shadow: 1px 2px 8px #b2ebf2;
    text-transform: uppercase;
}

/* Títulos de subsecciones */
.tittra {
    font-size: 1.8rem;
    color: #0277bd;
    font-weight: 700;
    margin: 30px 20px 15px 20px;
    border-bottom: 3px solid #4fc3f7;
    padding-bottom: 6px;
}

/* Contenedor general de cada tradición */
.tradiciones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 20px 40px 20px;
}

/* Cada bloque de imagen + descripción */
.num {
    flex: 1 1 400px;
    display: flex;
    gap: 20px;
    align-items: center;
    background: #ffffffcc;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(2, 136, 209, 0.1);
    padding: 15px 20px;
    transition: box-shadow 0.3s ease;
}

.num:hover {
    box-shadow: 0 10px 30px rgba(2, 136, 209, 0.25);
}

/* Imagen dentro del bloque */
.foto img {
    width: 180px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(4, 115, 194, 0.3);
    transition: transform 0.3s ease;
}

.foto img:hover {
    transform: scale(1.05);
}

/* Descripción */
.descripcion p {
    font-size: 1.05rem;
    color: #034078;
    font-weight: 500;
    line-height: 1.5;
    text-align: justify;
}

/* Línea horizontal */
hr {
    border: none;
    border-bottom: 2px solid #4fc3f7;
    margin: 20px 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Fondo negro translúcido */
.negro {
    background-color: rgba(0, 0, 0, 0.2);
    height: 50px;
}

/* Footer */
.footer {
    background: #0288d1;
    color: #fff;
    text-align: center;
    padding: 22px 0 10px 0;
    font-size: 1rem;
    margin-top: 40px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .tradiciones {
        flex-direction: column;
        margin: 0 10px 30px 10px;
    }
    .num {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .foto img {
        width: 100%;
        max-width: 320px;
        margin-bottom: 15px;
    }
    .descripcion p {
        text-align: center;
    }
    .tittra {
        margin: 25px 10px 15px 10px;
        font-size: 1.5rem;
    }
}

