* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Incluye el padding y border en el cálculo del ancho */
    font-family: Arial, Helvetica, sans-serif;
}



nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    background-color: transparent;
    transition: background-color 0.3s, padding 0.3s;
    /* Ajusta el color de fondo según sea necesario */
    z-index: 999;
    /* Asegura que el menú esté en la parte superior */
}

.link {

    font-family: Roboto, sans-serif;
    /* Cambia la fuente del texto */
    font-size: 18px;
    /* Ajusta el tamaño del texto */
    color: #ddd;
    font-weight: 600;
    /* Cambia el color del texto */
    /* Quita el subrayado del enlace */
    transition: color 0.3s ease;

}

.link:hover {
    background-color: #1f1e1ee0;
}



.link.active {
    color: #0e9961;
    font-size: 18px;
    font-weight: bold;
    background-size: 400% 400%;
    letter-spacing: -1.0px;

}

.nav-links {
    display: flex;
    gap: 0.9rem;
    list-style: none;
    padding: 10px;
    background-color: #1f1e1ea4;
    border: 1px #117b84 solid;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s, padding 0.3s;
}

nav ul {
    margin-right: 1px;
    display: flex;
    list-style: none;
}
nav ul li a{
    text-decoration: none;
    padding: 10px 10px;
    border-radius: 40px;
}

.menu-icon {
    display: none;
}

.scrolled {
    background-color: #07171ac4; /* Color de fondo cuando se desplaza */
    padding: 5px 0; /* Cambia el padding al desplazarse */
}
.scrolled .nav-links {
    background-color: #07171ac4; /* Cambia el color de fondo del enlace */
    color: #e8e9e9; /* Cambia el color del texto del enlace */
    padding: 10px; /* Aumenta el padding de los enlaces */
}

@media only screen and (max-width: 768px) {
    nav {
        padding: 12px 20px;
        /* Reduce el espacio al ajustar la pantalla */
    }

    .menu-icon {
        display: block;
        color: #fff;
        /* Color blanco para el icono */
        background: none;
        border: none;
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        border-radius: 0px;
        background-color: #07171ac4;
        flex-direction: column;
        text-align: left;
        /* Alinea el texto a la derecha */
    }

    .nav-links.active {
        display: flex;
        /* Muestra la lista cuando la clase 'active' está presente */

    }
    .nav-links li {
        margin: 4px 0px;
    }
}
@media (max-width: 500px) {
    nav {
        padding: 0px 0px;
        /* Reduce el espacio al ajustar la pantalla */
    }
    .nav-links li {
        margin: 2px 0px;
    }
    .link {
        font-size: 16px;
    }

}
/* end NAVVVVV */


/* -------------------------------------------------------*/
/* STRAT IMAGE BACKGROUND */

.unique-fullscreen-container {
    position: relative;
    width: 100%;
    height: 850px;
    z-index: 1; 
}

.unique-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra todo el fondo */
    z-index: 1; /* Imagen de fondo detrás de los botones y nav */
}
.unique-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Superposición encima de la imagen pero detrás del contenido */
    transition: all 0.9s ease; 
}

.unique-content-overlay {
    position: absolute;
    bottom: 80px; /* Coloca los botones en la parte inferior */
    left: 50%;
    transform: translateX(-50%);
    z-index: 3; /* Botones encima de la imagen de fondo */
    text-align: center;

}

