
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
    text-decoration: none;
    scroll-behavior: smooth;
    list-style: none;
}

header{
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 3rem;
    z-index: 1000;
}

.logo{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    text-wrap: nowrap;
    transition: 0.3s ease-in-out;
}

.logo-img {
  height: 40px; /* ajusta según el tamaño que prefieras */
  width: auto;
}

.logo:hover{
    transform: scale(1.1);
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    height: 100%;
}


li a{
    position: relative;
    color: white;
    font-weight: 300;
}

.nav-links li a {
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1.5;
}


li a::before{
    position: absolute;
    content: '';
    width: 0;
    left: 0;
    height: 5px;
    top: 25px;
    border-radius: 1rem;
    transition: 0.3s ease-in-out;
    background: linear-gradient(to right,#5c0011, rgb(32, 0, 83));
}

li a:hover::before{
    width: 100%
}

.visit-btn{
    padding: 0.8rem 1.5rem;
    border-radius: 3rem;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    text-wrap: nowrap;
    transition: 0.3s ease-in-out;
    background: linear-gradient(to right,#5c0011, rgb(32, 0, 83));
}

.visit-btn:hover{
    background: linear-gradient(to right,rgb(32, 0, 83), #5c0011);
    transform: scale(1.03);
}
#menu-icon{
    font-size: 2rem;
    display: none;
}
section{
    /* min-height: 100vh; eso hacia el espacio */
    padding: 8rem 12%;
    width: 100%;
    position: relative;
}
.about{
    display: flex;
    align-items: center;
    justify-content: center;
}
.about .about-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
}
.about img{
    width: 30vw;
    border-radius: 50%;
}
.info-box{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.info-box h3{
    font-size: 1.8rem;
    font-weight: 500;
    opacity: 0.8;
}
.info-box h1{
    font-size: 4rem;
    font-weight: 600;
}
.info-box span{
    background: linear-gradient(to right,rgb(255,0,255), rgb(32, 0, 83));
    background-clip: text;
    color: transparent;
    font-size: 2rem;
}
.btn-group{
    display: flex;
    gap: 1rem;
}
.btn{
    border-radius: 3rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid black;
    cursor: pointer;
    font-weight: 500;
    text-wrap: nowrap;
    transition: 0.2s ease-in-out;
}
.btn:hover{
    background-color: black;
    color: white;
}
.socials i{
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.section-title{
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.experience-info{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

.experience img{
    width: 24vw;
    border-radius: 3rem;
}

.grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 3rem;
}
.grid-card{
    border: 2px solid black;
    border-radius: 3rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: left;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.grid-card:hover{
    transform: scale(1.02);
    background-color: black;
    color: white;
}
.grid-card i{
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.grid-card span{
    font-size: 1.5rem;
    font-weight: 500;
    background: linear-gradient(to right, #5c0011, rgb(32, 0, 83));
    background-clip: text;
    color: transparent;
}

::-webkit-scrollbar{
    width: 20px;
}
::-webkit-scrollbar-track{
    background-color: rgb(219, 219, 219);
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(to bottom, #5c0011, rgb(32, 0, 83));
}
.projects-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 2rem;
}
.project-card{
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    border: 2px solid black;
    border-radius: 3rem;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.project-card:hover{
    background-color: black;
    color: white;
    transform: translateY(-10px)scale(1.02);
}
.project-card img{
    width: 20vw;
    border-radius: 1rem;
}
.project-card:hover .btn{
    border: 2px solid white;
    color: white;
}
.project-card:hover .btn:hover{
    border: 2px solid white;
    background-color: white;
    color: black;
}
.project-card h3{
    font-size: 2rem;
    font-weight: 500;
}

.input-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    margin-top: 5rem;
}
.input-box input{

    border-radius: 3rem;
    border: 2px solid black;
    padding: 2rem 8rem;
    font-size: 3rem;
}
.info-box input::placeholder{
    font-size: 3rem;
}
.input{
    position: relative;
}
.input i{
    position: absolute;
    font-size: 4rem;
    top: 50%;
    left: 10px;
    transform: translate(50%, -50%);
}

.input-box textarea{
    border-radius: 3rem;
    border: 2px solid black;
    padding: 2rem 8rem;
    font-size: 3rem;
}


footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

footer ul{
    display: flex;
    align-items: center;
    gap: 3rem;
}
footer ul li a{
    color: black;
    font-weight: 600;
}
.copyright{
    font-size: 300;
    margin-top: 2rem;
}

@media(max-width:1280px){
    header{
        padding: 1rem 2rem;
        gap: 2rem;
    }
    .about .about-container{
        gap: 3rem;
    }
    .experience-info{
        flex-direction: column;
    }
    .input-box input{
        padding: 2rem 5rem;
        font-size: 2.5rem;
    }
    .input input::placeholder{
        font-size: 2.5rem;
    }
    .info-box i{
        font-size: 2.5rem;
    }
}

@media(max-width:768px){
    header{
        gap: 1rem;
        padding: 1rem 1rem;
    }
    header .logo{
        font-size: 1rem;
    }
    header .visit-btn{
        display: none;
    }
    .about-container{
        flex-direction: column;
    }
    .info-box input{
        padding: 1rem 2rem;
        font-size: 1.8rem;
    }
    .info-box input::placeholder{
        font-size: 1.5rem;
    }
    .input-box i{
        display: none;
    }
    .grid{
        grid-template-columns: repeat(1,1fr);
        gap: 2rem;
    }
    .grid-card{
        padding: 2rem;
    }
    .experience-info img{
        width: 100%;
        margin-top: 2rem;
    }
    .section-title{
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .experience h1 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }
}

/*Aqui estaba @media600px*/

.nosotras-section {
    background-image: 
        linear-gradient(to top, #5c0011 10%, transparent 25%),
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('https://res.cloudinary.com/pixel-direction/image/upload/v1755129640/Innovaci%C3%B3n%20Mexicana/weeevsd_mojpdb.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}


.nosotras-content {
    max-width: 800px;
    padding: 40px 20px;
    text-align: center;
}

.nosotras-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.nosotras-content p {
    font-size: 1.2rem;
}

.nosotras-content .btn-conocenos {
    background-color: rgb(32, 0, 83);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nosotras-content .btn-conocenos:hover {
    background-color: rgb(32, 0, 83);
}

/*.youtube-section {
    background-color: #5c0011;
}

.youtube-section h1,
.youtube-section p {
    color: white;
}

.youtube-section .youtube-link {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.youtube-section .youtube-link:hover {
    color: #ffd1dc;
}*/

/*music spotify*/

      .Proyect{
        padding-top: 80px;
        padding-bottom: 80px;
        color: #113c1f;
        background-color: #ffffff;
    }
    
    .Proyect h2{
        
        font-size: 50px;
        padding-bottom: 7px;
    }
    
    .Proyect h4{
        font-size: 22px;
        font-weight: 500;
        padding-bottom: 10px;
    }
    
    .Proyect .col-lg-4{
        margin: 0 !important;
        padding: 3px;
        transition: 0.2s linear;
    }
    
    .Proyect .col-lg-4:hover{
        transform: scale(1.05);
        transition: 0.2s linear;
        z-index: 1;
    }
    
    .Proyect .row img{
        width: 100%;
        height: 370px;
    }

    /*Cards section*/

.cajas-section {
  background-color: #000;
}

.card-custom {
  border: 1px solid white;
  background-color: transparent;
  overflow: hidden;
}

.card-custom img {
  width: 100%;
  object-fit: cover;
}

.card-img-fixed {
  width: 100%;
    max-width: 100%;
    height: auto;
}

.card-custom h4 {
  color: white;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.card-custom p {
  color: white;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .card-img-fixed {
    max-width: 100%;
    height: auto;
  }
}
.card-custom.d-md-flex {
  flex-direction: column;
}

.card-text {
  padding: 1rem;
  flex: 1;
}

/*Footer*/


.footer-section {
  background-color: #5c0011;
  color: white;
  padding: 3rem 1rem;
  position: relative;
  z-index: 1;
}

.footer-section p {
  margin: 0;
  padding: 0.3rem 0;
}

.footer-section img {
  max-width: 250px;
  display: block;
  margin: 1rem auto;
  object-fit: contain;
  background-color: transparent;
  border: none;
}

.footer-section .social-icon {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: transform 0.2s ease;
}

.footer-section .social-icon:hover {
  transform: scale(1.2);
  color: #fff;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links li a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0.5rem 0;
}

.nav-links li a {
    line-height: normal;
}

header .nav-links {
  height: 100%;
  align-items: center;
}

header .nav-links li {
  height: 100%;
  display: flex;
  align-items: center;
}

header .nav-links li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0.5rem;
  line-height: normal;
}

.nav-links a {
    text-decoration: none;
}

/*Servicos*/

.servicios-section {
  background-color: #000;
  color: #fff;
  min-height: auto !important;
  padding: 5rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.servicios-box {
  background: linear-gradient(to right, #5c0011, rgb(255,0,255));
  border-radius: 2rem;
  padding: 3rem 2rem;
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.servicios-box h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.servicios-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servicios-box li {
  font-size: 1.2rem;
  font-weight: 300;
  margin: 0.5rem 0;
}

.container {
  display: block;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
}

/*.container iframe {
  max-width: 100%;
  height: auto;
  border-radius: 1rem; 
}

.video-section {
  background-color: #5c0011;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 56.25%; 
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}*/

/*NUEVO YOUTUBE*/

/* ---- SECCIÓN DE YOUTUBE (VIDEO PRINCIPAL Y VIDEOS PEQUEÑOS) ---- */

.youtube-section {
    background-color: #5c0011;
    padding: 4rem 2rem; /* Ajuste el padding para dar más espacio */
    text-align: center; /* Centrar el texto */
}

.youtube-section h1,
.youtube-section p {
    color: white;
}

.youtube-section .youtube-link {
    color: white;
    text-decoration: underline;
    font-weight: bold;
    margin-bottom: 2rem; /* Espacio debajo del enlace */
    display: inline-block; /* Para aplicar márgenes correctamente */
}

.youtube-section .youtube-link:hover {
    color: #ffd1dc;
}

/* Contenedor para el video principal grande */
.main-video-container {
    position: relative;
    width: 80%; /* Ancho del 80% del contenedor padre */
    max-width: 900px; /* Máximo 900px para que no sea excesivamente grande */
    margin: 0 auto 3rem auto; /* Centrar y añadir margen inferior */
    padding-top: 45%; /* Relación de aspecto 16:9 (altura = 9/16 * ancho) */
    overflow: hidden;
    border-radius: 1rem; /* Bordes redondeados */
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); /* Sombra para destacarlo */
}

.main-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Contenedor para la cuadrícula de los tres videos pequeños */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 3 columnas en pantallas grandes, se ajusta a 1 en pequeñas */
    gap: 1.5rem; /* Espacio entre los videos */
    max-width: 900px; /* Mismo ancho máximo que el video principal */
    margin: 0 auto; /* Centrar la cuadrícula */
}

.video-grid .video-item {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Relación de aspecto 16:9 */
    overflow: hidden;
    border-radius: 0.8rem; /* Bordes redondeados */
    box-shadow: 0 3px 10px rgba(0,0,0,0.3); /* Sombra para cada video */
}

.video-grid .video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/*Galeria*/

.galeria-section {
  background-color: #000;
  padding: 4rem 2rem;
  color: white;
}

.galeria-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 👈 Aumentamos el mínimo */
  gap: 1rem;
  grid-auto-flow: dense;
  max-width: 1300px;
  margin: 0 auto;
}

.galeria-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s ease;
  display: block;
}

.galeria-grid img:hover {
  transform: scale(1.02);
  cursor: pointer;
}

/* Imagen grande ocupa más espacio */
.img-lg {
  grid-column: span 2;
  grid-row: span 2;
}



/* Responsive */
@media (max-width: 768px) {
  .galeria-title {
    font-size: 2rem;
  }
  .img-lg {
    grid-column: span 1;
    grid-row: span 1;
  }


}

.galeria-section {
  background-color: #000;
  padding: 10rem 2rem 4rem 2rem; /* 👈 Ajusta el espacio arriba */
  color: white;
}

.fusion-section {
  background-color: #000;
  color: white;
  padding: 20rem 2rem 2rem 2rem; /* top right bottom left */
}


.fusion-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fusion-text {
  flex: 1 1 500px;
}

.fusion-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.fusion-text p {
  font-size: 1.2rem;
  font-weight: 300;
}

.fusion-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.fusion-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  object-fit: cover;
}

/*CONTACTO*/

/* Estilo más balanceado para inputs, select y textarea */
.contact .input input,
.contact textarea,
.contact select.form-select {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background-color: #fff;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Apariencia uniforme para el select */
.contact select.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='gray' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Ícono dentro del input (correo) */
.contact .input {
  position: relative;
}

.contact .input i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

/* Estilo del botón */
.contact .btn {
  padding: 14px 26px;
  font-size: 16px;
  background-color: #d6006d;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.checkbox-custom {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}

.checkbox-custom input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  background-color: white;
  border: 2px solid #666;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

/* Palomita al estar seleccionado */
.checkbox-custom input:checked ~ .checkmark:after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: -1px;
  color: #000;
  font-size: 16px;
}

/* Cambio de fondo al seleccionar */
.checkbox-custom input:checked ~ .checkmark {
  background-color: #ffc107;
  border-color: #ffc107;
}


/*ABOUT*/

.card-miembro {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.card-miembro img {
  width: 100%;
  height: auto;
  transition: 0.4s ease;
  display: block;
}

.card-miembro .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5c0011;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: 0.4s ease;
  padding: 10px;
}

.card-miembro:hover .overlay {
  opacity: 1;
}

.card-miembro:hover img {
  transform: scale(1.05);
}

.fusion-section {
  background-color: #5c0011;
  padding: 60px 20px;
}

.fusion-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.fusion-text {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.fusion-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.fusion-images img {
  max-width: 100%;
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.fusion-images img:hover {
  transform: scale(1.05);
}
.fusion-section {
  padding-bottom: 2rem; /* o menos si aún hay mucho espacio */
  margin-bottom: 10;
}

/*Section contacto.*/
.contact-banner-img-wrapper {
  position: relative;
  overflow: hidden;
}

.contact-banner-img-wrapper img {
  display: block;
  filter: brightness(40%); /* oscurece la imagen sin recortar */
}

.contact-banner-overlay {
  padding: 4rem 2rem;
}

/*Section contacto 2*/
.contact-info-black {
  background-color: #000; /* fondo negro */
}


/*Final*/
@media(max-width:600px){
    header #menu-icon{
        display: block;
    }
    .nav-links{
        position: absolute;
        top: 100%;
        margin-top: 1rem;
        width: 100%;
        border-radius: 3rem;
        left: 50%;
        transform: translateX(-50%);
        display: none;
        flex-direction: column;
        align-items: center;
    }
    .nav-links li{
        margin-top: 1.5rem;
    }
    .nav-links li a {
        display: flex; /* Nuevo: Usa Flexbox para centrar */
        justify-content: center; /* Nuevo: Centra el texto horizontalmente */
        align-items: center; /* Nuevo: Centra el texto verticalmente */
        background: rgba(0, 0, 0, 0.9);
        padding: 0.5rem 1rem;
        border-radius: 3rem;
        width: 200px;
        margin-top: 1rem;
    }
    .nav-links.active{
        display: flex;
    }
    header{
        padding: 1rem 5rem;
        gap: 8rem;
    }
    header .logo{
        font-size: 1.5rem;
    }
    .about-container img{
        width: 80vw;
    }
    .input-box input{
        padding: 0.5rem 3rem;
        width: 80%;
        font-size: 1.5rem;
    }
    .input-box input::placeholder{
        font-size: 1.5rem;
    }
    footer ul{
        gap: 1rem;
    }
    .contact .input-box {
        width: 100%;
        padding: 0 1rem;
    }
    .contact .input input,
    .contact textarea,
    .contact select.form-select {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Contenedor flotante */
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px; /* ahora está en la esquina inferior derecha */
  z-index: 1000;
}

/* Ícono minimalista */
.whatsapp-icon {
  width: 55px;
  height: 55px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

/* Tooltip (mensaje) */
.whatsapp-tooltip {
  position: absolute;
  bottom: 70px;
  right: 0;
  background-color: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Tooltip activo */
.whatsapp-tooltip.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .logo span {
    display: none;
  }
}

/* REGLAS PARA EL BANNER DE CONTACTO (NUEVA SOLUCIÓN CON BACKGROUND-IMAGE) */

.contact-banner-img-wrapper {
    
    height: 0;
    padding-bottom: 40%; 
    
    /* Aplicar la imagen de fondo */
    background-image: url('https://res.cloudinary.com/pixel-direction/image/upload/v1751049007/Innovaci%C3%B3n%20Mexicana/GDL211_feeuhl.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    position: relative !important; 
    overflow: hidden;
}

/* El overlay */
.contact-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    display: flex;
    align-items: center; 
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2); 
}

/* El contenido interno y el escalado clamp() */
.contact-banner-overlay .container {
    width: 80%; 
    max-width: 1100px;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.contact-banner-overlay .container h2 {
    font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
    text-align: center;
}

.contact-banner-overlay .container p {
    font-size: clamp(0.8rem, 3vw, 1.2rem) !important; 
    text-align: center;
}

.contact-banner-overlay .container a.btn {
    font-size: clamp(0.7rem, 3.5vw, 1rem); 
    padding: clamp(0.5rem, 2.5vw, 0.8rem) clamp(1rem, 5vw, 2rem);
    white-space: nowrap;
}

.contact-banner-overlay .container > div {
    width: 100%;
}

/* VUELVE A FORZAR EL APILAMIENTO Y CENTRADO EN MÓVILES */
@media (max-width: 768px) {
    .contact-banner-overlay .container {
        /* Fuerza el apilamiento vertical */
        flex-direction: column; 
        
        /* Centra el texto y el botón al centro */
        align-items: center; 
        text-align: center;
        
        max-width: 600px; /* Reducimos un poco para que el texto no sea tan ancho en la tableta */
    }

    /* Asegura que el botón se vea bien debajo del texto */
    .contact-banner-overlay .container a.btn {
        margin-top: 1rem;
    }
}