* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #2C3E50;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*background: linear-gradient(90deg, #0f6ac0, #4facfe);*/
	background:	linear-gradient(90deg, #156FAA, #2C3E50);
    padding: 10px 20px;
    position: relative;
	height:	80px;
	z-index: 1000;
}

.navbar-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar-links li a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.navbar-links li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Efecto de onda */
.ripple::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .navbar-links {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        /*background: linear-gradient(90deg, #0f6ac0, #4facfe);*/
		background: linear-gradient(90deg, #156FAA, #2C3E50);
        width: 100%;
        display: none;
		padding-top: 20px;
		padding-bottom: 20px;
    }

    .navbar-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
.contenido {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    max-width: 90%;
    width: 90%;

    display: flex;
    flex-direction: column; /* en columna si son elementos uno abajo del otro */
    align-items: center;
	text-align: justify;

}
.line-hz1{
	width: 	80%;
	height:	5px;
	background: #235275;
}
.line-hz2{
	width: 	100%;
	height:	2px;
	background: #23527530;
}
.topic-list {
    text-align: left;         /* Justifica el texto a la izquierda */
    align-self: flex-start;   /* Si estás usando Flexbox */
    margin-left: 0;           /* Opcional: eliminar sangría predeterminada */
    padding-left: 20px;       /* Ajusta si necesitas espacio para las viñetas */
}
.contacto-contenedor {
    display:                flex;
    flex-wrap:              wrap;
    background-image:       url("../contacto_ban2.png");/*url("/static/contacto_ban2.png");*/
    /*background-size:        cover;*/
	background-size:		300px;
    background-position:    center;
    background-repeat:      no-repeat;
    box-shadow:             0 4px 12px rgba(0, 0, 0, 0.1);
    margin:                 40px auto;
    padding:                20px;
    border-radius:          10px;
    width:                  90%;
    gap:                    20px;
    /*height:                 280px;*/
}
.contact-t1 {
	font-family: 	Arial Black;
	color: 			#fff;
}
.contact-t2 {
	color: #F88E04;
}
.bar-buap {
    width: 100%;
    height: 100px;
    background: linear-gradient(90deg, #2C3E50, #156FAA);

    display: flex;
    justify-content: flex-end;   /* pega el contenido a la derecha */
    align-items: center;         /* centra verticalmente */
    padding-right: 20px;         /* espacio opcional entre el borde y la imagen */
	margin-top: auto;
}


.buap-columna {
    display: flex;
	color: #fff;
    flex-direction: column;     /* coloca logo y texto uno encima del otro */
    align-items: flex-end;        /* centra horizontalmente dentro de la columna */
}

