* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;    
}

body, html {
    /* background-color: #000b1b; */
    margin: 0; 
    padding: 0;
    font-family: 'Exo 2', sans-serif;   
    overflow-x: hidden; 
}

/* BACKGROUND IMAGEN INICIAL */
.background-section {
    background-image: url('ext\ 2.webp');
    background-attachment: fixed; /* Esto es lo que crea el efecto parallax */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    opacity: 1;
    animation: increaseBrightness 2s ease-in-out forwards;    
}
@keyframes increaseBrightness {
    from {
        filter: brightness(1%);
    }
    to {
        filter: brightness(100%);
    }
}
.container {
    min-height: 100%;
}


/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    /* background-color: #ffffff; */
    padding: 20px 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}
.logo {
    margin-left: 20px;
}
.logo img {
    width: 35px;
    /* opacity: 55%; */
}
.logo img:hover {
    transform: scale(1.1); /* Aumenta el tamaño del ícono al 110% en el hover */
}
.nav-links {
    flex-grow: 1; /* Añadido para ocupar todo el espacio restante */
}
.nav-links ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Centramos los elementos en el eje horizontal */
}
.nav-links ul li {
    margin: 0 20px; /* Espacio entre los elementos de la lista */
    /* opacity: 55%; */
}
.nav-links a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
}
.nav-links a:hover {
    color: rgb(0, 58, 146);
    text-decoration: none;
    /* font-size: 14px; */
}
.social-links {
    display: flex;
    align-items: center;
    /* opacity: 55%; */
}
.social-icon {
    margin-right: 10px;
    transition: transform 0.3s ease; /* Agrega una transición suave para el efecto de hover */
}
.social-icon:hover {
    transform: scale(1.1); /* Aumenta el tamaño del ícono al 110% en el hover */
}
.social-icon img {
    width: 30px;
    height: 30px;
}
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-right: 20px;
    transition: all 0.3s ease;
}
.hamburger-menu.active .line:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 6px;
}
.hamburger-menu.active .line:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active .line:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -6px;
}
.line {
    width: 100%;
    height: 2px;
    background-color: #000000;
}
.logotrans img {
    margin-right: 20px;
    opacity: 0;
}



/* CONTENIDO */
.main-content {
    text-align: center;
    padding: 50px;
    background-color: #ffffff;
    width: 100%;
}
.center-logo img {
    width: 100%;
    max-width: 300px; /* Tamaño máximo para el logo */
    height: auto; /* Mantener la proporción */
    display: block;
    margin: 0 auto;
}
.description {
    text-align: justify;
    margin-top: 55px;
    padding-left: 300px;
    padding-right: 300px;
}
.text-container {
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    max-height: 250px; /* Altura inicial para el texto corto */
}
.preview-text {
    display: block;
}
.full-text {
    display: none; /* Ocultar inicialmente el texto completo */
}
.toggle-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.toggle-button:hover {
    background-color: #0056b3;
}



/* CARRUSEL */
.content {
    text-align: center;
    /* padding: 120px 20px 50px; */
    width: 100%;
    height: 50%;
    margin-bottom: 40px;
}
.carousel-container {
    position: relative;
    width: 100%;    
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.carousel {
    display: flex;    
    transition: transform 0.5s ease;
}
.carousel-item {
    min-width: 100%;
    height: auto;
    object-fit: cover;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}
.prev-btn {
    left: 10px;
}
.next-btn {
    right: 10px;
}
.section {
    width: 100%;
}

/* VIDEO */
.video-section {
    display: flex;
    justify-content: center; /* Centrar el video horizontalmente */
    padding: 100px; /* Añadir padding alrededor del video */
    /* background-color: #000b1b; */ /* Fondo para la sección */
  /* margin-bottom: 150px; */
  box-shadow: #000000;
  
}
.video-container {
    position: relative; /* Necesario para posicionar el botón de forma absoluta */
    width: 88%; /* Ancho del 88% de la pantalla */
    max-width: 1200px; /* Ancho máximo opcional */
   /*  border-radius: 8px; */ /* Bordes redondeados */
    overflow: hidden; /* Esconder los bordes salientes del video */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para darle profundidad */
}
video {
    width: 100%; /* El video ocupa todo el ancho del contenedor */
    display: block; /* Elimina espacios en blanco debajo del video */
}
.play-button {
    position: absolute; /* Posicionar el botón de forma absoluta en el contenedor del video */
    top: 50%; /* Centrar verticalmente */
    left: 50%; /* Centrar horizontalmente */
    transform: translate(-50%, -50%); /* Ajustar la posición centrada */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6); /* Fondo semi-transparente */
    border-radius: 50%; /* Forma circular */
    cursor: pointer; /* Cambiar el cursor al pasar sobre el botón */
}
.play-button button {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* IMAGEN PRE-FOOTER */
.full-width {
    width: 100%;
    height: auto;
    margin-bottom: -20px; /* Ajusta este valor según sea necesario */
}

/* SECCION MAPA */
#map {
    width: 100%vh;
    height: 100%px;    
}
#framemap {
    width: 100%;
    height:300px;
}


