* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Hero-Bold', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #031A6B;
    color: #1b1b1e;
}

h1{font-size: 4rem; font-family: "Schibsted Grotesk", serif;}
h2{font-size: 1.75em; font-family: "Schibsted Grotesk", serif;}
h3{font-size: 2rem;}
h4{font-size: 1.5rem; font-family: "Schibsted Grotesk", serif;}
p{font-size: 1.25rem; font-family: "Schibsted Grotesk", serif;}
ul{list-style: none; padding: 0; margin: 0;}
li{font-size: 1.25rem; font-family: "Schibsted Grotesk", serif;}

section {
    position: relative; /* Necesario para z-index */
    overflow: visible; /* Permite que el contenido salga */
    z-index: 1; /* Ajusta según sea necesario */
}


 
.container{
    opacity: 0;
    filter: blur(5px);
    transform: translateY(10%);
    transition: all .5s;
}
/* Cuando entran en la vista (30% inferior), aparecen */
.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

/* Header */
header {
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 1rem 8%;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F3F5FB;
    border-bottom:1px  solid #000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    transition: top 0.1s ease-in-out;
}

/* Espacio reservado para evitar el salto */
.header-placeholder {
    height: 100%; /* Ajusta esto a la altura del navbar */
    display: none; /* Se activará cuando el header cambie */
}

header.scrolled {
    position: fixed;
    left: 0;
    border: 1px solid #000;
    margin: .5rem auto;
    width: 50%;
    height: 4.5rem;
    background: #fff;
    padding: 0.05rem 7%;
    border-radius: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
   
}

header.scrolled.visible {

    opacity: 1; /* Hace visible */
}

/* Cuando el navbar cambia a `fixed`, mostramos el espacio reservado */
header.scrolled + .header-placeholder {
    display: block;
}

header.scrolled .navlist a {
    color: #000;
}

/* Cuando el header tiene la clase scrolled */
header.scrolled .btn-content {
    border: 1px solid #000;
    background: #fff;
    color: #000000;
    box-shadow: none;
}

header.scrolled .btn-content:hover {

    transform: scale(1.1);
    color: #000000;
}

/* Ocultar back-btn cuando el header tiene la clase scrolled */
header.scrolled .back-btn {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
}

.logo img {
    width: 10rem;
    height: auto;
}

header.scrolled .logo img{
    width: 7rem;
    height: auto;
}

header.scrolled .logo:hover {
    
    transform: scale(1.1);
    color: #000000;
    
}

.navlist {
    display: flex;
}

.navlist a {
    display: inline-block;
    margin: 0 35px;
    color: #1b1b1e;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative; /* Necesario para el pseudo-elemento */
    text-decoration: none; /* Eliminamos el subrayado por defecto */
}

/* Subrayado animado */
.navlist a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Ajusta esta posición según tu diseño */
    width: 0;
    height: 2px; /* Grosor del subrayado */
    background-color: currentColor; /* Hereda el color del texto */
    transition: width 0.3s ease;
}

.navlist a:hover::after {
    width: 100%; /* Ancho completo al hacer hover */
}

.navlist a:hover {
    color: #f39c12;
}

header.scrolled a:hover {
    color: #f39c12;
}

/* Right Section (Button & Icon) */
.nav-right {
    display: flex;
    align-items: center;
}

.button-container {
    position: relative;
    width: 10rem; /* Ancho del botón */
    height: 3rem; /* Alto del botón */
    margin: 5px;
}

#blog-button{
    visibility: hidden;
}

/* Efecto hover en el contenedor */
.button-container:hover .btn-content {
    background-color: #fff;
    color: #000000; /* Desplaza el botón hacia arriba y la izquierda */
}

.button-container:hover .back-btn {
    transform: translate(5px, 5px); /* Desplaza el fondo hacia abajo y la derecha */
}

/* Estilo del botón */
.btn-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #031A6B; /* Fondo blanco */
    color: #ffffff; /* Texto negro */
    border: none;
    border-radius: 20px; /* Bordes redondeados */
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra */
}

/* Fondo del botón */
.back-btn {
    position: absolute;
    top: 5px; /* Desplazamiento inicial */
    left: 5px; /* Desplazamiento inicial */
    width: 100%;
    height: 100%;
    background-color: #FF7700; /* Color naranja */
    z-index: 1;
    border-radius: 20px; /* Bordes redondeados */
    transition: all 0.2s ease-in-out;
}

#menu-icon {
    font-size: 34px;
    color: #000000;
    z-index: 10001;
    cursor: pointer;
    display: none;
}


#hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

#hero .container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-hero {
    width: 100%;
    height: 60rem;
    position: relative;
    overflow: hidden;
}

/* Capa de degradado */
.img-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 25%,   /* Más transparente en la parte superior */
        rgba(0, 0, 0, 0.0) 60%  /* Más oscuro en la parte inferior */
    );
    z-index: 1; /* Asegura que el degradado esté sobre la imagen */
}

.img-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative; /* Necesario para el z-index funcione correctamente */
}

.hero-card {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2; /* Mayor que el z-index del degradado */
    max-width: 800px; /* Ajusta según necesites */
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff; /* Color de texto blanco */
    backdrop-filter: blur(2px); /* Efecto de difuminado */
}

.hero-card h1 {
    font-size: 4.5rem; /* Tamaño ajustable */
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-card h2 {
    font-size: 2.2rem; /* Tamaño ajustable */
    font-weight: 300;
    line-height: 1.3;
}

#trade-marketing {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#trade-marketing .container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-trade-marketing {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Capa de degradado */
.img-trade-marketing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(3, 26, 107, 1) 25%,   /* Más transparente en la parte superior */
        rgba(255, 255, 255, 0) 60%  /* Más oscuro en la parte inferior */
    );
    z-index: 1; /* Asegura que el degradado esté sobre la imagen */
}

.img-trade-marketing img {
    width: 100%;
    height: 700px;
    display: block;
    object-fit: cover; /* Asegura que la imagen cubra el espacio */
}

.trade-card {
    position: absolute;
    left: 100px;
    top: 40%;
    transform: translateY(-40%);
    z-index: 2;
    max-width: 600px;
    padding: 20px;
    color: #fff; 
    
}

.trade-card h1 {
    font-size: 7rem; /* Tamaño ajustable */
    margin-bottom: 1rem;
    line-height: 1.2;
    filter: drop-shadow(10px 10px 5px rgba(0, 0, 0, 0.5));
}
.trade-card p {
    font-size: 2rem; 
    margin-bottom: 3.5rem;
    line-height: 1.2;
    filter: drop-shadow(10px 10px 5px rgba(0, 0, 0, 0.5));
}


.trade-card .button-container{
    position: relative;
    width: 20rem; /* Ancho del botón */
    height: 5rem; /* Alto del botón */
    margin: 0;
    
}

.trade-card .btn-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #031A6B; /* Fondo blanco */
    border: 0.15rem solid #fff;
    border-radius: 25px; /* Bordes redondeados */
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra */
}


.trade-card .button-container:hover .btn-content {
    background-color: #fff;
    color: #000000; 
    border: 0.15rem solid #000;
}


.trade-card .back-btn {
    position: absolute;
    top: 5px; /* Desplazamiento inicial */
    left: 5px; /* Desplazamiento inicial */
    width: 100%;
    height: 100%;
    background-color: #ffffff; 
    border-radius: 25px; /* Bordes redondeados */
    transition: all 0.2s ease-in-out;
}

.trade-card:hover .back-btn {
  background-color: #000000; 
  
}


#talento-humano {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#talento-humano .container {
    width: 100%;
    max-width: 1440;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-talento-humano {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

/* Capa de degradado */
.img-talento-humano::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to left,
        rgba(3, 26, 107, 1) 25%,   /* Más transparente en la parte superior */
        rgba(255, 255, 255, 0) 60%  /* Más oscuro en la parte inferior */
    );
    z-index: 1; /* Asegura que el degradado esté sobre la imagen */
}

.img-talento-humano img {
    width: 100%;
    height: 700px;
    display: block;
    object-fit: cover; /* Asegura que la imagen cubra el espacio */
}

#talento-humano .trade-card {
    position: absolute;
    right: 100px;  /* Cambiamos left por right */
    left: auto;     /* Reseteamos left */
    top: 40%;
    transform: translateY(-40%);
    z-index: 2;
    max-width: 600px;
    padding: 20px;
    color: #fff;
    
}

#investigacion-mercado {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#investigacion-mercado .container {
    width: 100%;
    max-width: 1440;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-investigacion-mercado {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

/* Capa de degradado */
.img-investigacion-mercado::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(3, 26, 107, 1) 25%,   /* Más transparente en la parte superior */
        rgba(255, 255, 255, 0) 60%  /* Más oscuro en la parte inferior */
    );
    z-index: 1; /* Asegura que el degradado esté sobre la imagen */
}

