* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif;
    position: relative;
}

.header {
    min-height: 100vh;
    width: 100%;                      /*rgba(4,9,30,0.7),rgba(4,9,30,0.7)*/
    background-image: linear-gradient(rgba(4,9,30,0.3),rgba(4,9,30,0.3)),url(../img/programando10blur.png); /* Aqui configurar para que en vez de negro se vea con blur o algo asi*/ 
    background-color: rgba(255, 255, 255, 0.5);  
    background-position: center;
    background-size: cover;
    position: relative;

}

.logo{
  width: 43px;
  height: 43px;
}

:root {
  --color: linear-gradient(146deg, rgba(32,41,54,1) 23%, rgb(44, 110, 149) 96%);
}


/* ----- MENU -----*/
nav {
    display: flex;
    padding: 3% 10%; /*El primero baja el nav y el segundo lo contiene mas chiquito */ 
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 150px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a { /* change color, size letter*/ 
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.nav-links ul li::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  position: absolute;
  top: 100%;
  left: 0%;
  
    /*
    display: block;
    margin: auto;*/
}

.nav-links ul li:hover::after {
    width: 100%;
}

h1 {
  font-size: 34px;
}



.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    font-size: 44px;
    font-weight: 100;
}
.text-box p {
    margin: 10px 0 40px;
    font-size: 44px;
    color: #fff;
    font-weight: 100;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}


nav .fa-solid {
    display: none;
   /* position: absolute;
    top: 50px;
    right: 50px;
    width: 35px;*/
}


@media (max-width: 1000px){

    html, body {overflow-x: hidden;}
    html, .elite-body {
                overflow-x: hidden;
            }
            html, .glass-body {
                overflow-x: hidden;
            }
            html, .ethereal-body {
                overflow-x: hidden;
            }

    .nav-links ul li{
      display: block;
    }

    .nav-links{
      position: absolute;
      background-image: linear-gradient(146deg, rgba(32,41,54,1) 23%, #2c6e95 96%);
      height: 100vh;
      width: 220px;
      top: 0;
      right: -220px;
      text-align: left;
      z-index: 2; /*sobrepone sobre otras cosas*/
      transition: .4s;
    }

    nav .fa-solid {
      display: block;
      color: #fff;
      margin: 10px;
      font-size: 22px;
      cursor: pointer;
    }

    .nav-links ul{
      padding: 30px;
    }

    .service .row {
      flex-flow: column-reverse;
    }

    .service .row:nth-child(even) {
      flex-flow: column;
    }

    .service .row .image img {
      width: 100vw;
    }

    .service .row .content {
      padding: 0;
    }
}

/* ---------------- course -------------*/
.course{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 110px;
}

h2{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.course-col{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 15px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}

h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 800px){
    .row{
        flex-direction: column;
    }
}


/*------------card------------------*/

.body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
  background-attachment: fixed;
}

