/* Fuentes */
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

/* Estilos generales */
body {
  font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
/* pre loader */

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgb(236, 229, 229);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}



.loader {

  width: 50px;
  height: 50px;
  animation: pulse 3s infinite alternate;
}

.loader img {
  width: 100px; /* Ajusta el ancho de la imagen */
  height: 100px; /* Ajusta la altura de la imagen */
  /* Agrega otros estilos personalizados aquí */
}

@keyframes pulse {
  0% {
      opacity: 0.5; /* Empieza con una opacidad reducida */
  }
  100% {
      opacity: 1; /* Aumenta la opacidad al 100% */
  }
}

.content {
  display: none; /* Oculta el contenido principal hasta que se cargue la página */
}


  /* Estilos para el encabezado */
  header {
   position: fixed;
   width: 100%;
   z-index: 999;
   
   
  }
  
  /* NAV */
  
  .container-fluid{
  max-height: 40px;
  background-color: none;
}
  .navbar-collapse {
    display: flex;
   justify-content: flex-end;
    
  }
  
 .navbar-brand img {
    max-height: 80px; 
  }
  
 .navbar-collapse li {
    margin-right: 1rem; 
  }
  
 /*  .navbar-collapse li:last-child {
    margin-right: 1rem; 
  } */
  
  .navbar-collapse li a {
    text-decoration: none;
    color: #333; 
    font-size: 16px;
    
  }
  .navbar-collapse a:hover {
    border-bottom: 0.5px solid rgba(134, 130, 130, 0.548);
    padding-top: .5rem ;
    padding-bottom: .5rem ;
  }
  


/* Sección presentación bienvenida */  

.hero-section {
    background-image: url('../img/IMG_1430.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(100);
    
    height: 100vh;
    display: flex;
    
    
  }
 
  .hero-content {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 50%;

  }

  .hero-content p{
    font-size: 18px;
    margin-left: 5rem;
    text-shadow: 0px 4px 7px rgba(0,0,0,0.64);
    text-align: start;
    font-weight: 500;
    color: whitesmoke;
    background-color: #313030e1;
    padding: .5rem;
  }

  .hero-content h1{
    font-size: 95px;
    margin-left: 5rem;
    margin-bottom: 2rem;
    text-shadow: -1px 3px 6px rgba(0,0,0,0.6);
  }
  
  
  
  /* Estilos para la sección de servicios */
  .services-section {
    padding: 3rem;
    background-color:whitesmoke;
   
    min-height: auto;
    width: 100%;
    color: #2b2929;
  }

  .services-section h3, h2, p{
    text-align: center;
  }

  .services-section h2{
    margin-bottom: 2rem;
  }

  .services-section h3, h2{
    color: #2b2929 ;
  }

  .service-p{
    font-size: 20px !important;
    
  }
  .services-flex{
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    /* gap: 10px; */
    margin-top: 20px;
    padding: 1rem;
  }
  
  .service-card {
    flex-basis: calc(33.33% - 1px);
    /* background-color: #f0f0f0; */
    padding: 20px;
  }
 
  .more-services{
    background-color: #252525;
    
  }

  .more-services h2{
    color: white;
    padding: 1rem;
    
    margin-bottom: 1rem;
  }

  .more-div{
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    min-height: 450px;
  }
 
.ver{
  align-items: center;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  outline: 0;
  border: 0;
  padding: 1rem;
}

.ver:before {
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 10px;
  transition: all .42s cubic-bezier(.25,.8,.25,1);
  width: 0;
}

.ver:hover:before {
  background-color: #fff;
  width: 3rem;
}

/* Slide de imagenes */




  /* Estilos para la sección de contacto */
  .contact-section {
    background-color: #f9f9f98c;
    padding: 3rem;
  }
  

 /* Seccion canal digital */
  .digital-card{
    display: flex;
    flex-wrap: wrap;
   flex-direction: row;
   min-height: 100vh;
   
   
  }
  .digital-card h2, .contact-card h2, .marcas-container h2{
    color: #3b3a3a;
  }
  .digital-text{
   background-color: white;
    display: flex;
    flex-direction: column;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    text-align: start;
    max-width: 50%;
    max-height: auto;
    padding: 2rem;
    
  }

  .digital-img{
    display: flex;
    background-image: url('../img/back1.webp');
    background-size: cover;
    background-position: 25% 75%;
    filter: grayscale(100);
    background-attachment: fixed;
    flex-direction: column;
    justify-content: center;
    min-width: 50%;
    max-height: auto;
    
  }
  .digital-img img{
    max-height: 700px;
    
  }
  .digital-text h2{
    margin-bottom: 3rem;
    /* font-size: 28px; */
  }

  .what{
    color: #090909;
 padding: 0.7em 1.7em;
 font-size: 18px;
 border-radius: 0.5em;
 background: #e8e8e8;
 border: 1px solid #e8e8e8;
 transition: all .3s;
 box-shadow: 6px 6px 12px #c5c5c5,
             -6px -6px 12px #ffffff;
margin-top: 1rem;
font-weight: 700;
}

.what:active {
 color: #666;
 box-shadow: inset 4px 4px 12px #c5c5c5,
             inset -4px -4px 12px #ffffff;
}
  

/* Section de empresas - marcas */
.marcas-section {
  overflow: hidden;
}

  .marcas-container{
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
  }
  .marcas-h2{
    margin-top: 3rem;
    margin-bottom: 3rem;
    font-size: 28px;
  }
  
  .grid-marcas{
    animation: marcas-scroll 40s linear infinite;
    display: grid;
    grid-template-columns: repeat(33, 1fr);
    gap: 5px; 
  }

  .grid-marcas2{
    display: none;
  }

  .img-marcas img {
    width: 200px; /* Ancho de las imágenes */
    height: 200px; /* Alto de las imágenes */
    object-fit: cover;
    filter: grayscale(100%);
    cursor: pointer;
  }

.img-marcas img:hover{
  filter: grayscale(0%);
}

  @keyframes marcas-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }


  .marcas-section2{
    display: none;
  } 


  /* Seccion about */