/* SECCION RADICACION FOOTER */
@keyframes latido {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
}      
.radicacion-button2 {
            display: inline-block;
            padding: 10px 20px;
            font-size: 18px;
            color: #ffffff;
            background-color: #123c7c; /* Color del botón */
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            width: 150px;
            box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
            animation: latido 1.5s infinite; /* Añadir animación de latido */
}        
.radicacion-button2:hover {
            background-color:  #76B82A; /* Color del botón al pasar el ratón */
}        
@keyframes latido {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
}

/* FOOTER */
footer {
    background: #010010;
    color: white;
    padding: 20px;
    text-align: center;
}
.footer-divider {
    border-bottom: 1px solid #fff;
    margin: 20px 0;
}
.footer-columns {
    display:flex;
    justify-content: space-around;
    text-align: left;
    margin-bottom: 20px;
    gap: 50px;
}
.footer-columns div {
    max-width: 500px;
    
}
.footer-columns div h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.footer-columns div p {
    margin-bottom: 5px;
    line-height: 1.6;
}
.footer-center {
    margin-bottom: 20px;
}
.footer-center h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.footer-center p {
    margin-bottom: 10px;
}
.footer-center button {
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 3px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}
.footer-center button:hover {
    background:  #76B82A;
    color: rgb(255, 255, 255);
}
.footer-contact {
    margin-bottom: 20px;
}
.footer-contact p {
    margin-bottom: 5px;
    line-height: 1.6;
}
.footer-contact a {
    text-decoration: none;
    color: inherit;
}
.footer-icons {
    margin: 20px 0;
}
.footer-icons a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease;
    
}
.footer-icons a span {
    display: inline-block;
    transition: transform 0.3s ease;
}
.footer-icons a:hover span {
    transform: scale(1.2);
}
.footer-bottom {
    margin-top: 20px;
    margin-bottom: 90px;
    
}
.footer-bottom a {
    text-decoration: none; /* Quita la decoración subrayada */
    color: inherit; /* Mantiene el color original del texto */
   
}
.prov-icon img {
    margin-top: 50px;
    transition: transform 0.5s ease-in-out; /* Transición más larga y con easing más pronunciado */    
    
}
.prov-icon img:hover {
    transform: scale(1.1); /* Aumenta el tamaño del ícono al 110% en el hover */
}



/* BOTON VOLVER A SUBIR */
#back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#back-to-top-btn:hover {
    background-color: #0056b3;
}
#back-to-top-btn:active {
    transform: scale(0.95);
}

/* BOTON DE WHATSAPP */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}
.whatsapp-button img {
    width: 35px;
    height: 35px;
}
.whatsapp-button:hover {
    transform: scale(1.1);
}
.show {
    display: block !important;
}
.hide {
    display: none;
}