.img-investigacion-mercado img {
    width: 100%;
    height: 700px;
    display: block;
    object-fit: cover; /* Asegura que la imagen cubra el espacio */
}

#investigacion-mercado .trade-card {
    position: absolute;
    left: 100px;
    top: 40%;
    transform: translateY(-40%);
    z-index: 2;
    max-width: 600px;
    padding: 20px;
    color: #fff; 
    
}

#investigacion-mercado .trade-card h1 {
    font-size: 6rem; /* Tamaño ajustable */
    margin-bottom: 1rem;
    line-height: 1.2;
    filter: drop-shadow(10px 10px 5px rgba(0, 0, 0, 0.5));
}

#contactanos{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: auto;
    background: linear-gradient( #FFE01B 0%, #FF7700 80%);
    padding: 100px 50px; /* Aumentamos el padding vertical */
    position: relative; /* Necesario para posicionar la imagen de manera absoluta */
    overflow: hidden; /* Evita que la imagen se desborde de la sección */
}

#contactanos .container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: flex-start; /* Alinea el contenido a la derecha */
    align-items: center;
    position: relative; /* Necesario para posicionar la imagen de manera absoluta */
    padding: 20px;
}

#contactanos .contacto-text {
    display: flex;
    flex-direction: column;
    align-items: center; /* Alinea el contenido a la derecha */
    justify-content: center;
    padding: 1.5rem;
    gap: 25px;
    text-align: center; /* Alinea el texto a la derecha */
    width: 100%; /* Limita el ancho del texto */
    max-width: 800px; /* Ancho máximo del texto */
    z-index: 2; /* Asegura que el texto esté por encima de la imagen */
}

#contactanos .contacto-text h2 {
    font-size: 6.5rem; /* Tamaño grande para el título */
    margin-bottom: 20px; /* Espacio entre el título y el párrafo */
    color: #fff; /* Color del título */
}

#contactanos .contacto-text h3 {
    font-size: 2.5rem; /* Tamaño adecuado para el párrafo */
    color: #fff; /* Color del texto */
}



.container .img-contact {
    position: absolute; /* Permite superponer la imagen */
    left: 50%; /* Mueve la imagen hacia la izquierda */
    top: 65%; /* Centra verticalmente */
    transform: translateY(-55%); /* Ajusta el centrado vertical */
    z-index: 1; /* Asegura que la imagen esté por encima del contenido */
}

.img-contact img {
    width: 45rem; /* Ajusta el tamaño de la imagen */
    height: auto;
    max-width: none; /* Permite que la imagen sea más grande que su contenedor */
    border-radius: 25px;
     
}

.contacto-text .button-container{
    position: relative;
    width: 20rem; /* Ancho del botón */
    height: 5rem; /* Alto del botón */
    margin-top: 15px;
    
}

.contacto-text .btn-content{
    border-radius: 25px; /* Bordes redondeados */
    background-color: #031A6B;
    color: #fff;
    border: 0;
}


.contacto-text .button-container:hover .btn-content {
    background-color: #fff;
    color: #000000; /* Desplaza el botón hacia arriba y la izquierda */
    border: 0.15rem solid #000;
}


/* Contenedor principal */
.whatsapp-wrapper {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: row-reverse; /* Invierte el orden de los elementos */
    align-items: center;
    pointer-events: none;
}