.about-section{
    background-color: #2b2929;
    min-height: 100vh;
}
  .about-card{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    
   
  }

  .about-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 40%;
    min-height: 100vh;
    
    
    
    /* padding: 1rem; */
  }

  .about-text p{
    color: #f9f9f9;
    font-size: 20px;
    text-align: start;
    
    
  }
 
  .about-text h2{
    color: #f9f9f9;
    font-size: 40px;
    margin-bottom: 2rem;
    text-align: start;
    
  }
.about-img{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
 
}
.she{
  max-width: 60%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

#two{
  width: 100vw;
}
.about-card-img{
  display: flex;
  flex-direction: column;
  
}

.cards-img:hover{
  transform: scale(1.1);
  transition: 1s;
}
 
#andy{
  background-image: url('../img/Andi\ Rigaud\(1\)-min.JPG');
  background-size: cover;
    background-position: 55% 45%;
    width: 250px;
  height: 250px;
  border-radius: 50%;
  border: solid 4px white;
  
}
#sabri{
  background-image: url('../img/Sabri\ Kolod\(1\)-min.JPG');
  background-size: cover;
    background-position: 65% 35%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: solid 4px white;
}
#man1{
  background-image: url('../img/Pablo\ Suárez\ -\ asistente\ de\ producción\ -min.JPG');
  background-size: cover;
    background-position: 55% 45%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: solid 4px white;
}
#man2{
  background-image: url('../img/Ludmila\ Andrea\ editora\ de\ videos-min.JPG');
  background-size: cover;
    background-position: 55% 45%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: solid 4px white;
}
#man3{
  background-image: url('../img/dai\ mendel\ -\ creatividad\ tik\ tok-min.JPG');
  background-size: cover;
    background-position: 55% 45%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: solid 4px white;
}
#man4{
  background-image: url('../img/Goran\ kaleniuk\ -\ editor\ videos\ -min.JPG');
  background-size: cover;
    background-position: 55% 45%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: solid 4px white;
}
#man5{
  background-image: url('../img/Dai\ by\ Agencia\ de\ Belleza\ -\ make\ up\ y\ pelo\ -min.JPG');
  background-size: cover;
    background-position: 55% 45%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: solid 4px white;
}
#man6{
  background-image: url('../img/cande.PNG');
  background-size: cover;
    background-position: 55% 45%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: solid 4px white;
}


