html{
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column; 
    height: 100%;
 }

main {
    flex: 1; /* Hace que el contenido ocupe el espacio disponible */
}

body {
    background-color: black; /* #121212; Background gris oscuro*/
    display: flex;
    flex-direction: column;
    height: 100%;
    
}

header img {
    display: block;
    max-width: 7rem;
    margin: 0;
    align-items: top;
}

header {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

h1 {
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-size: 2.2rem;
    color: white;
    text-align: center;
    position: relative;
    padding: 0rem;
}

h1 span {
    position: relative;
    display: inline-block;
}

h1 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0em;
    width: 100%;
    height: 0.5em;
    /* background-color: rgba(255, 160, 64, 0.3); */
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
}


.first-section {
    max-width: 1000px;
    text-align: center;
}

.first-section h2{
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    color: white;
    background: rgba(255, 255, 255, 0.129); 
    border: solid 1px gray;
    border-radius: 5px;
    padding: 0.5rem 0.8rem;
    display: inline-block;
}

.first-section p {
    font-size: 1.1rem;
    color: white;
    margin-top: 0;
    margin-bottom: 4rem;
}

section {
    max-width: 95%;
    padding: 0 10px;
    margin: 0 auto;
    box-sizing: border-box;
}

section video {
  display: block;
  width: 100%;
  max-width: 1000px;
  border-radius: 10px;
  background-color: #232323;
  box-shadow: 0px 0px 10px 1px #ffffff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  margin: 0 auto;
  padding: 0.6rem;
}

section video:hover {
  box-shadow: 0px 0px 15px 3px #ffffff;
}

.buttonLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 40px;
  margin: 3rem auto;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  border: 2px solid #ffffff;
  box-shadow: 0px 0px 3px 1px #ffffff;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  color: black;
  font-size: 14px;
  text-decoration: none;
}

.buttonLink:hover {
  box-shadow: 0px 0px 6px 2px #ffffff;
  transform: scale(1.03);
}

section p {
    color: white;
    font-size: 1.8rem;
    text-align: center;
}

.seccion {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

/* Cuando el elemento entra en el viewport */
.seccion.visible {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    color: #ffffff;
    text-align: center;
    font-size: 2rem;
}

.global-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6rem auto;
    max-width: 100%;
    flex-wrap: wrap;
}

.left-container, .right-container {
    flex: 1;
}

.left-container {
    text-align: left;
}

.global-container .right-container {
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    background: linear-gradient(to bottom, #121212, black);
    max-width: 550px;
    min-width: 350px;
    flex-shrink: 0;
}

.right-container div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.right-container p {
    font-size: 1.2rem;
    padding: 1rem;
    text-align: left;
}

.global-container i {
    color: black;
    font-size: 10rem;
    text-shadow: 0 0 10px #ffffff, 0 0 25px #ffffff;
}

h3 {
    color: #ffffff;
    font-size: 6rem;
}

h4 {
    font-size: 1.5rem;
}

 .global-container h4 {
    color: white;
    text-shadow: 0 0 15px white;
    font-size: 1.5rem;
    text-align: center;
}

.highlight {
    font-weight: bold;
    display: inline;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.3) 40%, transparent 40%);
}

.extra-container {
    display: flex;
    max-width: 1000px;
    align-items: center;
    justify-content: center; 
    border: 2px solid #ffffff;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.8), rgba(255, 255, 255, 0.12), rgba(18, 18, 18, 0.8)); 
    margin: 0 auto;
    padding: 1.5rem;
    position: relative;
    overflow: visible;
}

.extra-container i{
    color: #ffffff;
}

.extra-container .extra-container-left i{
    color: black;
    font-size: 14rem;
    align-items: center;
    text-shadow: 0 0 10px #ffffff, 0 0 25px #ffffff;
}

.extra-container p {
    margin: 1rem auto;
    width: 100%;
}

.testimonies {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    margin: 0;
}

.title-section {
    color: white;
}

.title-section span{
    color: white;
    font-weight: bold;
    display: inline;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.3) 55%, transparent 40%);
}

.testimonies div {
    display: flex;
    border-radius: 30px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0px 0px 10px 1px #ffffff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(18, 18, 18, 0.8), rgba(255, 255, 255, 0.1), rgba(18, 18, 18, 0.8)); 
    flex-direction: column;
}