.container {
  position: relative;
  width: 80%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.container .card {
  position: relative;
  width: 300px;
  height: 420px;
  background: #fff;
  margin:20px; /*Separacion cards*/
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.container .card:hover {
  transform: scale(1.20);
}



.container .card .circle {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  clip-path: circle(170px at center 0);
  text-align: center;
}
.container .card .circle h2 {
  color: #fff;
  font-size: 2.5em;
  padding: 30px 0;
}

.container .card .content {
  position: absolute;
  bottom: 10px;
  padding: 20px;
  text-align: center;
}

.container .card .content p {
  color: #000000;
  font-size: 1.2em;
}

.container .card .content a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  margin-top: 20px;
}

.container .card:nth-child(1) .circle, 
.container .card:nth-child(1) .content a {
  background: #193546/*linear-gradient(147deg, #221437 0%, #142937 64%); */
}

.container .card:nth-child(2) .circle, 
.container .card:nth-child(2) .content a {
  background: #db3117 /* linear-gradient(147deg, #1AABB3 0%, #162935 64%); */
}

.container .card:nth-child(3) .circle, 
.container .card:nth-child(3) .content a {
  background:#141836/*linear-gradient(147deg, #FF817A 0%, #FFC37A 64%); */
}






/*--------------footer - Minimalista ---------------*/
footer {
  width: 100%;
  bottom: 0;
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
  color: #d1d5db;
  padding: 70px 0 30px;
  font-size: 14px;
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rowFooter{
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 50px;
}

.rowFooter p{
  color: #d1d5db;
  line-height: 1.8;
  margin: 0;
}

.colFooter{
  display: flex;
  flex-direction: column;
}

.logoFooter{
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  border-radius: 12px;
}

.colFooter h3{
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.email-id {
  color: #4ade80;
  margin: 16px 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.email-id:hover {
  color: #22c55e;
}

.colFooter h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-top: 12px;
}

.colFooter ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.colFooter ul li {
  list-style: none;
  margin-bottom: 14px;
}

.colFooter ul li a {
  text-decoration: none;
  color: #d1d5db;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
}

.colFooter ul li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.colFooter form {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 28px;
  transition: all 0.3s ease;
}

.colFooter form:focus-within {
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.colFooter form .fa-regular {
  font-size: 18px;
  color: #9ca3af;
  flex-shrink: 0;
}

.colFooter form input {
  width: 100%;
  background: transparent;
  color: #ffffff;
  border: 0;
  outline: none;
  font-size: 14px;
  font-family: inherit;
}

.colFooter form input::placeholder {
  color: #6b7280;
}

.colFooter form button{
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.colFooter form button:hover {
  transform: translateX(3px);
}

.colFooter form button .fa-solid {
  font-size: 16px;
  color: #4ade80;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-icons .fa-brands {
  text-decoration: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icons .fa-brands:hover {
  background: rgba(74, 222, 128, 0.15);
  border-color: rgba(74, 222, 128, 0.4);
  transform: translateY(-3px);
  color: #4ade80;
}

footer hr{
  max-width: 1200px;
  width: 90%;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto 30px;
}

.copyright {
  color: #9ca3af;
  text-align: center;
  font-size: 13px;
  padding: 0 20px;
}

/* Eliminar underline animation - ya no se usa */
.underline {
  display: none;
}

.underline span{
  display: none;
}

@media (max-width: 900px) {
  footer{
    bottom: unset;
    padding: 50px 0 30px;
  }

  .rowFooter{
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .colFooter{
    text-align: left;
  }

  .logoFooter{
    margin: 0 0 20px 0;
  }

  .social-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 40px 0 25px;
  }

  .rowFooter {
    gap: 35px;
  }

  .colFooter h3 {
    font-size: 14px;
    margin-bottom: 18px;
  }
}














.blog-slider {
    width: 90%;
    position: absolute;
    max-width: 800px;
    margin: auto;
    background: #fff;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
    padding: 25px;
    border-radius: 25px;
    height: 300px;
    transition: all 0.3s;

    top:50%; /*este controla la altura*/
    left: 50%;
    transform: translate(-50%,-50%);
 }
  @media screen and (max-width: 992px) {
    .blog-slider {
      max-width: 680px;
      height: 400px;
   }
 }
  @media screen and (max-width: 768px) {
    .blog-slider {
      top:40%;
      min-height: 500px;
      height: auto;
      margin: 140px auto; 
   }
 }

  @media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider {
      height: 350px;
   }
 }
  .blog-slider__item {
    display: flex;
    align-items: center;
 }
  @media screen and (max-width: 768px) {
    .blog-slider__item {
      flex-direction: column;
   }
 }
  .blog-slider__item.swiper-slide-active .blog-slider__img img {
    opacity: 1;
    transition-delay: 0.3s;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > * {
    opacity: 1;
    transform: none;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
    transition-delay: 0.3s;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
    transition-delay: 0.4s;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
    transition-delay: 0.5s;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
    transition-delay: 0.6s;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
    transition-delay: 0.7s;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
    transition-delay: 0.8s;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
    transition-delay: 0.9s;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
    transition-delay: 1s;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
    transition-delay: 1.1s;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
    transition-delay: 1.2s;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
    transition-delay: 1.3s;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
    transition-delay: 1.4s;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
    transition-delay: 1.5s;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
    transition-delay: 1.6s;
 }
  .blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
    transition-delay: 1.7s;
 }
  .blog-slider__img {
    width: 300px;
    flex-shrink: 0;
    height: 300px;
    background-image: linear-gradient(146deg, #202936 23%, rgba(44,110,149,1) 96%);
    box-shadow: 4px 13px 30px 1px #2c383833;
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
 }
  .blog-slider__img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0.8;
 }
  .blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    border-radius: 20px;
    transition: all 0.3s;
 }
  @media screen and (max-width: 768px) {
    .blog-slider__img {
      transform: translateY(-50%);
      width: 90%;
      height: 220px;
   }
 }
  @media screen and (max-width: 576px) { /*IMAGENES del card*/
    .blog-slider__img {
      width: 95%;
   }
 }
  @media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider__img {
      height: 270px;
   }
 }
  .blog-slider__content {
    padding-right: 25px;
 }
  @media screen and (max-width: 768px) { /*letras del card*/
    .blog-slider__content {
      margin-top: -50px;
      text-align: center;
      padding: 0 30px;
   }
 }
  @media screen and (max-width: 576px) {
    .blog-slider__content {
      padding: 0;
   }
 }
  .blog-slider__content > * {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s;
 }
  .blog-slider__code {
    color: #7b7992;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
 }
  .blog-slider__title {
    font-size: 24px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 20px;
 }
  .blog-slider__text {
    color: #4e4a67;
    margin-bottom: 30px;
    line-height: 1.5em;
 }

 @media screen and (min-width: 700px) {
  .blog-slider__title {
    font-size: 34px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 20px;
 }
 .blog-slider__text {
  color: #4e4a67;
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.5em;
}
}
  .blog-slider__button {
    display: inline-flex;
    background-image: linear-gradient(146deg, rgba(32,41,54,1) 23%, #2c6e95 96%);
    padding: 15px 35px;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0px 14px 80px #2c6e95bb;
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
 }
  @media screen and (max-width: 576px) {
    .blog-slider__button {
      width: 100%;
   }
 }
  .blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
 }
  .blog-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px !important;
    text-align: center;
    left: auto !important;
    top: 50%;
    bottom: auto !important;
    transform: translateY(-50%);
 }
  @media screen and (max-width: 768px) {
    .blog-slider__pagination {
      transform: translateX(-50%);
      left: 50% !important;
      top: 175px;
      width: 100% !important;
      display: flex;
      justify-content: center;
      align-items: center;
      
   }
 }
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 0;
 }
  @media screen and (max-width: 768px) {
    .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
      margin: 0 5px;
   }
 }
  .blog-slider__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: #062744;
    opacity: 0.2;
    transition: all 0.3s;
 }
  .blog-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #2c6e95;
    height: 30px;
    box-shadow: 0px 0px 20px #2c6e95;
 }
  @media screen and (max-width: 768px) {
    .blog-slider__pagination .swiper-pagination-bullet-active {
      height: 11px;
      width: 30px;
   }
 }

 .service {
  width: 100vm;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
 }

 .service .row {
  margin: 1rem 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
 }

 .service .row .image img{
  width: 50vw;
  height: 55vh;
 }

 .service .row .content {
  text-align: left;
  padding: 0 3rem;
 }

 .service .row .content h3{
  text-align: left;
  font-size: 3rem;
  color: var(--color);
 }

 .service .row .contentDown {
  text-align: right;
  padding: 0 3rem;
 }

 .service .row .contentDown h3{
  text-align: right;
  font-size: 3rem;
  color: var(--color);
 }

 .service .row .content p{
  text-align: justify;
  font-size: 1.5rem;
  color: #333;
  padding: 1rem 0;
 }

 .service .row .contentDown p{
  text-align: justify;
  font-size: 1.5rem;
  color: #333;
  padding: 1rem 0;
 }

 .btn {
  outline: none;
  border: none;
  border-radius: 5rem;
  background: var(--color);
  color: #fff;
  cursor: pointer;
  height: 3.5rem;
  width: 15rem;
  font-size: 1.7rem;
  box-shadow: 0 .2rem .5rem #0000004d;
 }
 
 .btn:hover {
  letter-spacing: .1rem;
 }