/* Botón principal (mismo estilo) */
.whatsapp {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    font-size: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contenedor del texto - modificado para izquierda */
.whatsapp-container {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alineación a la izquierda */
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
    z-index: 2;
    overflow: hidden;
    right: 0; /* Cambiado de left a right */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Texto del botón - modificado para izquierda */
.whatsapp-text {
    color: #000000;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    font-weight: 500;
    margin-left: 90px; /* Cambiado de margin-right a margin-left */
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px); /* Dirección de la animación invertida */
    transition: all 0.3s ease;
}

/* Efectos hover modificados */
.whatsapp:hover + .whatsapp-container {
    width: 280px;
    
}

.whatsapp:hover + .whatsapp-container .whatsapp-text {
    opacity: 1;
    transform: translateX(-62px);
    transition-delay: 0.1s;
}

/* Ícono y demás estilos se mantienen igual */
.bxl-whatsapp {
    font-size: 3.5rem;
    transition: transform 0.3s ease;
}

.whatsapp:hover {
    transform: scale(1.05);
}

.whatsapp:hover .bxl-whatsapp {
    transform: rotate(15deg);
    
}


footer {
    background: #001524;
    color: #fff;
    padding: 40px 0;
    padding-bottom: 0;
}

.containfoot {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5rem;
    padding: 0 40px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    padding-bottom: 20px;
}

.visitanos, .enlaces, .info-contacto, .social-neworks {
    flex: 1;
    min-width: 300px;
}

.visitanos  {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.enlaces{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-contacto .datos-contacto{
    margin-top: 4rem;
    
}

.title-visitanos h3, .title-enlaces h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #f0a500;
    display: inline-block;
    padding-bottom: 5px;
}

.title-visitanos h4 {
    font-size: 1.5rem;
    margin: 10px 0 5px;
    color: #ffffff;
}

p {
    font-size: 1.04rem;
    margin: 5px 0;
    line-height: 1.5;
}

.menu-enlaces ul {
    list-style: none;
    padding: 0;
}

.menu-enlaces ul li {
    margin: 8px 0;
}

.menu-enlaces ul li a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s ease;
}

.menu-enlaces ul li a:hover {
    color: #00B4D8;
}

.datos-contacto i {
    color: #ffffff;
    margin-right: 1px;
    font-size: 1.5rem;
}

.datos-contacto li {
    margin: 8px 0;
    font-size: 1.2rem;
}

.datos-contacto li a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s ease;
}

.datos-contacto li a:hover {
    color: #00B4D8;
}

.social-neworks {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-aso img {
    max-width: 15rem;
    margin-bottom: 10px;
}

.redes-sociales ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
}

.redes-sociales ul li a {
    color: #fff;
    font-size: 3rem;
    transition: color 0.3s ease;
}

.redes-sociales ul li a:hover {
    color: #00B4D8;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #bbb;
}

.footer-bottom {
    padding: 15px 0;
    text-align: center;
    color: #fff; /* Texto en blanco para contraste */
    font-size: 14px;
   margin: 0;
}

.footer-bottom .containfoot {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.copy-right p {
    margin: 0;
    font-weight: 300; /* Texto más liviano */
    letter-spacing: 0.5px;
}

.copy-right p:hover {
    color: #f39c12; /* Cambio de color al pasar el cursor */
    transition: color 0.3s ease;
}


@media (max-width: 1536px){

    header.scrolled {
        padding: 0.05rem 4%;   
    }
    
    .trade-card h1{
        font-size: 5rem;
    }
    #investigacion-mercado .trade-card h1 {
        font-size: 5rem;
    }

    #talento-humano .trade-card {
        right: 0px;
    }
    .visitanos{
        margin-right: 1rem;
    }

    .containfoot{
        gap: 1rem;
    }
    
}

@media (max-width: 1400px){

    header.scrolled {
        padding: 0.05rem 5%;
    }

    
}

@media (max-width: 1200px){

    header {
        padding: 20px 4%;
    }
    header.scrolled{
        width:90%;
    }

    .logo img {
        width: 100px;
        height: auto;
    }
    .navlist a {
        margin: 0 25px;
    }
    .btn {
        padding: 11px 23px;
    }

    .trade-card h1{
        font-size: 4rem;
    }
    #investigacion-mercado .trade-card h1 {
        font-size: 4rem;
    }
    .containfoot {
        padding: 0 50px;
      }
      #contactanos .contacto-text {
        max-width: 600px; /* Ancho máximo del texto */
       
    }
    
    #contactanos .contacto-text h2 {
        font-size: 6rem; /* Tamaño grande para el título */
    }
    
    #contactanos .contacto-text h3 {
        font-size: 2.5rem; /* Tamaño adecuado para el párrafo */
    }

    .container .img-contact {      
        left: 45%; /* Mueve la imagen hacia la izquierda */
        top: 70%; /* Centra verticalmente */
    }
    
    .img-contact img {
        width: 40rem; /* Ajusta el tamaño de la imagen */
    }

    .containfoot{
        padding: 0 25px;
        gap: 0;
    }
    .social-neworks{
        margin: 0;
    }

    .logo-aso img {
        margin-top: 30px;
      }
}