.about-card-img p{
  color: #f4f5f5;
  font-weight: 500;
  margin-top: .5rem;
}


/* Seccion contacto */
.contact-section{
  
  padding: 0%;
}
.contact-card{
 display: flex;
 flex-direction: row;

}

.contact-form{
  min-width: 60%;
  max-width: 60%;
  min-height: 700px;
  padding: 1rem;
}


/* formulario inputs */
.contact-form label{
  display: block;
}
.contact-form input, .contact-form textarea{
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgb(228, 225, 225);
  outline: none;
  margin-bottom: 1rem;
  padding: .5rem;
  transition: border-color 3s; /* Duración de la transición */
  width: 100%;
}

.contact-form input:focus, .contact-form textarea:focus{
  border-color: #6b0101;
}

.contact-img{
  background-image: url('../img/contacto-min.webp');
  background-size: contain;
  
   background-repeat: no-repeat;
  background-attachment: fixed;
  min-width: 40%;
  filter: grayscale(100);
  min-height: 700px;
}




.button {
  height: 50px;
  width: 200px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid #252525;
  overflow: hidden;
  border-radius: 30px;
  color: #333;
  transition: all 0.5s ease-in-out;
}

.btn-txt {
  z-index: 1;
  font-weight: 800;
  letter-spacing: 4px;
}

.type1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  background-color: #333;
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}

.button:hover {
  box-shadow: 1px 1px 200px #252525;
  color: #fff;
  border: none;
}

.type1:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}




