* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Raleway', sans-serif;
}

@font-face {
  font-family: 'charlotte';
  src: url('../resources/charlotte.otf') format('opentype'); /* Ruta a la fuente */
  font-weight: normal;
  font-style: normal;
}


body {
  line-height: 1.5;
  color: #333;
  overflow-x: hidden;
}
:root {
  --border-layout: 1px;
}

/* Header */
.header {
  background: #9e4cfb;
  color: white;
  padding: 0 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
.container .logo{
    font-family: 'charlotte';
    font-size: 2rem;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    z-index: 1;
}
.container .logo img{
  margin: 5% 0px;
}
.logo h1 {
  font-size: 24px;
  margin-bottom: 5px;
}
.logo p {
  font-size: 12px;
  margin-top: -5px;
}
.navbar ul {
  list-style: none;
  display: flex;
}
.navbar li {
  margin: 0 15px;
}
.navbar a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}
.navbar a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* Hero Section */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* Agregamos una capa de opacidad a toda la imagen del slider */
.swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Asegurar que el texto esté por encima de la opacidad */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200vh;
  width:60%;
  padding: 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 2px black;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 2px black;
}

.btn {
  display: inline-block;
  background: #ff9f1c;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background 0.3s ease-in-out;
}

.btn:hover {
  background: #ff6a00;
}

.swiper-pagination-bullet {
  background-color: white;
  opacity: 0.8;
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
}
.btn {
  display: inline-block;
  background: #b7d20d;
  color: black;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
}
.btn:hover {
  background: #c5ff00;
}

/* Welcome Section */
.welcome {
  background: #e6a328;
  padding: 50px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.welcome h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.welcome h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: white;
  width: 70%;
  line-height: 1.5;
}
.welcome p {
  font-size: 18px;
  max-width: 600px;
  margin: auto;
  color: white;
}
.welcome .somos {
  font-size: 40px;
}

/* Present Section */
.present {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2% 0;
}
.present .present1a {
  width: 90%;
  min-height: 390px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
.present .present1a.alone {
  margin: 2%;
}
.present .present1a p {
  font-size: 1.5rem;
  text-align: left;
  width: 55%;
}
.present h1 {
  margin: 2% 0;
  font-size: 2.5rem;
  width: 60%;
  text-align: center;
}

/* Efecto Wipe para la sección Present con clase "wipes" */
.present.wipes .wipe-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}
.present.wipes .wipe-line {
  position: relative;
  overflow: hidden;
}
.present.wipes .wipe-line p {
  position: relative;
  font-size: 1.5rem;
  color: #333;
  z-index: 2;
  margin: 0;
  padding: 10px 0;
}
.present.wipes .wipe-line .wipe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e6a328;
  z-index: 1;
}

/* Features Section */
.features {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}
.features-title {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 10px;
}
.features-intro {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}
.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.feature-card h3 {
  font-size: 20px;
  color: #34495e;
  padding: 20px;
  margin: 0;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* Testimonials Section */
.testimonials {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}
.testimonials-title {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 10px;
}
.testimonials-intro {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  padding: 0 150px;
}
.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
}
.testimonial {
  background-color: #ecf0f1;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  cursor: pointer;
}
.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.testimonial-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #9e4cfb;
}
.testimonial-text {
  font-size: 16px;
  color: #444;
  font-style: italic;
  margin-bottom: 15px;
}
.testimonial-author {
  font-size: 14px;
  font-weight: bold;
  color: #2980b9;
}

/* Payment Methods */
.payment-methods {
  text-align: center;
  padding: 40px 20px;
  background-color: #f5f5f5;
}
.payment-title {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}
.payment-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.payment-icon {
  width: 170px;
  height: 55px;
  transition: transform 0.3s;
  cursor: pointer;
}
.payment-icon.usdt{
  width: 70px;
}
.payment-icon:hover {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Lora', serif;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  /*max-width: 1200px;*/
  margin: 0 auto;
  flex-wrap: wrap;
}
.footer-about, .footer-links, .footer-social {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}
.footer h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #9e4cfb;
  display: inline-block;
}
.footer p {
  font-size: 1rem;
  line-height: 1.6;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #9e4cfb;
}
.footer-social .social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-social a {
  color: #fff;
  font-size: 1.8rem;
  transition: color 0.3s, transform 0.3s;
}
.footer-social a:hover {
  color: #9e4cfb;
  transform: scale(1.2);
}
.footer-bottom {
  text-align: center;
  padding: 20px 0 0;
  border-top: 1px solid #444;
  margin-top: 20px;
  font-size: 0.9rem;
}

