@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@font-face {
  font-family: myFirstFont;
  src: url(fonts/circular-std-medium-500.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: 0;
  outline: 0;
  scroll-behavior: smooth;
  font-family: myFirstFont;
  user-select: none;
}
html {
  font-size: 60%;
  overflow-x: hidden;
}
:root {
  --bg-color: #121214;
  --second-bg-color: #100000;
  --bar-bg-color: rgb(44, 44, 44);
  --text-color: white;
  --main-color: #d1741c;
}
body {
  background: var(--bg-color);
  color: var(--text-color);
}
.header,
.offer-countdown {
  width: 100%;
  display: flex;
  align-items: center;
}
.header {
  position: fixed;
  inset: 0 0 auto 0;
  padding: 4rem 14%;
  background: rgb(0 0 0 / 0.3);
  backdrop-filter: blur(10px);
  justify-content: space-between;
  z-index: 100;
}
.offer-countdown {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  padding: 0.8rem 1rem;
  justify-content: center;
  gap: 1.2rem;
}
.offer-countdown .offer-title {
  text-transform: uppercase;
}
.offer-countdown #countdown {
  font-size: 2rem;
  font-weight: 700;
  background: var(--bar-bg-color);
  color: var(--text-color);
  padding: 0.4rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.3);
}
.offer-title span {
  color: #d1741c;
  font-weight: 700;
}
.logo {
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.1);
}
#config-icon,
#config-user,
#menu-icon {
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  margin-left: 20px;
}
section {
  min-height: 100vh;
  padding: 10rem 12%;
}
.home {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15rem;
  padding: 15rem 12% 10rem;
}
.home-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.home-content h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  line-height: 1;
}
.home-content h3 {
  font-size: 2.5rem;
  margin: 1rem 0;
}
.home-content p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
}
#vsl-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  margin-bottom: -25rem;
}
#vsl-section .vsl-button-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.vsl-box {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.vsl-box video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgb(0 0 0 / 0.6);
  margin-bottom: 20px;
}
.vsl-button-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
.vsl-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}
.cta-img img,
.home-img img {
  border-radius: 50%;
}
.about-img img,
.cta-img img,
.home-img img {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 0 25px var(--main-color);
  display: block;
}
.cta-img img,
.home-img img {
  width: 26vw;
}
.about-img img {
  width: 36vw;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgb(0 0 0 / 0.6);
}
.cta-img img:hover,
.home-img img:hover {
  box-shadow: 0 0 25px var(--main-color), 0 0 50px var(--main-color),
    0 0 100px var(--main-color);
  transform: scale(1.1);
}
.about-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--main-color);
}
.btn-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.btn {
  display: inline-block;
  padding: 1.5rem 3.5rem;
  background: var(--main-color);
  border-radius: 3rem;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 0.2);
  top: 0;
  left: -100%;
  transition: left 0.3s ease;
}
.btn:hover::before {
  left: 0;
}
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  padding: 8rem 12%;
  min-height: 90vh;
}
.about:nth-child(even) {
  flex-direction: row-reverse;
}
.about-content {
  flex: 1;
  max-width: 600px;
}
.about-content h2 {
  font-size: 3.6rem;
  margin-bottom: 2rem;
}
.about-content h3 {
  font-size: 2.2rem;
  margin: 2rem 0 1rem;
}
.about-content li,
.about-content p {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.about-content ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.about-content .btn-group {
  margin-top: 3rem;
}
.testimonios {
  padding: 60px 20px 40px;
  background: var(--bg-color);
  text-align: center;
}
.testimonios-content h2 {
  font-size: 2.6rem;
  margin-bottom: 50px;
  color: var(--text-color);
  position: relative;
}
.testimonios-content h2::after {
  content: "";
  width: 100px;
  height: 4px;
  background: var(--main-color);
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}
.testimonial-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1500px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--bar-bg-color);
  padding: 70px 60px;
  border-radius: 20px;
  min-height: 420px;
  box-shadow: 0 10px 28px rgb(0 0 0 / 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgb(255 255 255 / 0.05);
}
.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 32px rgb(0 0 0 / 0.85);
}
.testimonial-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 30px;
  border: 5px solid var(--main-color);
  transition: transform 0.3s ease;
}
.testimonial-img:hover {
  transform: scale(1.2);
}
.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--text-color);
  margin-bottom: 25px;
}
.plan-card h3,
.testimonial-author {
  font-size: 1.3rem;
  color: var(--main-color);
}
.testimonial-author {
  font-weight: 700;
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgb(0 0 0 / 0.85);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
}
.lightbox.show {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}
.lightbox.closing {
  animation: fadeOut 0.3s ease forwards;
}
.footer-section p,
.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  position: relative;
}
.lightbox img,
.lightbox video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgb(0 0 0 / 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 25px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 1101;
  transition: transform 0.2s, color 0.2s;
}
.lightbox-close:hover {
  transform: scale(1.2);
  color: var(--main-color);
}
.lightbox-nav {
  display: none;
}
.lightbox-nav.active {
  display: block;
}
.lightbox-nav .next,
.lightbox-nav .prev {
  cursor: pointer;
  position: fixed;
  top: 50%;
  font-size: 50px;
  color: var(--main-color);
  font-weight: 700;
  user-select: none;
  padding: 10px;
  transform: translateY(-50%);
  transition: color 0.2s, transform 0.2s;
  z-index: 1100;
}
.lightbox-nav .next:hover,
.lightbox-nav .prev:hover {
  color: #fff;
  transform: translateY(-50%) scale(1.2);
}
.lightbox-nav .prev {
  left: 25px;
}
.lightbox-nav .next {
  right: 25px;
}
.cta-planes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin: 25px 0;
}
.plan-card {
  background: var(--bar-bg-color);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.4);
  border: 1px solid rgb(255 255 255 / 0.1);
  text-align: center;
  color: var(--text-color);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.6);
}
.plan-card h3 {
  margin-bottom: 10px;
}
.plan-duracion,
.plan-precio {
  font-size: 1rem;
  margin: 6px 0;
}
.plan-duracion strong,
.plan-precio span {
  font-weight: 700;
  color: var(--main-color);
}
.plan-precio.promo span {
  color: #4caf50;
  font-size: 1.2rem;
}
.plan-card.selected {
  border: 2px solid var(--main-color);
  box-shadow: 0 0 20px var(--main-color);
  transform: scale(1.05);
}
.footer {
  background-color: var(--bg-color);
  padding: 40px 0;
  color: #fff;
}
.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
.footer-logo {
  display: flex;
  justify-content: flex-start;
}
.footer-logo img {
  max-width: 250px;
  height: auto;
  display: block;
  transform: translate(-95px);
}
.footer-section {
  text-align: center;
}
.footer-section h2 {
  font-size: 20px;
  margin-bottom: 12px;
}
.footer-section p {
  font-size: 15px;
  gap: 10px;
  margin: 6px 0;
}
.footer-redes {
  text-align: right;
}
.footer-redes p {
  justify-content: flex-end;
}
.footer-redes a {
  font-size: 2rem;
}
.footer-redes i {
  font-size: 20px;
}
.footer-redes a:hover {
  border-bottom: 1px solid var(--main-color);
  color: var(--main-color);
}
.footer-divider {
  background-color: #fff;
  height: 1px;
  width: 90%;
  margin: 30px auto;
}
.footer .copyright {
  font-size: 14px;
  text-align: center;
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 12px;
}
::-webkit-scrollbar-track {
  background-color: var(--second-bg-color);
}
.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease forwards;
}
.visible {
  opacity: 1;
}
@media (max-width: 1200px) {
  .home-img {
    display: none;
  }
  html {
    font-size: 55%;
  }
  .header {
    margin-bottom: 3rem;
  }
  .home {
    gap: 7rem;
    padding: 10rem 6% 6rem;
  }
  .home-content h1,
  .home-content h2,
  .home-content p {
    margin-bottom: 2rem;
  }
  .testimonial-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 2rem;
  }
  .footer-logo img {
    transform: translate(0);
    margin: auto;
  }
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .home-img {
    display: none;
  }
  html {
    font-size: 50%;
  }
  .header {
    padding: 1.5rem 5%;
    margin-bottom: 3rem;
  }
  .home {
    flex-direction: column;
    text-align: center;
    gap: 4rem;
    padding: 8rem 5%;
  }
  .home-content {
    align-items: center;
    text-align: center;
    order: 1;
    gap: 1rem;
  }
  .home-content h1,
  .home-content h2,
  .home-content p {
    margin-bottom: 0.8rem;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
    overflow-x: visible;
  }
  .home-img {
    order: 2;
  }
  .home-content .btn-group {
    order: 3;
    margin-top: 1.5rem;
  }
  .home-img img {
    width: 55vw;
  }
  section {
    min-height: auto !important;
    margin: 0 !important;
    padding: 4rem 5% !important;
  }
  .about {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .about-img {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .about-img img {
    max-width: 90%;
    height: auto;
  }
  #target {
    gap: 1.5rem;
  }
  .testimonial-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
  }
  #target,
  .testimonial-card {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .testimonial-card {
    width: 100%;
    max-width: 360px;
    height: auto !important;
    min-height: unset !important;
    padding: 1.8rem 1.5rem;
    border-radius: 1rem;
    align-items: center;
  }
  .testimonial-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  .testimonial-text {
    font-size: 1.6rem;
    margin: 1rem 0;
    line-height: 1.4;
  }
  .testimonial-author {
    margin-top: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
  }
  .lightbox-content {
    max-width: 95%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .lightbox img,
  .lightbox video {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
  }
  .lightbox-nav .next,
  .lightbox-nav .prev {
    font-size: 2.4rem;
    padding: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
  }
  .lightbox-close {
    font-size: 2.4rem;
    top: 10px;
    right: 10px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-redes,
  .footer-redes p {
    text-align: center;
    justify-content: center;
  }
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .home-img {
    display: none;
  }
  html {
    font-size: 45%;
  }
  .header {
    flex-direction: column;
    padding: 1rem 4%;
    margin-bottom: 2.5rem;
  }
  .logo {
    font-size: 2.2rem;
  }
  #config-icon,
  #config-user,
  #menu-icon {
    font-size: 20px;
    margin-left: 10px;
  }
  .home {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding: 6rem 4%;
  }
  .home-content {
    order: 1;
    gap: 0.8rem;
  }
  .home-content h1,
  .home-content h2,
  .home-content p {
    margin-bottom: 0.6rem;
    line-height: 1.25;
    white-space: normal;
    word-break: break-word;
    overflow-x: visible;
  }
  .home-img {
    order: 2;
  }
  .home-content .btn-group {
    order: 3;
    margin-top: 1.2rem;
  }
  .home-img img {
    width: 75vw;
  }
  section {
    min-height: auto !important;
    margin: 0 !important;
    padding: 3rem 4% !important;
  }
  .about {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .about-img {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .about-img img {
    width: 85vw;
    max-width: 100%;
    height: auto;
  }
  .about-content h2 {
    font-size: 2.4rem;
  }
  #target,
  .testimonial-card {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  #target {
    gap: 1.5rem;
  }
  .testimonial-card {
    width: 100%;
    max-width: 320px;
    height: auto !important;
    min-height: unset !important;
    padding: 1.5rem 1.2rem;
    border-radius: 1rem;
    align-items: center;
  }
  .testimonial-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  .testimonial-text {
    font-size: 1.4rem;
  }
  .testimonial-author {
    font-size: 1.2rem;
  }
  .lightbox-content {
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .lightbox img,
  .lightbox video {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
  }
  .lightbox-nav .next,
  .lightbox-nav .prev {
    font-size: 2rem;
    padding: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
  }
  .lightbox-close {
    font-size: 2rem;
    top: 8px;
    right: 8px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.2rem;
  }
  .footer-logo img {
    max-width: 150px;
    margin: auto;
    transform: none;
  }
  .footer-redes {
    text-align: center;
    margin-top: 0.8rem;
  }
  .footer-redes a {
    margin: 0 6px;
    font-size: 1.7rem;
  }
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
}
.offer-title,
.plan-card h3,
.plan-duracion strong {
  white-space: nowrap;
}
.home-content p {
  display: inline;
  margin-right: 8px;
  white-space: normal;
}