/* Estilos responsive para la sección de bienvenida */
@media (max-width: 820px) {
  .navbar-collapse {
    display: flex;
   justify-content: flex-start;
   
    
  }
  .container-fluid{
    max-height: 50vh;
    
    
  }
  
  .hero-section {
    width: 100vw;

    
  }

  .hero-content{
    margin-left: 0 !important;
  }

  .hero-content p{
     
    width: 100vw;
    margin: 0;
    padding: 1rem;
    
    }

   .hero-content-p p{
    margin: 0 !important;
    font-size: 16px !important;
   } 

  .hero-content h1{
    text-align: start !important;
    font-size: 35px;
    font-weight: bolder;
    margin-left: 1rem;

  }

  .navbar-brand{
    margin-left: 2rem;
  }
  .navbar-brand img{
    display: none;
  }

  /* service cards */
  .service-card {
    flex-basis: calc(100% - 10px) !important;
    /* background-color: #f0f0f0; */
    padding: 10px !important;
    text-align: center;
  }


.services-section p{
  font-size: 14px;
}


  .service-card{
    width: 200px;
    
  }

.digital-text{
    font-size: 20px;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    max-height: 100vh;
    
    
  }

  .digital-img{
   
    display: none;
    
  }
 

 .about-text{
    background-color: #2b2929;
    display: flex;
    justify-content: center;
    max-width: 100vw;
    margin-top: 1rem;
    padding: .5rem;
   height: auto;
   margin-bottom: 0;
  }
  
  .about-text h2{
    font-size: 25px;
  }
  
  
  .about-text p{
    font-size: 18px !important;
    margin-bottom: 0;
  }
  .about-img{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: start;
    gap: 10px;
    margin-bottom: 1rem;
   
    
   
  }

  #two{
    margin-bottom: 2rem;
    margin-top: 0;
    
  }
  #andy{
    background-image: url('../img/Andi\ Rigaud\(1\)-min.JPG');
    background-size: cover;
      background-position: 55% 45%;
      width: 300px;
    height: 300px;
    border-radius: 50%;
    
  }
  #sabri{
    background-image: url('../img/Sabri\ Kolod\(1\)-min.JPG');
    background-size: cover;
      background-position: 55% 45%;
      width: 300px;
      height: 300px;
      border-radius: 50%;
  }
  #man1{
    background-image: url('../img/Pablo\ Suárez\ -\ asistente\ de\ producción\ -min.JPG');
    background-size: cover;
      background-position: 55% 45%;
      width: 300px;
      height: 300px;
      border-radius: 50%;
  }
  #man2{
    background-image: url('../img/Ludmila\ Andrea\ editora\ de\ videos-min.JPG');
    background-size: cover;
      background-position: 55% 45%;
      width: 300px;
      height: 300px;
      border-radius: 50%;
  }
  #man3{
    background-image: url('../img/dai\ mendel\ -\ creatividad\ tik\ tok-min.JPG');
    background-size: cover;
      background-position: 55% 45%;
      width: 300px;
      height: 300px;
      border-radius: 50%;
  }
  #man4{
    background-image: url('../img/Goran\ kaleniuk\ -\ editor\ videos\ -min.JPG');
    background-size: cover;
      background-position: 55% 45%;
      width: 300px;
      height: 300px;
      border-radius: 50%;
  }
  #man5{
    background-image: url('../img/Dai\ by\ Agencia\ de\ Belleza\ -\ make\ up\ y\ pelo\ -min.JPG');
    background-size: cover;
      background-position: 55% 45%;
      width: 300px;
      height: 300px;
      border-radius: 50%;
  }
  #man6{
    background-image: url('../img/cande.PNG');
    background-size: cover;
      background-position: 55% 45%;
      width: 300px;
      height: 300px;
      border-radius: 50%;
  }

/* marcas section */
.marcas-container{
  width: 100vw;
}
.grid-marcas{
  display: none;
}

  .grid-marcas2{
    display: flex;
    flex-direction: column;
    justify-content: start;
   
  }
 
  .img-marcas img {
    width: 100%; /* Ancho de las imágenes */
    height: 250px; /* Alto de las imágenes */
    object-fit: cover;
   
  }

/* contacto */
  .contact-form{
    min-width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding: 1rem;
  }

  .contact-img{
    
    min-width: 0%;
   
  }
  .button {
    height: 50px;
    width: 100%;
    position: relative;
    background-color: transparent;
    cursor: pointer;
    border: 2px solid #252525;
    overflow: hidden;
    border-radius: 30px;
    color: #333;
    transition: all 0.5s ease-in-out;
    margin-top: 3rem;
  }

  .contact-form textarea{
    height: 100px;
    font-size: 12px;
  }
  .footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
  }
  .footer div{
    min-width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
  }


  #modalPauta{
    display: none;
  }
}
/* @media (min-width: 1180) and (max-width: 1200) {
  .about-text{
    height: 10vh;
    background-color: #6b0101 !important;
  }
} */




/* Footer */
 footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.footer{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer div{
  display:flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.footer div a{
  color: white;
}

.hidden{
  display: none;
}

.leval{
  margin-top: .5rem; 
  font-size: 10px;
}

.leval a{
  text-decoration: none !important;
  color: #eee7e7;
}


/* slide de imagenes */

.modal-content{
  background-color: #252525;
  
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px; /* Ajusta el tamaño a tu preferencia */
  height: 40px; /* Ajusta el tamaño a tu preferencia */
  color: #252525 !important;
}

.imgcar{
  max-height: 650px;
}

video{
  height: 450px;
  width: 100%;
}

.video-container {
  position: relative;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1; /* Coloca la capa encima del video */
}