.text-list-section {
  position: relative;
  height: 100vh;          /* Ocupa la pantalla completa */
  overflow: hidden;
  background: #f0f0f0;    /* Fondo claro para contraste */
}

.text-list {
  position: absolute;
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-list li {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;       /* Texto grande */
  opacity: 0;            /* Inicia oculto */
  transform: scale(0.8); /* Comienza un poco reducido */
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  width:55%;
}

.text-list li:nth-child(1){
    color: #2801b6;
}
.text-list li:nth-child(2){
    color: #ca78fe;
}
.text-list li:nth-child(3){
    color: #93c422;
}
.text-list li:nth-child(4){
    color: #bc7912;
}
.text-list li:nth-child(5){
    color: #8dbc2b;
}
.text-list li:nth-child(6){
    color: #3a0069;
}

.panel {
  height: 100%;
  width: 100%;
  position: absolute;
}


.target-audience {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 50px;
  max-width: 1380px;
  margin: auto;
  gap: 30px; /* Ajusté el gap para mejorar alineación */
}

.text-content.audi {
  flex: 1;
  font-size: 1.5rem;
  color: #333;
}

.text-content.center.audi{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    line-height: 70px;
}

.text-content.audi ul {
  list-style: none;
  padding: 0;
}

.text-content.audi h1{
  margin-bottom:2%;
}

.text-content.audi .nosotros li{
  margin-bottom:5%;
  font-size:1.1rem;
}

.text-content.audi li {
  visibility: visible !important;
}

.text-content.audi span {
  font-weight: bold;
  color: #9e4cfb;
  position: relative;
  cursor: pointer;
}

.text-content.audi span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background-color: #ff9f1c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.text-content.audi li:hover span::after {
  transform: scaleX(1);
}

.video-content {
  flex: 1;
  max-width: 600px;
}

.video-content video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.present1a .fundadores{
  width:40%;
}

.present1a .fundadores li{
  list-style:none;
  font-size: 1.3rem;
  line-height: 2.2;
}

.present1a img{
  border-radius:10px;
}


/*NO HOME*/
.noHome .welcome{
  margin-top:75px;
}

.noHome .welcome h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
    width: 70%;
    line-height: 1.5;
}

.noHome .morado{
  color:#622cc2;
}

.noHome .misionVision{
  display:flex;
  justify-content:center;
  align-items: center;
  flex-direction: column;
  gap:20px;
}

.noHome .panelMision{
  width:80%;
  display: flex;
  justify-content:space-around;
  align-items:center;

}

#JotFormIFrame-250767377049064{
  margin-top: 13%;
}
.noHome .panelMision.contact{
    overflow: hidden;
    height: 1220px;
}

.noHome .panelVision{
  width:80%;
  display: flex;
  justify-content:space-around;
  align-items:center;
}

.noHome .panelMision .textos, .noHome .panelVision .textos{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width:100%;
}

.noHome .panelMision img, .noHome .panelVision img{
  width:35%;
  border-radius:5px;
}

.noHome .panelMision h1, .noHome .panelVision h1{
  width:80%;
  font-size:2rem;
}

.noHome .panelMision p, .noHome .panelVision p{
  width:80%;
  font-size:1.5rem;
  text-align:left;
}

.containerEntrenamientos {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: center;
    margin-top:3%;
}
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}
.filter-buttons button {
    padding: 10px 20px;
    border: none;
    background-color: #9e4cfb;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}
.filter-buttons button:hover {
    background-color: #8e44ad;
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.service-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
}
.service-item.show {
    display: block;
}
.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/** Estilos para el Menú Responsivo **/
.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    display: none;
}