/* ----- QUE HACEMOS -----*/
.headerQueHacemos {
  min-height: 50vh;
  width: 100%;                      /*rgba(4,9,30,0.7),rgba(4,9,30,0.7)*/
  background-image: linear-gradient(rgba(4,9,30,0.3),rgba(4,9,30,0.3)),url(../img/programando10blur.png); /* Aqui configurar para que en vez de negro se vea con blur o algo asi*/ 
  background-color: rgba(255, 255, 255, 0.5);  
  background-position: center;
  background-size: cover;
  position: relative;
  text-align: center;
  color: #fff;
}

.headerQueHacemos h2{
  font-size: 48px;
  margin-top: 100px;
}

.containerQueHacemos{
  padding-left: 20px;
  padding-right: 20px;
  width: 70%;
  margin: auto;
  text-align: left;
  padding-top: 110px;
  padding-bottom: 60px;
  text-align: justify;
}

.containerQueHacemos h2{
  font-size: 48px;
  font-weight: 900;
  padding: 10px;
  padding-bottom: 30px;
}

.containerQueHacemos p{
  font-size: 21px;
  font-weight: 400;
  padding: 10px;
  color: #333;
}


.containerCenter{
  padding-left: 20px;
  padding-right: 20px;
  width: 70%;
  margin: auto;
  text-align: center;
  padding-top: 90px;
}
.containerCenter h2{
  font-size: 48px;
  font-weight: 900;
  padding: 10px;
  padding-bottom: 30px;
}