.testimonies .seccion {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.testimonies .seccion.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonies div:hover {
    box-shadow: 0px 0px 20px 5px #ffffff;
}

.testimonies video {
    display: block;
    width: 100%;
    border-radius: 20px;
    box-shadow: none;
    margin: 0 auto;
    padding: 0;
}

.testimonies video:hover {
    box-shadow: none;
}

.testimonies article {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-left: 1rem;
}

.testimonies h4 {
    margin-top: 1rem;
    font-size: medium;
    font-weight: 400;
    color: gray;
    margin-bottom: 0.5rem;
}
.testimonies p {
    text-align: left;
    margin: 0;
    font-size: 0.8rem;
    color: rgb(102, 101, 101);
}

.will-get-container {
    display: grid;
    max-width: 1000px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 280px)); 
    justify-content: center;
    gap: 2rem;
}

.mini-container {
    display: flex;
    border: 1px solid #ffffff;
    border-radius: 20px;
    background: linear-gradient(to bottom, black, rgba(255, 255, 255, 0.3));
    flex-direction: column;
    text-align: center;
}

.mini-container h5 {
    color: white;
    font-size: 18px;
    margin: 0.5rem;
    font-weight: bold;
}

.mini-container p {
    color: white;
    margin-bottom: 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    font-size: 16px;
}

.mini-container i {
    color: black;
    font-size: 10rem;
    margin-top: 1rem;
    align-items: center;
    text-shadow: 0 0 10px white, 0 0 25px white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    background-color: #121212;
    color: white;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: filter 0.5s ease;
}

.faq-question:hover {
    filter: brightness(1.5);
}

.faq-question .icon {
    font-weight: bold;
    color: #f9f9f9;
    transition: transform 0.3s ease; /* Transición suave para la rotación */
}

.faq-answer {
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-top: 5px;
    border-radius: 5px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-out, padding 0.3s ease-out, filter 0.3s ease;
}

.faq-answer:hover {
    filter: brightness(1.4);
}

.faq-answer p {
    font-size: 1rem;
    text-align: left;
}

.faq-answer a {
    text-decoration: none;
    color: #ffffff;
}

.faq-answer a:hover {
    color: #f3f3f3;
}

.faq-answer span {
    font-weight: bold;
}

.faq-answer.show {
    height: auto;
    padding: 10px;
}

footer {
    margin-top: auto;
    width: 100%;
    margin-bottom: 1em;
}

footer p{
    color: gray;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1em;
}

@media (max-width: 850px) {
    .extra-container {
        flex-direction: column;
        align-items: center;
        max-width: 400px;
    }

    .extra-container p {
        font-size: 1rem;
    }
    .extra-container img {
        max-width: 200px;
    }
}

@media (max-width: 700px) {

    h1 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    header img {
        max-width: 4rem;
    }

    .first-section h2{
        font-size: 0.8rem;
    }

    .first-section p {
        font-size: 1rem;
        margin-top: 0;
        margin-bottom: 2rem;
    }

    section video{
        padding: 0.2rem;
        box-sizing: border-box;
    }

    h2 {
        margin: 0;
        font-size: 1.4rem;
    }

    .right-container h4 {
        font-size: 1.2rem;
    }

    .fases {
        padding: 0;
        margin: 0 auto;
    }

    .global-container {
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    .global-container .right-container {
        min-width: 100px;
    }
    
    .right-container p {
        font-size: 1rem;
        padding: 1rem;
        text-align: center;
    }
    
    .global-container i {
        color: black;
        font-size: 8rem;
        text-shadow: 0 0 10px #ffffff, 0 0 25px #ffffff;
    }

    .extra-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 2rem;
        max-width: 400px;
    }

    .extra-container p {
        font-size: 1rem;
        text-align: left;
        max-width: 280px;
        margin: 0 auto;
    }
    .extra-container .extra-container-left i{
        font-size: 8rem;
    }

    .testimonies {
        padding: 0;
        margin: 0 auto;
    }

    .testimonies div {
        border-radius: 20px;
        padding: 0.5rem;
    }

    .will-get{
        padding: 0;
        margin: 0 auto;
    }

    .will-get-container {
        margin-top: 2rem;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    }

    .mini-container {
        width: 100%;
    }

    .mini-container i {
        font-size: 8rem;
    }
    .mini-container p {
        font-size: 1rem;
    }

    footer p {
        font-size: 0.8rem;
    }
}