.navbar {
    display: flex;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-social .social-icons {
    justify-content: center;
  }
  .payment-icons {
    flex-direction: column;
    align-items: center;
  }

  .menu-toggle {
      display: block;
      position: absolute;
      right: 20px;
      top: 15px;
  }
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100vh;
    background: rgb(158, 76, 251, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease-in-out;
  }
  .navbar ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .navbar li {
      margin: 15px 0;
  }
  .navbar a {
      color: white;
      font-size: 20px;
      text-decoration: none;
  }
  .navbar.open {
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 70px;
    padding-left: 5%;
    flex-direction: column;
  }

  .hero-content{
    width:90%;
  }
  .hero h1{
    width: 100%; 
    font-size: 2rem; 
  }
  .welcome h3{
    width: 100%;
    font-size:1.3rem;
  }
  .present h1{
    font-size: 1.5rem;
    width: 90%;
  }
  .present .present1a{
    flex-direction: column;
    margin-top: 7%;
    flex-direction: column-reverse;
  }
  .present .present1a p{
    width: 80%;
    text-align:center;
  }
  .present1a img{
    width: 70%;
    margin-bottom: 8%;
  }
  .welcome h2{
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
  .present1a .fundadores{
    width: 90%;
  }
  .present .present1a.alone{
    flex-direction: column;
  }
  .present1a .fundadores li{
    margin-bottom: 5%;
    font-size: 1.1rem;
    text-align:center;
  }
  .target-audience{
    flex-direction: column-reverse;
  }
  .text-content.audi li{
    margin-top:8%;
    text-align: center;
  }
  .text-list li{
    width: 90%;
    font-size: 2rem;
  }
  .testimonials-intro{
    padding:0;
  }
  .noHome .panelMision {
    flex-direction: column;
    margin-bottom: 8%;
  }
  .noHome .panelVision{
    flex-direction: column-reverse;
  }
  .noHome .panelMision img, .noHome .panelVision img{
    width: 90%;
    margin-bottom: 3%;
  }
  .text-content.audi{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
  }
  .filter-buttons .btnEntrenamientos.todo{
    display: none;
  }

  .filter-buttons button{
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
  }

  .noHome .welcome h2{
    font-size: 1.5rem;
    width: 90%;
  }

  .noHome .panelMision p, .noHome .panelVision p{
    width: 90%;
    margin-top: 10%;
  }

  .noHome .welcome .titleEntre{
    font-size:2.5rem!important;
  }

  .noHome .panelMision.contact{
    width:90%;
    height: 1380px;
  }

  .noHome .panelMision p, .noHome .panelVision p{
    text-align:center;
  }
}

/*TABLA DE PRECIOS*/
.containerPrices {
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  h2 {
      text-align: center;
      color: #333;
  }
  table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
  }
  th, td {
      padding: 12px;
      text-align: left;
      border-bottom: 1px solid #ddd;
      cursor:pointer;
  }
  th {
      background-color: #ffc107;
      color: #333;
  }
  tr:nth-child(even) {
      background-color: #f2f2f2;
  }
  tr:hover {
      background-color: #e9ecef;
      transition: 0.3s;
  }
  .section-title {
      background-color: #ffeb3b;
      padding: 12px;
      margin-top: 20px;
      font-size: 18px;
      font-weight: bold;
      border-radius: 5px;
  }
  #whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 10;
}
#whatsapp-btn img {
    width: 40px;
    height: 40px;
}
#whatsapp-btn:hover {
    transform: scale(1.1);
}

.partner-logos {
  padding: 40px 0;
  background: #ffffff; /* Fondo blanco más limpio */
  text-align: center;
}
.partner-logos .logos-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}
.partner-logos .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}
.partner-logos .swiper-slide img {
  max-width: 100%;
  max-height: 80px; /* Ajuste para que no se estiren demasiado */
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease, opacity 0.4s ease;}
}
.partner-logos .swiper-slide img:hover {
  opacity: 1;
  transform: scale(1.1); /* Suave aumento al hacer hover */
}

.newsletter-section {
  background: #f7f7f7;
  padding: 50px 0;
  text-align: center;
}
.newsletter-container {
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.newsletter-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
.newsletter-form .btn {
  padding: 12px;
  background: #5cbb6c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}
.newsletter-form .btn:hover {
  background: #409652;
}
.newsletter-section small {
  display: block;
  margin-top: 15px;
  color: #888;
  font-size: 0.9rem;
}



@media (max-width: 768px) {
    #whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    #whatsapp-btn img {
        width: 28px;
        height: 28px;
    }
}

  /* Responsividad */
  @media (max-width: 768px) {
      table, thead, tbody, th, td, tr {
          display: block;
      }
      th {
          display: none;
      }
      tr {
          margin-bottom: 15px;
          border: 1px solid #ddd;
          border-radius: 5px;
          padding: 10px;
          background-color: #fff;
      }
      td {
          border-bottom: 1px solid #ddd;
          text-align: right;
          padding: 8px;
          position: relative;
          font-size: .9rem;
      }
      td::before {
          content: attr(data-label);
          position: absolute;
          left: 10px;
          width: 50%;
          text-align: left;
          font-weight: bold;
          color: #333;
      }
      td:last-child {
          border-bottom: none;
      }
  }

/* Animaciones generales */
.animate {
  opacity: 0;
  transform: translateY(50px);
}