@media (max-width: 1175px){
    .logo img {
        width: 100px;
        height: auto;
    }
    .navlist a {
        margin: 0 25px;
    }
    .btn {
        padding: 11px 23px;
    }

    header.scrolled{
        width:90%;
    }

    .hero-card{
        background-color: rgba(0,0 ,0, 0.5);
    }

    .img-trade-marketing img, 
    .img-talento-humano img, 
    .img-investigacion-mercado img {
        height: 450px;
      }

    .trade-card{
        max-width: 500px;
    }

    .trade-card h1{
        font-size: 3rem;
    }
    .trade-card p{
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .trade-card .button-container{
        width: 15rem;
    }

    .img-talento-humano img {
        width: 100%;
        height: 450px;
        display: block;
        object-fit: cover;
      }
    
    #investigacion-mercado .trade-card h1 {
        font-size: 3rem;
    }

    #contactanos .contacto-text {
        max-width: 600px; /* Ancho máximo del texto */
       
    }

    #contactanos .contacto-text h2 {
        font-size: 3rem; /* Tamaño grande para el título */
    }
    
    #contactanos .contacto-text h3 {
        font-size: 1.8rem; /* Tamaño adecuado para el párrafo */
    }

    .container .img-contact {      
        left: 50%; /* Mueve la imagen hacia la izquierda */
        top: 70%; /* Centra verticalmente */
    }
    
    .img-contact img {
        width: 30rem; /* Ajusta el tamaño de la imagen */
    }
    
}

@media (max-width: 940px) {
    header,
    header.scrolled {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 15px 8%;
        background: #fff;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        color: #000;
        opacity: 1; /* Siempre visible */
        transition: none; /* Deshabilita las transiciones */
    }
    
    /* Ocultamos el placeholder, ya que no se necesita para móviles */
    .header-placeholder {
        display: none;
    }
    
    /* Ajustamos el menú responsive */
    #menu-icon {
        display: block;
    }
    
    .navlist {
        position: fixed;  /* Lo cambiamos a fixed para que se superponga */
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        backdrop-filter: blur(32px);
        display: flex;
        align-items: center;
        flex-direction: column;
        padding-top: 180px;
        transition: right 0.7s ease;
        z-index: 1000;
        
    }
    
    .navlist a {
        display: block;
        padding: 0;
        margin-bottom: 50px;
        font-size: 1.7rem;
        color: #fff;
    }
    
    .navlist.open {
        right: 0;
    }
    

    
    header .button-container{
        display: none;
    }

    .trade-card {
        max-width: 450px;
        left: 50px;
      }
    
    .trade-card h1{
        font-size: 2rem;
    }
    .trade-card p{
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .trade-card .button-container{
        width: 15rem;
    }
    
    #talento-humano .trade-card {
        max-width: 450px;
      }


    #investigacion-mercado .trade-card {
    max-width: 450px;
    left: 50px;
    }
    
    #investigacion-mercado .trade-card h1 {
        font-size: 2rem;
    }  
    
    #contactanos .container {
        justify-content: center; /* Alinea el contenido a la derecha */
    }

    .img-proposito img {
        width: 100%;
        max-width: 500px;
        height: auto;
        margin: 0 auto;
        transform: translateY(-350px) translateX(30px); /* Superposición sutil */
    }

    .container .img-contact {      
        visibility: hidden;
    }

    #contactanos .contacto-text {
        align-items: center; /* Alinea el contenido a la izquierda */
        text-align: center; /* Alinea el texto a la izquierda */
        max-width: 800px;
    }
    
    #contactanos .contacto-text h2 {
        font-size: 4rem; /* Tamaño grande para el título */
    }
    
    #contactanos .contacto-text h3 {
        font-size: 2rem; /* Tamaño adecuado para el párrafo */
    }

    .whatsapp-wrapper{
        display: none;
    }
}

@media (max-width: 720px){
    .hero-card {
        left: 35px;
        width: 100%;
        height: 100%;
        border-radius: 0;
        border: 0;
        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        text-align: center;
        left: 0;
        top: 0;
        transform: translateY(0);
        backdrop-filter: blur(0);
    }

    .hero-card h1{
        font-size: 2.5rem;
    }

    .hero-card h2{
        font-size: 2rem;
    }

    .img-hero {
        height: 45rem;
      }
    
    .img-trade-marketing img, .img-talento-humano img, .img-investigacion-mercado img{
        height: 400px;
        width: auto;
    }

    .img-trade-marketing, .img-investigacion-mercado {
        display: flex;
       justify-content: end;
    }
}

@media(max-width: 450px){
       
    .img-trade-marketing::before, .img-talento-humano::before, .img-investigacion-mercado::before{
        background: rgba(3, 26, 107, 0.7);
    }

    .trade-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        left: 10px;
    }

    #investigacion-mercado .img-investigacion-mercado {
        display: flex;        
        justify-content: end;
    }

    #investigacion-mercado .trade-card{
        left: 0;
    }

    .enlaces {
        margin-top: 30px;
        gap: 0;
      }
}