@media screen and (max-width: 900px) {

  .headerQueHacemos h2{
    font-size: 38px;
    margin-top: 100px;
  }
  .containerQueHacemos{
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    margin: auto;
    text-align: left;
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .containerQueHacemos h2{
    font-size: 32px;
    font-weight: 900;
    padding: 10px;
    padding-bottom: 30px;
  }
  
  .containerQueHacemos p{
    font-size: 18px;
    font-weight: 400;
    padding: 10px;
    color: #333;
  }
}

/* ----- QUE HACEMOS ----- CARDS -----*/

.containerCards{
  width: 100%;
  height: 100%;
  padding: 0 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.padding {
  padding-bottom: 30px;
}

.containerCards h1{
  text-align: center;
  padding-top:5%;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}

.containerCards p {
  color: #000000;
}

.containerCards h1::after {
  content: "";
  background: linear-gradient(146deg, rgba(32,41,54,1) 23%, rgba(44,110,149,1) 96%);
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  
}

.rowCards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px,1fr));
  grid-gap: 30px;
  
}

.serviceCards {
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.5s, background 0.5s;
}

.serviceCards p{
  text-align: justify;
}

.serviceCards i{
  font-size: 40px;
  margin-bottom: 10px;
  color: linear-gradient(146deg, rgba(32,41,54,1) 23%, rgba(44,110,149,1) 96%);
}

.serviceCards h2{
  font-weight: 600;
  margin-bottom: 8px;
}

.serviceCards:hover{
  background: linear-gradient(146deg, rgba(32,41,54,1) 23%, rgba(44,110,149,1) 96%);
  color: #fff;
  transform: scale(1.05);
  
}

.serviceCards:hover i{
  color: #fff;
}

.serviceCards:hover p{
  color: #fff;
}


/* ----- QUIENES SOMOS-----*/

.about-section{
  background: url(../img/together.PNG) no-repeat left;
  background-size: 55%;
  background-color: #fdfdfd;
  overflow: hidden;
  padding: 100px 0;
  margin-bottom: 80px;
  margin-top: 80px;
  
}

.inner-container {
  width: 55%;
  float: right;
  background-color: #fdfdfd;
  padding: 150px;
  box-shadow: 0px 0px 19px 5px rgb(0, 0, 0, 0.19);
}

.inner-container h2 {
  margin-bottom: 30px;
  font-size: 34px;
  font-weight: 900;
}

.texto-about {
  font-size: 18px;
  color: #545454;
  line-height: 30px;
  text-align: justify;
  margin-bottom: 40px;
}

@media screen and (max-width:1200px){
  .inner-container{
    padding: 80px;
  }
}

@media screen and (max-width:1000px){
  .about-section{
    background-size: 100%;
    padding: 100px 40px;
  }
  .inner-container{
    width: 100%;
  }
}

@media screen and (max-width:600px){
  .about-section{
    padding: 0;
  }
  .inner-container{
    padding: 60px;
  }
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 100px auto;
}

.container-timeline{
  padding: 10px 50px;
  position: relative;
  width: 50%;
  animation: movedown 1s linear forwards;
  opacity: 0;
}

@keyframes movedown {
  0%{
    opacity: 1;
    transform: translateY(-30px);
  }
  100%{
    opacity: 1;
    transform: translateY(0px);
  }
}

.text-timeline {
  padding: 20px 30px;
  background: linear-gradient(146deg, rgba(32,41,54,1) 23%, rgba(44,110,149,1) 96%);
  position: relative;
  border-radius: 6px;
  font-size: 15px;
}

.text-timeline p {
  color: #ffffff;
}
.text-timeline h2 {
  color: #ffffff;
}

.text-timeline small {
  color: #ffffff;
}

.left-timeline{
  left: 0;
}

.right-timeline{
left: 50%;
}

.container-timeline img{
position: absolute;
width: 40px;
border-radius: 50%;
right: -20px;
top: 32px;
z-index: 10;
}