/* AJUSTES RESPONSIVE */
/* PANTALLA A 768 */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #000b1b;
        width: 100%;
        text-align: center;
        opacity: 55%;
    }
    .nav-links ul {
        display: block;
    }

    .nav-links ul li {
        display: block;
        margin: 15px 0;
    }

    .nav-links a {
        color: #fff; /* Cambiar el color de las palabras aquí */
        text-decoration: none;
        font-size: 18px;
    }

    .hamburger-menu {
        display: flex;
    } 

    .social-links {
        flex-direction: row; /* Cambia la dirección de flexión a horizontal */
        justify-content: center; /* Centra los íconos horizontalmente */
    }

    .social-icon {
        margin-right: 10px; /* Agrega un margen derecho entre los íconos */
        margin-bottom: 0; /* Elimina el margen inferior */
    }

    .social-icon:last-child {
        margin-right: 0; /* Elimina el margen derecho del último ícono */
    }

    .section .content {
        padding: 0 20px;
    }

    .footer-columns {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .carousel-container {
        width: 100%;
        max-width: 100%; /* Ocupa todo el ancho de la pantalla */
    }

    .carousel-item {
        min-width: 100%;
    }

    .video-section {
        margin-bottom: 50px;
    }    
        
    .center-logo img {
        width: 80%; /* Ocupa el 80% del contenedor en pantallas más pequeñas */
        max-width: 200px; /* Cambia el tamaño máximo del logo para pantallas más pequeñas */
        height: auto;
    }
    
    .description p{
        padding: 0 5%; /* Reduce el padding en móviles */
        font-size: 1rem; /* Ajusta el tamaño de fuente en móviles */
    }

    .main-content {
        padding: 1px;
    }
    
    .toggle-button {
        padding: 8px 16px; /* Ajusta el tamaño del botón */
        font-size: 0.85rem;
    }

    .logo-container img {
        width: 150px; /* Ajusta el tamaño del logo a 150px de ancho */
        height: auto;
    }
}
/* PANTALLA A 430 */
@media (max-width: 430px) {
    .video-container {
        width: 100%;
    }
    
    .social-links {
        display: none; /* Oculta los iconos de redes sociales */
    }        

    .description {
        /* padding: 0 1%;  *//* Reduce aún más el padding para pantallas muy pequeñas */
        text-align: justify; /* Centro el texto para pantallas muy pequeñas */
        margin-top: 50px;
        margin-bottom: 50px;
    }    


    .toggle-button {
        padding: 6px 12px; /* Ajusta el tamaño del botón */
        font-size: 0.8rem;
    }

    .center-logo img {
        margin-top: 50px;
        width: 150px; /* Cambia el tamaño del logo a 150px de ancho para pantallas pequeñas */
        height: auto;
    }

    .main-content {
        padding: 1px;
    }

    .main-content p {
        font-size: 1rem;
        
    }
    
    .video-section {
        padding: 0;
        margin-bottom: 50px;
    }
}
/* PANTALLA 1024 */
@media (max-width: 1024px) {
    .background-section {
        margin-bottom: 100px;
    }

    .center-logo img {
        width: 85%;
        max-width: 250px; /* Ajusta el tamaño máximo del logo en tablets */
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .description {
        padding: 0 5%; /* Reduce el padding en tablets */
        margin-bottom: 100px;
        font-size: 26px;
    }

    .main-content {
        padding: 1px;
    }

    .toggle-button {
        font-size: 0.9rem; /* Ajusta el tamaño del botón */
    }
    
    .video-section {
        margin-bottom: 100px;
        padding: 0;
    }

    .logo-container img {
        width: 180px; /* Ajusta el tamaño del logo a 180px de ancho */
        height: auto;
    }
}
/* RANGOS */
@media (min-width: 350px) and (max-width: 375px) {
    .logo-container img {
        width: 200px; /* Ajusta el tamaño del logo para pantallas muy pequeñas */
        height: auto;
    }
}
@media (min-width: 432px) and (max-width: 768px),
       (min-width: 769px) and (max-width: 907px) {
    .social-links {
        display: none;
    }
}
@media (min-width: 430px) and (max-width: 1024px) {
    .video-section {
        padding: 0px; /* Añadir padding alrededor del video */
        padding-bottom: 25px;
    } 
    
    .video-container {
        width: 100%; /* Ancho del 88% de la pantalla */
        max-width: 1500px; /* Ancho máximo opcional */              
    }
    
    video {
        width: 100%; /* El video ocupa todo el ancho del contenedor */
        display: block; /* Elimina espacios en blanco debajo del video */
    }
}

