/*Main header encabezado barra encabezado*/

@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:wght@400;600;800&display=swap');

/* Variables CSS */
:root {
    --font: 'Rethink Sans', sans-serif;
    --white: #f1f1f1;
    --black: #1c1a1a;
    --black2: #0f0e0e;
    --orange: #e89338;



    --maximum-yellow-red: hsl(37, 100%, 68%);
    --royal-blue-dark: hsl(231, 61%, 22%);
    --silver-chalice: hsl(0, 0%, 70%);
    --oxford-blue: hsl(231, 100%, 8%);
    --bittersweet: #ff6661;
    --french-rose: hsl(342, 90%, 61%);
    --orange: #e89338;
    --davys-gray: hsl(180, 3%, 28%);
    --cool-gray: hsl(240, 13%, 62%);
    --platinum: hsl(0, 0%, 92%);
    --white-2: hsl(0, 0%, 98%);
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);
    --rythm: hsl(240, 9%, 53%);
}

*{
margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font);
}

.ContenidoH{
    

    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    background-color: var(--black);
}
/* Reset CSS */


/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 80px;
    z-index: 10000;
    background-color: transparent;
    transition: background-color 0.4s;

}


header.scrolled {
  background-color: var(--black); /* Color de fondo al hacer scroll */
}



.logoH {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 1.5em;
    color: var(--white);
}

.nav,
.buttons-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.button-menu {
    display: none;
}

.nav__link {
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
    background-image: linear-gradient(var(--orange), var(--orange));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.4s;
}

.nav__link:hover {
    background-size: 100% 2px;
}

.buttons-group__button {
    text-decoration: none;
    font-size: 1.5em;
    color: var(--white);
}