.unique-button {
    text-decoration: none;
    background: linear-gradient(to right, #04222096, #032c36c0);
    border: solid 1px #ddd;
    padding: 15px 60px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.unique-button:hover {
    border: solid 1px #1698a4;
    background-color:#1698a4;
}
.unique-inscribete{
    margin-left: 8px;
}
.unique-programa{
    margin-right: 8px;
}
@media (max-width: 1110px) {
    .unique-content-overlay{
    display: flex;
    }
}
@media (max-width: 900px) {
    .unique-fullscreen-container {
        width: 100%;
        height: 600px;
    }
    .unique-content-overlay {
        bottom: 50px; 
    }
    .unique-button {
        padding: 15px 50px;
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .unique-fullscreen-container {
        height: 500px;
    }
    .unique-content-overlay {
        bottom: 45px; 
    }
    .unique-button {
        padding: 12px 40px;
        font-size: 16px;
    }
}
@media (max-width: 600px) {
    .unique-fullscreen-container {
        height: 400px;
    }
    .unique-content-overlay {
        bottom: 30px; 
    }
    .unique-button {
        padding: 10px 35px;
        font-size: 15px;
    }
}
@media (max-width: 500px) {
    .unique-fullscreen-container {
        height: 250px;
    }
    .unique-content-overlay {
        bottom: 10px; 
    }
    .unique-button {
        padding: 8px 20px;
        font-size: 12px;
        
    }
    .unique-button:hover {
    border: solid 1px #1698a4;     
    }
    

}
/*END IMAGE BACKGROUND */
/* -------------------------------------------------------*/


/*start DESCRIPTION CONGRESO */
.description-section{
    width: 100%;
}
.description-container{
    width: 70%;
    margin: 0 auto;
    padding: 10px;
}
.row-description{
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
}

.question-body{
    width: 30%;
    font-size: 23px;
    padding-right: 20px;
    color: #084f6f;
    
}
.question-body h1{
    font-weight: 800;
}

.letter-body{
    width: 70%;
    line-height: 1.6;
    font-size: 18px;
    color: #3b3b3b;
}
@media (max-width: 1110px) {
    .description-container{
        width: 80%;

    }
}
@media (max-width: 1010px) {
    .description-container{
        width: 95%;

    }
}
@media (max-width: 950px) {
    .description-section{
        margin-top: -50px;
    }
    .description-container{
        width: 85%;
    }
    .row-description{
        flex-direction: column ;
    }
    .question-body{
        width: 100%;
        font-size: 23px;
        padding-right: 20px;
        color: #084f6f;
        
    }
    .letter-body{
        width: 100%;
        line-height: 1.6;
        font-size: 18px;
        color: #3b3b3b;
    }
}
@media (max-width: 768px) {
    .description-container{
        width: 100%;
    }
    .row-description{
        padding: 15px ;
    }
    .question-body{
        width: 100%;
        font-size: 20px;

    }
    .letter-body{
        width: 100%;
        font-size: 17px;
    }
}
@media (max-width: 600px) {
    .description-section{
        margin-top: -70px;
    }

}
@media (max-width: 500px) {
    .description-section{
        margin-top: -95px;
    }
    .question-body{
        font-size: 15px;

    }
    .letter-body{
        text-align: justify;
        font-size: 13px;
    }

}

/*END DESCRIPTION CONGRESO */

/* -------------------------------------------------------*/

/*START INSCRIPCION CONGRESO */
.card-container-section{
    width: 70%;
    margin: 0 auto;
}
.unique-card-group {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.unique-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.363);
    display: flex;
    padding: 20px;
    align-items: center;
    width: 630px;
    justify-content: space-around;
}

.unique-card-icon {
    text-align: center;
    font-size: 40px;
    color: black;
    margin-right: 20px;
}
.unique-card-icon p{
    font-size: 25px;
}

.unique-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.unique-card-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.unique-card-price {
    font-size: 24px;
    font-weight: bold;
    margin: 5px 0;
    color: #333;
}
.icon-ponente{
    color: #084f6f;
}
.icon-asistente{ 
    color: #084f6f;
}
.unique-card-code {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px;
}

.unique-card-button {
    font-weight: 700;
    background-color: #084f6f;
    border: 2px solid #084f6f;
    border-radius: 5px;
    padding: 15px 25px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.unique-card-button:hover {
    background: linear-gradient(to right,#0cc7d4,rgb(8, 106, 145));
    color: white;
}
/*END INSCRIPCION CONGRESO */
/*------------------------------------------------------------/
/*START IMAGES PONENCIA CONGRESO */

.ponencias-container{
    width: 100%;
}
.ponencias-body{
    width: 70%;
    margin: 0 auto;
    padding-top: 50px;
    font-size: 22px ;
}
.ponencias-body h1{
    font-weight: 800;
    color: #084f6f;
    text-align: center;
    padding-bottom: 10px;

}

.images-ponencia img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    max-width: 100%;
}
@media (max-width: 1110px) {
    .ponencias-body{
        width: 80%;
    }
}
@media (max-width: 1010px) {
    .ponencias-body{
        width: 100%;
    }
    .images-ponencia img {
        border-radius: 0px;
    }
}
@media (max-width: 950px) {
    .ponencias-body{

        padding-top: 40px;

    }
}
@media (max-width: 768px) {
    .ponencias-body{

        padding-top: 40px;

    }
    .ponencias-body h1{
        margin-top: -30px;
        font-size: 25px ;
    }
}

@media (max-width: 500px) {

    .ponencias-body{
        padding-top: 0px;
    }
    .ponencias-body h1{
        font-size: 22px ;
    }

}
 
/*END IMAGES PONENCIA CONGRESO */
/*------------------------------------------------------------/

/*START PRESENTACION PONENCIA CONGRESO */

.unique-presentation-group {

    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 70%;
    margin: 0 auto;
}

.unique-presentation-item {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    justify-content: space-between;
}
.unique-presentation-row {
    display: flex;

}
.unique-presentation-icon {
    font-size: 57px;
    color: white;
    border-radius: 50%;
    display: flex;
    width: 79px;
    height: 79px;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    padding: 15px 15px 15px 15px;
    
}

.icon-orange {
    background-color: #084f6f;
}

.icon-red {
    background-color: #FF0000;
}

.unique-presentation-content {
    flex: 1;
    margin-right: 60px;
}

.unique-presentation-title {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.unique-presentation-description {
    font-size: 16px;
    color: #666;
    margin: 5px 0 0 0;
    line-height: 1.4;
}
.unique-presentation-description span{

    color: #242424;
    font-weight: 600;

}

.unique-presentation-action {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.363);
    width: 650px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.unique-presentation-action2{
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.363);
    width: 650px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.unique-presentation-action:hover {
    box-shadow: 0px 0px 8px #084f6f;

}
.unique-presentation-action2:hover {
    box-shadow: 0px 0px 8px rgba(255, 0, 0, 0.788);

}
.icon-ppt2{
    color: red;
    font-size: 55px;
}
.icon-ppt{
    color: #084f6f;
    font-size: 55px;
}
.unique-presentation-button {
    background-color: white;
    border: 2px solid;
    border-radius: 14px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ppt-body{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.button-orange {
    color: #084f6f;
    font-size: 15px;
    font-weight: 700;
    border-color: #084f6f;
}
.button-orange:hover {
    background-color: #084f6f;
    color: white;
}

.button-red {
    color: #e00f0f;
    font-size: 15px;
    font-weight: 700;
    border-color: #e00f0f;
}

.button-red:hover{
    background-color: #e00f0f;
    color: white;
}

.unique-presentation-format {
    font-size: 14px;
    font-weight: 700;
    color: #222222;
}
.unique-presentation-item a{
    text-decoration: none;
}


@media (max-width: 1110px) {
    .unique-presentation-group {
        padding-top: 40px;
        width: 85%;

    }
}
@media (max-width: 1010px) {
    .unique-presentation-group {
        padding-top: 40px;
        width: 100%;

    }
}

@media (max-width: 768px) {
    .unique-presentation-item {
        flex-direction: column;
    }
    .unique-presentation-row{
        margin-bottom: 30px;
    }

    .unique-presentation-content{
        margin-left: 30px;
    }
    .unique-presentation-action {
        width:100%;
        height: 100px;

    }
    .unique-presentation-action2{
        width: 100%;
        height: 100px;
    }
}
@media (max-width: 600px) {
    .unique-presentation-icon {
        font-size: 54px;
        width: 74px;
        height: 74px;
        justify-content: center;
        align-items: center;
    }
    .unique-presentation-content{
        margin-left: 10px;
    }
    .unique-presentation-content {
        margin-right: 20px;
    }
}
@media (max-width: 500px) {

    .unique-presentation-group {
        padding-top: 0px;
        margin-bottom: -40px;
    }
    .unique-presentation-icon {
        font-size: 45px;
        width: 60px;
        height: 60px;
    }
    .unique-presentation-action {
        height: 80px;

    }
    .unique-presentation-action2{
        height: 80px;
    }
    .button-orange {
        font-size: 14px;
    }
    
    .button-red {
        font-size: 14px;
    }
    .icon-ppt2{
        font-size: 40px;
    }
    .icon-ppt{
        font-size: 40px;
    }
    .unique-presentation-content {
        margin-right: 0px;
        margin-left: 5px;
    }
    .unique-presentation-title{
        font-size: 18px;
    }
    .unique-presentation-description {
        font-size: 15px;
        text-align: justify;
        line-height: 1.3;
    }
    .unique-presentation-item {
        margin-bottom: -20px;
    }
}


/*END PRESENTACION PONENCIA CONGRESO */

/*------------------------------------------------------------/

/*START QUESTION CONGRESO */

.faq-section {
    padding-top: 40px;
    display: flex;
    width: 70%;
    margin: 0 auto;
}
.question-faq{
    width: 40%;
    text-align: center;
}
.answer-faq{
    width: 60%;
    justify-content: center;
}
.faq-title {
    font-size: 32px;
    color: #084f6f;
    margin-bottom: 20px;
    font-weight: 800;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 15px;
    background-color: #f7f7f7;
    color: #084f6f;
    border: solid 1px #084f6f;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.faq-item:hover {

    box-shadow: 0px 0px 10px #084e6fce;
}

.faq-question {
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 15px;
    font-size: 19px;
    text-align: left;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    border-radius: 15px;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.9s ease;
}

.faq-question:after {
    content: '\25BC'; /* Icono de flecha hacia abajo */
    font-size: 20px;
    color: #084f6f;
    transition: transform 0.3s ease;
}

.faq-question.active:after {
    transform: rotate(180deg); /* Rotar la flecha hacia arriba */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 13px;
    font-size: 18px;
    color: #666;
    padding-bottom: 20px;
}

.faq-answer a {
    color: #0e0d0d;
    font-weight: bolder;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Estilo para la pregunta activa */
.faq-question.active {
    background-color: #ffffff;
}

@media (max-width: 1110px) {
    .faq-section {
        width: 85%;
    }
}
@media (max-width: 1010px) {
    .faq-section {
        width: 100%;
        padding: 10px;
    }
}
@media (max-width: 950px) {
    .faq-section {
        flex-direction: column;
    }
    .answer-faq{
        width: 100%;
    }
    .question-faq{
        width: 100%;
    }
}
@media (max-width: 650px) {
    .faq-section {
        padding-top: 10px;
    }
}

@media (max-width: 500px) {

    .faq-section {
        padding-top: 0px;
    }
    .faq-title {
        font-size: 28px;
    }
    .faq-question {
        font-size: 17px;
    }
    .faq-answer p {
        font-size: 16px;

    }
}




/*END QUESTION CONGRESO */

/*start beneficios CONGRESO */
.info-section-container{
    width: 100%;
    background-color: #f8f8f8b2;
    justify-content: center;
}
.info-section-container h1{
    color: #084f6f;
    text-align: center;
    font-size: 40px;
    font-weight: 800;
}
.info-section {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    padding: 40px;

}

.info-image img {
    width: 360px;
    height: auto;
    border-radius: 10px;
    border: #084f6f solid 2px;
}

.info-text {
    margin-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-icon {
    width: 100px;
    height: 80px;
    margin-right: 20px;
}

.info-item h3 {
    font-size: 20px;
    color: #4e4e4e;
    margin: 0;
    padding-left: 5px;
    padding-bottom: 7px;
}

.info-item p {
    font-size: 16px;
    color: #838383;
    padding-left: 5px;
    line-height: 1.3;
}
@media (max-width: 1110px) {
    .info-section {
        width: 85%;
    }
}
@media (max-width: 1010px) {
    .info-section {

        width: 100%;
    }
    .info-icon {
        width: 90px;
        height: 70px;
        margin-right: 10px;
    }
    .info-image img {
        width: 330px;
        height: auto;

    }
}
@media (max-width: 900px) {
    .info-section {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    .info-item {
        display: flex;
        margin-bottom: 20px;
        text-align: left;
    }
    .info-text {
        margin-left: 0px;
    }
}
@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        text-align: center;
        width: 100%;
        margin-top: -20px;
    }

    .info-image img {
        margin-bottom: 20px;
    }

    .info-text {
        width: 100%;
    }

    .info-item {
        justify-content: center;
    }

    .info-icon {
        margin-bottom: 10px;
    }
    .info-section-container h1{
        font-size: 30px;
    }
    .info-icon {
        width: 80px;
        height: 60px;
        margin-right: 10px;
    }
    .info-image img {
        width: 310px;
        height: auto;

    }
}
@media (max-width: 600px) {
    .info-icon {
        width: 70px;
        height: 50px;
        margin-right: 10px;
    }
    .info-image img {
        width: 290px;
        height: auto;

    }
    .info-section {
        padding: 20px;
    }
    
}
@media (max-width: 500px) {
    .info-image img {
        width: 240px;
        height: auto;
        margin-top: 10px;
    }
    .info-section {
        padding: 10px;
        margin-bottom: -30px;
    }

}
/*end beneficios CONGRESO */




/* START FOOTER*/

/* START lINE2 */
.linea2 {
    width: 90%; /* Ajusta el ancho según sea necesario */
    height: 1px; /* Este será el grosor central de la línea */
    background: linear-gradient(to right, transparent, rgb(0, 123, 194), transparent); /* Ajusta el color a azul o el que necesites */
    position: relative;
    margin: 20px ; /* Centrar horizontalmente */
    margin-top: 1rem;
}

.linea2::before, .linea2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    top: -50%;
    left: 0;
    filter: blur(4px); /* Ajusta el nivel de difuminado para los bordes */
}

.linea2::after {
    top: 50%;
}
/* END lINE2 */
.unique-footer {
    background-color: #111C22;
    color: #ccc;
    padding: 20px 5px;
    font-size: 16px;
}

.unique-footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.unique-footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
    padding-top: 30px;
}
.footer-columnlogo{
    width: 22%;
}
.informacion-inudi{
    color: #d3d6d6;
    text-decoration: none;
}
.custom-icon3{
    color: #10afd7;
  }
.informacion-inudi p{
    color: #10afd7;
    font-weight: 600;
    margin-bottom: 6px;
}
.informacion-inudi span{
    color: #a5a5a5;
}
.footer-logo img {
   
    width: 50px;
    margin-bottom: 10px;
}
.footer-logo{
    display: flex;
    align-items: center;
    justify-content: center;
}
.row-footerlogo{
    padding-top: 20px;
    display: flex;
    padding-bottom: 15px;
}
.row-footerlogo p{
    padding-left: 5px;
    font-size: 16px;
    margin-top: 0px;
    color: #d3d6d6;
}
.span-name{
    color: #10afd7;
    font-weight: 600;
}
.currency-selector button {
    background-color: #333;
    color: #ccc;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.footer-column {
    width: 22%;
}

.footer-column h3 {
    color: #d3d3d3;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column p{
    margin-top: -5px;
    font-size: 12px;
    color: #7c7c7c;
    margin-bottom: 20px;
}

.certificado-button{
    background-color: #0194ce;
    padding: 10px;
    border: none;
    font-size: 16px;
    color: #ddd;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
}
.certificado-button:hover{
    box-shadow: #186e9185 0px 2px 10px 3px;
    background-color: #169ed4b7;
}
.footer-column ul li {
    margin-bottom: 7px;
}
.column1{
    border-left: #78348b 3px solid;
}
.column2{
    border-left: #4b69c4 3px solid;
}
.column3{
    border-left: #626060 3px solid;
}
.column4{
    border-left: #c8201b 3px solid;
}
.column5{
    border-left: #2c8f48 3px solid;
}
.column6{
    border-left: #a6bb23 3px solid;
}
.column7{
    border-left: #b877f2 3px solid;
}
.column8{
    border-left: #00afef 3px solid;
}

.footer-column ul li a {
    color: #a3a3a3ce;
    text-decoration: none;
    margin-left: 5px;
    box-sizing: border-box;
    display: inline-block;
}

.footer-column ul li a:hover {
color: #075b7d ;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin: 0 5px;
}

.social-icons img {
    width: 35px;
    height: 35px;
    
}
/* START facebook*/
.facebook{
    position: relative; /* Necesario para posicionar el pseudo-elemento */
    transition: transform 0.3s ease-in-out;
}

.facebook::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Altura del borde */
    background: linear-gradient(to right, #1bc7fc, #106CFF); /* Gradiente de dos colores */
    z-index: -1; /* Coloca el pseudo-elemento detrás del contenido */
    transform: scaleX(0); /* Inicialmente no se ve */
    transform-origin: bottom right; /* Efecto de expansión desde la derecha */
    transition: transform 0.3s ease-in-out; /* Transición suave */
}

.facebook:hover::before {
    transform: scaleX(1); /* Expande el borde en hover */
}

.facebook::after {
    content: "";
    position: absolute;
    bottom: -5px; /* Ajusta la posición vertical de la sombra */
    left: 0;
    width: 100%;
    height: 10px; /* Altura de la sombra */
    background: linear-gradient(to right,#1bc7fc, #106CFF); /* Gradiente de sombra */
    z-index: -2; /* Asegúrate de que esté detrás del borde */
    filter: blur(6px); /* Difumina la sombra */
    transition: opacity 0.3s ease-in-out; /* Transición suave */
    opacity: 0; /* Inicialmente no se ve */
}

.facebook:hover::after {
    opacity: 1; /* Muestra la sombra en hover */
}

.facebook:hover {
    transform: scale(1.2);
}
/* END facebook*/
/* START youtube*/
.youtube{
    position: relative; /* Necesario para posicionar el pseudo-elemento */
    transition: transform 0.3s ease-in-out;
}

.youtube::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Altura del borde */
    background: linear-gradient(to right, #FE0908, #5a0505); /* Gradiente de dos colores */
    z-index: -1; /* Coloca el pseudo-elemento detrás del contenido */
    transform: scaleX(0); /* Inicialmente no se ve */
    transform-origin: bottom right; /* Efecto de expansión desde la derecha */
    transition: transform 0.3s ease-in-out; /* Transición suave */
}

.youtube:hover::before {
    transform: scaleX(1); /* Expande el borde en hover */
}

.youtube::after {
    content: "";
    position: absolute;
    bottom: -5px; /* Ajusta la posición vertical de la sombra */
    left: 0;
    width: 100%;
    height: 10px; /* Altura de la sombra */
    background: linear-gradient(to right,#FE0908, #5a0505); /* Gradiente de sombra */
    z-index: -2; /* Asegúrate de que esté detrás del borde */
    filter: blur(6px); /* Difumina la sombra */
    transition: opacity 0.3s ease-in-out; /* Transición suave */
    opacity: 0; /* Inicialmente no se ve */
}

.youtube:hover::after {
    opacity: 1; /* Muestra la sombra en hover */
}

.youtube:hover {
    transform: scale(1.2);
}
/* end youtube*/
/* START TIKTOK*/
.tiktok {
    position: relative; /* Necesario para posicionar el pseudo-elemento */
    transition: transform 0.3s ease-in-out;
}

.tiktok::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Altura del borde */
    background: linear-gradient(to right, #00F8EE, #E61050); /* Gradiente de dos colores */
    z-index: -1; /* Coloca el pseudo-elemento detrás del contenido */
    transform: scaleX(0); /* Inicialmente no se ve */
    transform-origin: bottom right; /* Efecto de expansión desde la derecha */
    transition: transform 0.3s ease-in-out; /* Transición suave */
}

.tiktok:hover::before {
    transform: scaleX(1); /* Expande el borde en hover */
}

.tiktok::after {
    content: "";
    position: absolute;
    bottom: -5px; /* Ajusta la posición vertical de la sombra */
    left: 0;
    width: 100%;
    height: 10px; /* Altura de la sombra */
    background: linear-gradient(to right, #00F8EE,#E61050); /* Gradiente de sombra */
    z-index: -2; /* Asegúrate de que esté detrás del borde */
    filter: blur(6px); /* Difumina la sombra */
    transition: opacity 0.3s ease-in-out; /* Transición suave */
    opacity: 0; /* Inicialmente no se ve */
}

.tiktok:hover::after {
    opacity: 1; /* Muestra la sombra en hover */
}

.tiktok:hover {
    transform: scale(1.2);
}

/* END TIKTOK*/
/* START INSTAGRAM*/
.instagram{
    position: relative; /* Necesario para posicionar el pseudo-elemento */
    transition: transform 0.3s ease-in-out;
}

.instagram::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Altura del borde */
    background: linear-gradient(to right, #FFC000, #FD0AC7); /* Gradiente de dos colores */
    z-index: -1; /* Coloca el pseudo-elemento detrás del contenido */
    transform: scaleX(0); /* Inicialmente no se ve */
    transform-origin: bottom right; /* Efecto de expansión desde la derecha */
    transition: transform 0.3s ease-in-out; /* Transición suave */
}

.instagram:hover::before {
    transform: scaleX(1); /* Expande el borde en hover */
}

.instagram::after {
    content: "";
    position: absolute;
    bottom: -5px; /* Ajusta la posición vertical de la sombra */
    left: 0;
    width: 100%;
    height: 10px; /* Altura de la sombra */
    background: linear-gradient(to right, #FFC000,#FD0AC7); /* Gradiente de sombra */
    z-index: -2; /* Asegúrate de que esté detrás del borde */
    filter: blur(6px); /* Difumina la sombra */
    transition: opacity 0.3s ease-in-out; /* Transición suave */
    opacity: 0; /* Inicialmente no se ve */
}

.instagram:hover::after {
    opacity: 1; /* Muestra la sombra en hover */
}

.instagram:hover {
    transform: scale(1.2);
}
/* END INSTAGRAM*/
/* START whatsapp*/
.whatsapp{
    position: relative; /* Necesario para posicionar el pseudo-elemento */
    transition: transform 0.3s ease-in-out;
}

.whatsapp::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Altura del borde */
    background: linear-gradient(to right, #31AB22, #0a4203); /* Gradiente de dos colores */
    z-index: -1; /* Coloca el pseudo-elemento detrás del contenido */
    transform: scaleX(0); /* Inicialmente no se ve */
    transform-origin: bottom right; /* Efecto de expansión desde la derecha */
    transition: transform 0.3s ease-in-out; /* Transición suave */
}

.whatsapp:hover::before {
    transform: scaleX(1); /* Expande el borde en hover */
}

.whatsapp::after {
    content: "";
    position: absolute;
    bottom: -5px; /* Ajusta la posición vertical de la sombra */
    left: 0;
    width: 100%;
    height: 10px; /* Altura de la sombra */
    background: linear-gradient(to right,#31AB22, #0a4203); /* Gradiente de sombra */
    z-index: -2; /* Asegúrate de que esté detrás del borde */
    filter: blur(6px); /* Difumina la sombra */
    transition: opacity 0.3s ease-in-out; /* Transición suave */
    opacity: 0; /* Inicialmente no se ve */
}

.whatsapp:hover::after {
    opacity: 1; /* Muestra la sombra en hover */
}

.whatsapp:hover {
    transform: scale(1.2);
}
@media (max-width: 1110px) {
    .unique-footer-container {
        width: 98%;
    }
}
@media (max-width: 1010px) {
    body {
        margin: 0;
        padding: 0;
    }
    .unique-footer-content {
        display: grid; /* Usa grid para dos columnas */
        grid-template-columns: repeat(2, 1fr); /* Dos columnas iguales */
        gap: 20px; /* Espacio entre columnas */
    }
    .footer-columnlogo{
        width: 90%;
    }
    .footer-column {
        grid-column: span 1; /* Ocupa una columna en pantallas pequeñas */
    width: 90%;
    }

}
@media (max-width: 480px) {
    body {
        margin: 0;
        padding: 0;
    }
    .unique-footer-content {
        display: flex;
        flex-direction: column;
    }
    .footer-columnlogo{
        width: 95%;
    }
    .footer-column {
    width: 95%;
    }
    .footer-column ul li {
        margin-bottom: 7px;
    }
    .social-icons img {
        width: 28px;
        height: 28px; 
    }
    .facebook::before {
        transform: scaleX(1); 
    }
    .facebook::after {
        opacity: 1; 
    }
    .facebook {
        transform: scale(1); 
    }

    .youtube::before {
        transform: scaleX(1); 
    }
    .youtube::after {
        opacity: 1; 
    }
    .youtube {
        transform: scale(1); 
    }

    .tiktok::before {
        transform: scaleX(1); 
    }
    .tiktok::after {
        opacity: 1; 
    }
    .tiktok {
        transform: scale(1); 
    }

    .instagram::before {
        transform: scaleX(1); 
    }
    .instagram::after {
        opacity: 1; 
    }
    .instagram {
        transform: scale(1); 
    }

    .whatsapp::before {
        transform: scaleX(1); 
    }
    .whatsapp::after {
        opacity: 1; 
    }
    .whatsapp {
        transform: scale(1); 
    }
}

/* END whatsapp*/
/* END FOOTER*/