.proceso-expansivo {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }
  
  .proceso-expansivo .etiqueta {
    color: white;
    font-size: 0.8rem;
    border: 1px solid white;
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .proceso-expansivo h2 {
    font-size: 2rem;
    color: white;
    text-shadow: 0 0 0px white;
    margin-bottom: 0.5rem;
  }
  
  .proceso-expansivo .subtitulo {
    color: #888;
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .bloque-precios .subtitulo {
    color: #888;
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .global-container .subtitulo {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .first-section .subtitulo {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  header .subtitulo {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-top: 3rem;
  }
  
  .step-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    position: relative;
    z-index: 2;
    background-color: #111;
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    margin: 40px 0;
    opacity: 0.2;
    transition: opacity 0.6s ease, transform 0.6s ease;
    box-shadow: 0 0 0 transparent;
  }
  
  .step h5 {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .step p {
    color: white;
    font-size: 1rem;
    margin: 0;
  }
  
  .step.active {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    border: 1px solid white;
  }
  
  .line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, white 0%, transparent 0%);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    transition: background 0.5s ease;
  }

  .line-end {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 6px white;
    transition: opacity 0.6s ease;
  }
  
  .top-dot {
    top: 0;
  }
  
  .bottom-dot {
    bottom: 0;
  }

  .step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.step.active {
    opacity: 1;
    transform: translateY(0);
    border-color: white;
    box-shadow: none;
  }

.line {
  background: linear-gradient(to bottom, white 0%, transparent 0%);
  transition: background 0.6s ease-in-out;
}

@media (max-width: 768px) {
    .step-container {
      padding: 0 2rem; /* Añade 1rem a izquierda y derecha */
    }
  }


  .bloque-precios {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 1rem;
    text-align: center;
  }
  
  .bloque-precios h2 {
    font-size: 2rem;
    color: white;
    text-shadow: 0 0 0px white;
  }
  
  .bloque-precios .sub {
    color: #aaa;
    margin-bottom: 2rem;
  }
  
  .tarjetas {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .tarjeta {
    background: #111;
    border-radius: 20px;
    padding: 2rem;
    color: white;
    flex: 1 1 300px;
    max-width: 450px;
    box-shadow: 0 0 10px rgba(255,255,255,0.05);
    transition: all 0.3s ease;
  }
  
  .tarjeta:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
  }
  
  .tipo-plan {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  
  .precio {
    font-size: 2.2rem;
    margin: 0;
    color: white;
  }
  
  .condicion {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.2rem;
  }
  
  .boton-precio {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    margin-bottom: 1.5rem;
    background-color: white;
    color: black;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .boton-precio:hover {
    background-color: #d7d7d7;
  }
  
  .tarjeta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }
  
  .tarjeta ul li {
    margin: 0.6rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.95rem;
    color: #ddd;
  }
  
  .tarjeta ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: white;
    font-size: 0.9rem;
  }
  
  /* Elementos que no incluye el plan mensual */
  .bloqueado {
    color: #555 !important;
    opacity: 0.5;
  }
  
  /* Extras destacados del plan anual */
  .resaltado {
    color: white !important;
    font-weight: 500;
    text-shadow: 0 0 0px white;
  }

  .nota-legal {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    margin-top: 1rem;
    margin-bottom: 3rem;
    font-style: italic;
  }

  .testimonios-grid {
    padding: 4rem 2rem;
    background-color: #000;
    text-align: center;
  }
  
  .testimonios-grid .title-section {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .grid-testimonios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .testimonio-box {
    background: #111;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    width: 100%;
    max-width: 500px;
    box-shadow: none;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .testimonio-box video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 0.75rem auto;
    max-width: 100%;
  }
    
  .testimonio-box h4 {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    color: #fff;
  }
  
  .testimonio-box p {
    font-size: 0.85rem;
    text-align: left;
    margin-top: 0.3rem;
    color: #aaa;
  }


  .testimonio-video {
    all: unset;
    width: 100%;
    border-radius: 12px;
    display: block;
    margin-bottom: 0.75rem;
    box-shadow: none !important;
  }

  @media screen and (max-width: 768px) {
    .first-section video {
      margin-top: 2rem;
    }
  }
  
  @media screen and (max-width: 768px) {
    .faq-container h2.title-section {
      margin-bottom: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    .grid-testimonios {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      padding: 0;
      margin: 0 auto;
      width: 100%;
      box-sizing: border-box;
    }
  
    .testimonio-box {
      width: 92vw;
      max-width: 92vw;
      padding: 1rem;
      box-sizing: border-box;
    }
  
    .testimonio-box video,
    .testimonio-video {
      width: 100%;
      height: auto;
      border-radius: 12px;
      margin-bottom: 0.75rem;
      display: block;
    }
  
    .testimonio-box h4 {
      font-size: 1rem;
      margin: 0;
    }
  
    .testimonio-box p {
      font-size: 0.85rem;
      margin-top: 0.3rem;
    }
  }
  