.button-shop {
    background-color: var(--orange);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

/* Main */
.contentH {
    position: relative;
    top: 80px;
    width: 80%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contentH__text {
    width: 450px;
}

.contentH__text h1 {
    margin-bottom: 50px;
    font-size: 3em;
    color: var(--white);
    font-weight: 400;
    line-height: 1.2;
}

.contentH__text h1 span {
    font-size: 2em;
    color: var(--orange);
    font-weight: bolder;
}

.text__button {
    text-decoration: none;
    color: var(--orange);
    padding: 15px 25px;
    border: 2px solid var(--orange);
    text-transform: uppercase;
    transition: 0.4s;
}

.text__button:hover {
    background-color: var(--orange);
    color: var(--white);
}

.contentH__image {
    display: grid;
    place-items: center;
    width: 500px;
    height: 100%;
}

.contentH__image img {
    width: 500px;
}

/* Box */ 
.box {
    position: absolute;
    top: -50px;
    right: 0;
    width: 700px;
    height: 1500px;
    background-color: var(--black2);
    z-index: -1;
    transform: rotate(45deg);
}

/* cardsH */
.cardsH {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 80px;
    width: 100%;
    gap: 15px;
}

.cardsH__card {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 100%;
    gap: 10px;
}

.cardsH__card i {
    color: var(--orange);
    font-size: 1.5em;
}

.cardsH__card h3 {
    color: var(--white);
    font-size: 1.1em;
}

.cardsH__card p {
    color: var(--white);
    font-size: 1em;
}

/* Redes Sociales */
.rrss {
    position: absolute;
    top: 40%;
    left: 0;
    margin-left: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rrss a {
    font-size: 1.5em;
    color: var(--white);
    text-decoration: none;
    transition: 0.4s;
}

.rrss a:hover {
    color: var(--orange);
}

/* Breakpoints */

/* -- Pantallas Largas -- */
@media screen and (max-width: 1200px) {
    .contentH__text {
        margin-left: 80px;
    }

    .contentH__text h1 {
        font-size: 2.5em;
    }

    .contentH__image img {
        width: 450px;
    }
}

/* -- Laptops -- */
@media screen and (max-width: 992px) {
    .nav {
        display: none;
    }

    .nav.active {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        width: 350px;
        height: 100vh;
        padding-right: 80px;
        background-color: var(--black2);
    }

    .nav.active .nav__link {
        font-size: 1.2em;
    }

    .button-menu {
        display: flex;
    }

    .contentH__text h1 {
        font-size: 2em;
    }

    .contentH__image img {
        width: 400px;
    }
}

/* -- Tablets -- */
@media screen and (max-width: 768px) {
    header {
        padding: 30px 40px;
    }

    .contentH {
        width: 80%;
    }

    .contentH__text {
        margin-left: 40px;
    }

    .contentH__text h1 {
        font-size: 1.5em;
    }

    .contentH__image img {
        width: 300px;
    }

    .cardsH {
        flex-direction: column;
        height: 600px;
        padding: 40px;
    }

    .cardsH__card {
        width: 100%;
    }

    .rrss {
        top: 20%;
        margin-left: 40px;
    }
}

/* -- Celulares -- */
@media screen and (max-width: 400px) {
    header {
        padding: 20px;
    }

    .logoH {
        font-size: 1.2em;
    }

    .nav.active {
        width: 100%;
    }

    .buttons-group__button {
        font-size: 1.2em;
    }

    .contentH {
        flex-direction: column-reverse;
        width: 100%;
        height: 600px;
        padding: 0px;
        top: 0px;
    }

    .contentH__text {
        width: 200px;
        text-align: center;
        margin-left: 0px;
    }

    .contentH__text h1 {
        font-size: 1.2em;
    }

    .contentH__image {
        height: 300px;
    }

    .contentH__image img {
        width: 270px;
    }

    .cardsH {
        display: none;
    }

    .rrss {
        top: 40%;
        margin-left: 20px;
    }

    .rrss a {
        font-size: 1.2em;
    }
}


/* Seccion servicios*/

.containerS{
  min-height: 100vh;
  width: 100%;
  background-color: var(--black);
  margin-bottom: 200px;
}

.service-wrapper{
  padding:5% 8% ;
}

.service{
  display: flex;
  flex-direction: column;
  align-items: center;
}
h1{
  color:var(--white);
  font-size: 3rem;
  letter-spacing: 1px;
}


.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card{
  height:350px ;
  width: 420px;
  background-color:var(--black2) ;
  padding: 3% 8%;border-radius: 8px;
  transition: 0.6s ;
}

.card i{
  color:var(--orange);
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 2.5rem;
}
.card h2{
  color: #fff;
  font-size: 20px;
  margin: 10px 0;
  font-weight: 500;
}

.card p{
  color: var(--white);
  text-align:left;
  width: 100%;
  margin: 20px 0;
  
}

.card:hover{
background-image: linear-gradient(90deg,#d40442,#f35500);
transform: translateY(-8px);
}

.card:hover i{
  color: #fff;
}

@media(max-width:1200px){
  .cards{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:900px){
  .cards{
      display: grid;
      grid-template-columns: repeat(1, 1fr);
  }
  h1{
      font-size: 2.5rem;
  }
}

@media(max-width:768px){
 
  h1{
      font-size: 2rem;
  }
  p{
     
      width: 90%;
  }
}

@media(max-width){
  .card{
      height: 280px;
      width: 320px;
  }
  .card i{
      
      margin-top: 20px;
  }
  h1{
      margin-bottom: 12px;
      font-size: 1.5rem;
  }

  p{
      width: 100%;
  }
}

/* Termino seccion de servicios*/



/* Seccion testimonios*/

#testimonials{
  margin-bottom: 200px;
  font-family: poppins;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;

}

.testimonial-heading{
  letter-spacing: 1px;
  margin: 30px 0px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonial-heading h1{
  font-size: 2.2rem;
  font-weight: 500;
  background-color: #202020;
  color: var(--orange); 
  padding: 10px 20px;
}

.testimonial-heading span{
  font-size: 1.3rem;
  color: #252525;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;

}

.testimonial-box-container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.testimonial-box{
  width: 600px;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 20px;
  margin: 15px;
  cursor: pointer;
}

.profile-img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

.profile-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

}

.profile{
  display: flex;
  align-items: center;
}

.name-user{
  display: flex;
  flex-direction: column;
}
.name-user strong{
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.name-user span{
  color: #979797;
  font-size: 0.8rem;


}

.reviews{
  color: #f9d71c;
}

.box-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}


.client-comment p{
  font-size: 0.9rem;
  color: #4b4b4b;

}

.testimonial-box:hover{
  transform: translateY(-10px);
  transition: all ease 0.3s;
}

@media(max-width:1060px){
  .testimonial-box{
      width: 45%;
      padding: 10px;
  }
}

@media(max-width:790px){
  .testimonial-box{
      width: 100%;
  }
  .testimonial-heading h1{
      font-size: 1.4rem;
  }
}

@media(max-width:340px){
  .box-top{
      flex-wrap: wrap;
      margin-bottom: 10px;
  }
  .reviews{
      margin-top: 10px;
  }

}

::selection{
  color: #fff;
  background-color:#252525 ;
}



/* Final seccion de testimonios*/



/* Seccion modal*/



/* Final seccion modal*/






/* Seccion Blo*/


#blog{
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
.blog-heading{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.blog-heading span{
  color: var(--orange);
}

.blog-heading h3{
  font-size: 2.4rem;
  color: #2b2b2b;
  font-weight: 600;

}

.blog-container{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
  flex-wrap: wrap
}

.blog-box{
  height: auto;
  width: 380px;
  background-color: #fff;
  border: 1px solid #ececec;
  margin: 20px;
}

.blog-img{
  width: 100%;
  height: auto;
}

.blog-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-text{
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.blog-text span{
  color: var(--orange);
  font-size: 0.9rem;
}

.blog-title .blog-text{
  font-size: 1.3rem;
  font-weight: 500;
  color: #272727;

}

.blog-text .blog-title:hover{
  color: #f33c3c;
  transition: all ease 0.3s;
}
.blog-text p{
  color: #9b9b9b;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 20px 0px;

}
.blog-text a{
  color: #0f0f0f;

  
}

.blog-text a:hover{
  color: #f33c3c;
  transition: all ease 0.3s;
}


@media(max-width:1250px){
  .blog-box{
      width: 300px;
  }
}

@media(max-width:1100px){
  .blog-box{
      width: 70%;
  }
}

@media(max-width:550px){
  .blog-box{
      margin: 20px 10px;
      width: 100%;
  }
  #blog{
      padding: 20px;
  }
}

/* Termino seccion blog*/



/* Inicio acerca de */

.row{
  margin-left: 100px;
  margin-bottom: 100px;
  width: 80%;
  max-width: 1170px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  overflow-x: hidden;
  padding: 5rem 0;
}

.row .imgWrapper{
  overflow: hidden;
}

.row .imgWrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.row .imgWrapper:hover img{
  transform: scale(1.25);
}

.row .contentWrapper{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
}

.row .contentWrapper span.textWrapper{
  display: block;
  font-size: 20px;
  text-transform: capitalize;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.row .contentWrapper span.textWrapper span{
  display: inline-block;
  background:var(--orange);
  width: 70px;
  height: 5px;
}

.row .contentWrapper h2{
  font-size: 40px;
  font-weight: 700;
  color: var(--orange);
  padding-bottom: 20px;
}


.row .contentWrapper p{
  font-size: 16px;
  line-height: 25px;
  padding-bottom: 25px;
}

.row .contentWrapper a{
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 15px 40px;
  letter-spacing: 1px;
  user-select: none;
}


@media (max-width: 991px){
  .row{
      grid-template-columns: 1fr;
      grid-gap: 50px;
  }
  
.row .contentWrapper{
  padding-left: 0;
}

}

@media(max-width: 768px){
  .row{
      width: 90%;
  }
  .row .contentWrapper h2{
      font-size: 30px;
      padding-bottom: 20px;
  }
  .row .contentWrapper p{
      line-height: 24px;
  }
}

@media(max-width: 575px){
  
.row .contentWrapper span.textWrapper{
  font-size: 18px;
}
.row .contentWrapper h2{
  font-size: 25px;
}
.row .contentWrapper p{
  font-size: 15px;
  line-height: 22px;
}
.row .contentWrapper a{
  font-size: 15px;
  padding: 10px  20px;
}
}

/* Termino acerca de*/




/* Inicio seccion equipo*/

.wrapperP .title{
  text-align: center;
  
}

.title h4{
  display: inline-block;
  padding: 20px;
  color: var(--orange);
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 1.2px;
  word-spacing: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  text-transform: uppercase;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  word-wrap: break-word;
}

.wrapperP .card_Container{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 400px;
}

.card_Container .cardp{
  position: relative;
  width: 300px;
  height: 400px;
  margin: 20px;
  overflow: hidden;
  box-shadow: 0 30px 30px -20px rgba(0, 0, 0, 1),
              inset 0 0 0 1000px rgba(67, 52, 109, .6);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cardp .imbBx, .imbBx img{
  width: 100%;
  height: 100%;
}

.cardp .contentp{
  position: absolute;
  bottom: -160px;
  width: 100%;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  backdrop-filter: blur(15px);
  box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: bottom 0.5s;
  transition-delay: 0.65s;
}

.cardp:hover .contentp{
  bottom: 0;
  transition-delay: 0s;
}

.contentp .contentBx h3{
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin: 20px 0 15px;
  line-height: 1.1em;
  transition: 0.5s;
  transition-delay: 0.6s;
  opacity: 0;
  transform: translateY(-20px);
}

.cardp:hover .contentp .contentBx h3{
  opacity: 1;
  transform: translateY(0);
}

.contentp .contentBx h3 span{
  font-size: 12px;
  font-weight: 300;
  text-transform: initial;
}

.contentp .sci{
  position: relative;
  bottom: 10px;
  display: flex;
}

.contentp .sci li{
  list-style: none;
  margin: 0 10px;
  transform: translateY(40px);
  transition: 0.5s;
  opacity: 0;
  transition-delay: calc(0.2s * var(--i));
}

.cardp:hover .contentz .sci li{
  transform: translateY(0);
  opacity: 1;
}

.contentp .sci li a{
  color: #fff;
  font-size: 24px;
}

/* Termino seccion equipo*/


/* Seccion destacados*/

@import url('https://fonts.googleapis.com/css2?family=Karantina:wght@300;400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.contentC{
    overflow: hidden;
   margin-bottom: 150px;
    padding: auto;
    min-height: 100vh;
    margin: 0;
    font-family: Poppins;
    color: #1E1E1E;
    background-color: #8b8a8a;
    background-image:
    repeating-linear-gradient(
        to right, transparent 0 150px, #0001 150px 151px
    ),
    repeating-linear-gradient(
        to bottom, transparent 0 150px, #0001 150px 151px
    ),
    linear-gradient(to right, #CDCDCDcc, #CDCDCDcc),
    url(image/bg.jpg);
}

.header{
  margin-bottom: 100px;
    width: min(1200px, 90vw);
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    height: 0px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.header h1{
    font-family: "Karantina", system-ui;
    font-size: 5rem;
    line-height: 0.8em;
}
.header .author{
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header h3{
    font-family: "Karantina", system-ui;
    font-size: 5vw;
}
.header .authorC div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .authorC div p:nth-child(2){
    font-weight: 500;
}

.header .authorC img{
    width: 250px;
}
.banner{
    margin-top: -50px;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.product{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 170px;
    z-index: 2;
    width: 500px;
    transition: 0.7s;
}
.product .soda{
    position: absolute;
    bottom: 0;
    left: calc(50%);
    transform: translateX(-50%);
}
.soda{
    --left: 0px;
    background: 
        var(--url) var(--left),
        url(image/Mockup2P.png) 0 0;
    background-size: auto 100%;
    width: 280px;
    aspect-ratio: 2 / 4;
    background-blend-mode: multiply;
    transition: .8s;
    mask-image: url(image/Mockup2P.png);
    mask-size: auto 100%;
}
.soda:nth-child(2){
    opacity: 0;
}
.product:hover{
    bottom: 300px;
}
.product:hover .soda:nth-child(2){
    opacity: 1;
    --left: 500px;
}
.product:hover .soda:nth-child(1){
    opacity: 0;
    --left: 500px;
}

.rock{
    position: absolute;
    inset: 0 0 0 0;
    width: 100%;
    pointer-events: none;
}
.rock img:nth-child(1){
    position: absolute;
    height: 170px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    transition: 0.7s;
    z-index: 1;
}
.rock img:nth-child(2){
    position: absolute;
    height: 50%;
    left: 0;
    bottom: 0;
    transition: 0.7s;
}
.rock img:nth-child(3){
    position: absolute;
    height: 100%;
    right: 0;
    bottom: -100px;
    rotate: -25deg;
    transition: 0.7s;
}
.banner:has(.product:hover) .rock img:nth-child(1){
    transform: translateX(-50%) translateY(50px);
}
.banner:has(.product:hover) .rock img:nth-child(2){
    transform: translateX(-100px) translateY(100px);
}
.banner:has(.product:hover) .rock img:nth-child(3){
    transform: translateX(100px) translateY(100px);
}
@media screen and (max-width: 1023px) {
    
    .soda{
        width: 400px;
    }
}
@media screen and (max-width: 767px) {
    .soda{
        width: 200px;
    }
    .header img{
        display: none;
    }
    .header h1{
        font-size: 6vw;
    }
    .header .authorC{
        width: 100%;
    }

}

/* Termino destacados*/


/* Footer/ pie de pagina*/



@import url('https://fonts.googleapis.com/css? family=Poppins:200,300,400,500,600,700,800,900& display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}




footer
{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 100vh;
    position: relative;
    width: 100%;
    background: var(--orange);
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
footer .social_icon,
footer .menu
{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}
footer .social_icon li,
footer .menu li

{
    list-style: none;
}
footer .social_icon li a
{
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}
footer .social_icon li a:hover
{
    transform: translateY(-10px);
}

footer .menu li a
{
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    opacity: 0.75;
}
footer .menu li a:hover
{
    opacity: 1;
}
footer p
{
    color: #fff;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
}
footer .wave
{
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(image/wave.png);
    background-size: 1000px 100px;
}

footer .wave#wave1
{
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}


footer .wave#wave2
{
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
}

footer .wave#wave3
{
    z-index: 1000;
    opacity: 0.2;
    bottom: 10px;
    animation: animateWave 3s linear infinite;
}


footer .wave#wave4
{
    z-index: 999;
    opacity: 0.7;
    bottom: 15px;
    animation: animateWave_02 3s linear infinite;
}

@keyframes animateWave
{
    0%
    {
        background-position-x: 1000px;
    }
    100%
    {
        background-position-x: 0px;
    }
}
@keyframes animateWave_02
{
    0%
    {
        background-position-x: 0px;
    }
    100%
    {
        background-position-x: 1000px;
    }
}


/*-----------------------------------*\ 
 * #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 5;
  width: 50px;
  height: 50px;
  background: linear-gradient(-45deg, var(--maximum-yellow-red), var(--french-rose));
  box-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.25);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}



/*Carrusel principal (CP)*/

.wrapper {
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Evitar scroll horizontal */
}

.containerCP {
  margin: auto;
  height: 400px; /* Mantener altura original */
  width: 100%; /* Asegurarse de que ocupe el 100% del ancho */
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto; /* Permitir desplazamiento horizontal si es necesario */
}

input[type="radio"] {
  display: none;
}

.card3 {
  flex: 0 0 auto; /* Mantener el tamaño original de las tarjetas */
  width: 100px; /* Ancho original */
  border-radius: 2rem; /* Mantener bordes redondeados */
  cursor: pointer;
  overflow: hidden;
  margin: 0 10px; /* Espaciado entre tarjetas */
  display: flex;
  align-items: flex-end;
  transition: .6s cubic-bezier(.28,-0.03,0,.99);
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
}

.card3 > .row3 > .icon3 {
  background: #223;
  color: white;
  border-radius: 50%;
  width: 50px; /* Tamaño original del icono */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}

.card3 > .row3 > .description {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  height: 80px; /* Altura original */
  width: 520px; /* Ancho original */
  opacity: 0;
  transform: translateY(30px);
  transition: all .3s ease;
}

.description p {
  color: #b0b0ba;
  padding-top: 5px;
}

.description h4 {
  text-transform: uppercase;
}

input[type="radio"]:checked + label {
  width: 600px; /* Ancho expandido al seleccionar */
}

input[type="radio"]:checked + label .description {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.card3[for="c1"] {
  background-image: url('image/ImgP1.webp');
}

.card3[for="c2"] {
  background-image: url('image/imgP2.avif');
}

.card3[for="c3"] {
  background-image: url('image/imgP3.avif');
}

.card3[for="c4"] {
  background-image: url('image/imgP4.jpg');
}

/* Media Queries para hacer el carrusel responsive */
@media (max-width: 1024px) {
  .card3 {
    width: 150px; /* Aumentar el ancho en pantallas medianas */
    margin: 0 5px; /* Reducir el margen */
  }

  .description {
    width: 200px; /* Ajustar el ancho de la descripción */
  }
}

@media (max-width: 768px) {
  .containerCP {
    height: auto; /* Permitir que el contenedor se ajuste a su contenido */
  }

  .card3 {
    width: 120px; /* Ajustar el ancho en pantallas más pequeñas */
  }

  .description {
    height: 60px; /* Reducir la altura de la descripción */
    width: 180px; /* Ajustar el ancho de la descripción */
  }
}

@media (max-width: 480px) {
  .wrapper {
    padding: 10px; /* Añadir padding para móviles */
  }

  .containerCP {
    overflow-x: scroll; /* Permitir desplazamiento horizontal en móviles */
  }

  .card3 {
    width: 90%; /* Hacer las tarjetas más anchas en móviles */
    margin: 0 auto; /* Centrar las tarjetas */
  }

  .description {
    height: 50px; /* Ajustar la altura de la descripción */
    width: 100%; /* Hacer que ocu