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

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:     linear-gradient(90deg, #000000, #2C3E50);
    padding: 10px 20px;
    position: relative;
    height: 100px;
    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);
}


.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;
    }
}


@media (max-width: 768px) {
    .navbar-links {
        flex-direction: column;
        position: absolute;
        top: 150px;
        left: 0;        
        background: linear-gradient(90deg, #000000, #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; 
    align-items: center;
    text-align: justify;
}
.line-hz1{
        width:  80%;
        height: 5px;        
        background: linear-gradient(90deg, #2031FF, #151F5D);
        border-radius: 10px;
}
.up-line{
        width:  100%;
        height: 5px;
        background: linear-gradient(90deg, #709ECC, #000000);
}
.line-hz2{
        width:  100%;
        height: 2px;
        background: #23527530;
}
.topic-list {
    text-align: left;         
    align-self: flex-start;   
    margin-left: 0;           
    padding-left: 20px;       
}
.contacto-contenedor {
    display:                flex;
    flex-wrap:              wrap;
    background-image:       url("../doro6.png");    
    background-size:        100%;
    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;    
    justify-content: center;   
    align-items: center;
}
.contact-t1 {
        font-family:    Arial Black;
        color:                  #fff;
}
.contact-t2 {
        color: #F88E04;
}
.bar-buap {
    width: 100%;
    height: 100px;
    background: linear-gradient(90deg, #2C3E50, #000000);
    display: flex;
    justify-content: center;   
    align-items: center;         
    padding-right: 20px;         
    margin-top: auto;
    margin-right: 10px;
}


.buap-columna {
    display: flex;
    color: #fff;
    flex-direction: column;     
    align-items: flex-end;      
}


/**** CSS para el control de Sitios de interes ***/
.containerSitios{	
	display:flex;
	justify-content: center;
	align-items:center;
}
.boxSitios{
	width:280px;
	height:379px;
	display:flex;
	justify-content: center;
	align-items:center;
	border-radius:20px;
}
.nav-Sitios li{
	position:relative;
	width: 210px;
	padding: 10px;
	color: #ffffff;
	background-color: rgba(255, 255, 255, 0.1);
	list-style:none;
	margin: 12px;
    margin-left: 15px;
	cursor: pointer;
	transition: all .4s;
}
.nav-Sitios li a {
    text-decoration: none;
    text-align: left;
    color: white;
    font-size: 0.8rem;
}
.nav-Sitios li:hover{
	transform: translate(20px);
}
.nav-Sitios li::before,
li::after{
	position: absolute;
	content:'';
	background:#F88E04;;
	transition: all .4s;
	
}
.nav-Sitios li::before{
    width: 20px;
    height: 100%;
    top:0;
    left:-30px; 
}
.nav-Sitios li::after{
    width: 100%;
    height: 2px;
    bottom:0;
    left:0; 
}
.nav-Sitios li:hover::before,
li:hover::after{
    background: #fa360a;
}