.right-timeline img{
  left: -20px;
}

.timeline::after {
content: '';
position: absolute;
width: 6px;
height: 100%;
background: linear-gradient(146deg, #202936 23%, rgba(44,110,149,1) 96%);
top: 0;
left: 50%;
margin-left: -3px;
z-index: -1;
animation: moveline 3s linear forwards;
}

@keyframes moveline {
  0%{
    height: 0;
  }

  100%{
    height: 100%;
  }
}

.text-timeline h2{
  font-weight: 600;
}

.text-timeline small{
  display: inline-block;
  margin-bottom: 15px;
}

.left-container-arrow {
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #204b64;
  right: -15px;
}

.right-container-arrow {
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid #202936;
  left: -15px;
}


@media screen and (max-width: 600px){
  
  .timeline{
    margin: 50px auto;
  }

  .timeline::after{
    left: 31px;
  }

  .container-timeline{ /*container*/
    width: 100%;
    padding-left: 80px;
    padding-right: 25px;
  }

  .text-timeline { /*text-box*/
    font-size: 13px;
  }

  .text-timeline small{/*text-box*/
    margin-bottom: 10px;
  }

  .right-timeline {
    left: 0;
  }

  .left-timeline img, .right-timeline img {
    left: 10px;
  }

  .left-container-arrow, .right-container-arrow{
    border-right: 15px solid #202936;
    border-left: 0;
    left: -15px;
  }
}

/* - - - - -Contact - - - - - */

.container-contact{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 100px;
}
/*
.container-contact:after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -1;
}*/

.contact-box{
  max-width: 850px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #fff;
  box-shadow: 15px 15px 19px 0px rgba(156, 109, 6, 0.973);
}

.left{
  height: 100%;
  background: url("../img/contactos.PNG") no-repeat center;
  background-size: cover;
}

.right{
  padding: 25px 40px;
}

.titulo-contacto{
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.titulo-contacto:after{
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 4px;
  width: 50px;
  border-radius: 2px;
  background-color: rgba(32,41,54,1);
}

form{
  display: block;
}

.field{
  width: 100%;
  padding: 0.5rem 1rem;
  outline: none;
  border: 2px solid rgba(0, 0, 0, 0);
  background-color: rgba(230, 230, 230, 0.6);
  font-size: 1.1rem;
  margin-bottom: 22px;
  transition: .3s;
  color: #000;
}

.field:hover{
  background-color: rgba(0, 0, 0, 0.1);
}

.field:focus{
  background-color: #fff;
  border: 2px solid #202936;
}

.area{
  min-height: 150px;
}

.btn-contacto{
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  background-color: #202936;
  cursor: pointer;
  outline: none;
  border: none;
  color: #fff;
  transition: .3s;
}

.btn-contacto:hover{
  background-color: #204b64;
}

@media screen and (max-width:880px){

  .contact-box{
    grid-template-columns: 1fr;
  }

  .left{
    height: 200px;
  }
}

@media screen and (max-width:750px){

  .container-contact{
    padding: 20px 30px;
  }
}



/* - - - - -error 404 - - - - - */


.cuerpo404{
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-image: linear-gradient(125deg, #6a89cc,#b8e994);
}

.container404{
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #343434;
}

.container404 p{
  font-size: 22px;
  color: #000;
}

.container404 h1{
  font-size: 160px;
  margin: 0;
  font-weight: 900;
  letter-spacing: 20px;
  background: url("../img/fondo.PNG") center no-repeat;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.container404 a{
  text-decoration: none;
  background: linear-gradient(146deg, rgba(32,41,54,1) 23%, #2c6e95 96%);;
  color: #fff;
  padding: 12px 24px;
  display: inline-block;
  border-radius: 25px;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.4s;
}

.container404 a:hover{
  background: #2c6e95;
}


/* - - - - -Pasarela - - - - - */
a{
  color: unset;
  text-decoration: none;
}

.containerPasarela{
  width: 900px;
  max-width: 90vw;
  margin: auto;
  padding-top: 30px;
  text-align: center;
  padding-bottom: 30px;
}

.tituloPasarela{
  font-size: xx-large;
  padding: 20px 0;
}

.listaProductos .item img{
  width: 90%;
  filter: drop-shadow(0 50px 20px #0009);
  padding-bottom: 30px;
}

.listaProductos{
  display: grid;
  grid-template-columns: repeat(1, 1fr); /*4, 1*/
  gap: 20px;
}

.listaProductos .item{
  background-color: #eeeee6;
  padding: 20px;
  border-radius: 20px;
}

.listaProductos .item h2{
  padding-top: 30px;
}

.listaProductos .item .price .prueba{
  letter-spacing: 5px;
  padding-top: 15px;
}




/* - - - - - DETALLES - - - - - */

.detail{
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 50px;
  text-align: left;
}

.detail .image img{
  width: 100%;
  padding-top: 100px;
}

.detail .image{
  position: relative;
}

.detail .image::before{
  position: absolute;
  width: 300px;
  height: 300px;
  content: '';
  background-color: #94817733;
  z-index: -1;
  border-radius: 190px 100px 170px 180px;
  left: calc(50% - 150px);
  top: 50px;
}

.detail .name{
  font-size: xxx-large;
  padding: 40px 0 0 0;
  margin: 0 0 10px 0;
  margin-bottom: 20px;
}

.detail .mensual {
  font-weight: 600;
  font-size: x-large;
  letter-spacing: 0px;
  margin-bottom: 5px;
}

.detail .price{
  font-weight: 500;
  font-size: larger;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.detail .botones{
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.detail .botones button{
  background-color: #eee;
  border: none;
  padding: 15px 20px;
  border-radius: 20px;
  font-size: large;
}

.detail .botones svg{
  width: 15px;
}

.detail .botones span{
  background-color: #555454;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: 20px;
  color: #eee;
}

.detail .botones button:nth-child(1){
  background-color: #2f2f2f;
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px #2f2f2f77;
}

.detail .description{
  font-weight: 300;
  padding-bottom: 70px;
  padding-top: 30px;
}




@media screen and (max-width: 992px) {
  .listaProductos{ 
    grid-template-columns: repeat(1, 1fr); /*3, 1*/
  }
  .detail{
    grid-template-columns: 40% 1fr;
  }
}

@media screen and (max-width: 768px) {
  .listaProductos{ 
    grid-template-columns: repeat(1, 1fr); /*2, 1*/
  }

  .detail{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .detail .img img{
    width: unset;
    height: 40vh;
  }

  .detail .name{
    font-size: x-large;
    margin: 0;
  }

  .detail .botones button{
    font-size: small;
  }

  .detail .botones{
    justify-content: center;
  }
}


/* - - - - - Contacto Rediseñado con Toggle v2 (Efecto Suave) - - - - - */

.container-contact {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
}

.contact-box-toggle {
    width: 100%;
    max-width: 650px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Estilos para los botones de toggle */
.contact-toggle {
    display: flex;
    width: 100%;
}

.toggle-btn {
    flex: 1;
    padding: 18px 10px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #888;
    background-color: #f0f0f0;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border-bottom: 3px solid transparent;
}

.toggle-btn:hover {
    background-color: #e9e9e9;
    color: #333;
}

/* Estilo del botón activo */
.toggle-btn.active {
    color: #fff;
    background: linear-gradient(146deg, rgba(32,41,54,1) 23%, rgba(44,110,149,1) 96%);
    border-bottom: 3px solid #25D366;
}

.toggle-btn i {
    margin-right: 8px;
}

/* Contenedor de paneles para la animación */
.panels-wrapper {
    position: relative;
    /* La altura se ajustará automáticamente por el panel activo */
}

/* NUEVA ANIMACIÓN DE PANELES */
.contact-panel {
    /* Posiciona todos los paneles en el mismo lugar, pero fuera de la vista */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    
    /* Oculta los paneles no activos y prepáralos para la animación */
    opacity: 0;
    transform: translateY(15px); /* Inicia ligeramente abajo */
    pointer-events: none; /* Evita interacción con paneles ocultos */
    
    /* Define la transición suave */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-panel.active {
    /* Devuelve el panel activo a su posición original y lo hace visible */
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    
    /* Importante: 'relative' permite que el panel activo defina la altura del contenedor */
    position: relative; 
}

/* Estilos de contenido (reutilizados) */
.right {
    padding: 30px 40px;
}

.left-whatsapp {
    background-color: #fff;
    color: #333;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.left-whatsapp .titulo-contacto::after {
    background-color: #202936;
}

.whatsapp-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 20px 0;
  color: #555;
}

.whatsapp-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 15px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  background-color: #128C7E;
}

.btn-whatsapp .fa-whatsapp {
  font-size: 1.5rem;
  margin-right: 10px;
}


