:root {
  --color-primary: #004646;
  --color-text-light: #004646;
  --color-white: #ffffff;
  --color-background: #f4f6f6;
  --color-background-alt: #edecee;
  --color-background-section: #ffffff;
  --color-footer-bg: #41344e;
  --color-divider: #bfdada;
  --gradient-primary: linear-gradient(90deg, #8d22d8 0%, #00b0b0 100%);
  --gradient-image-bg: linear-gradient(192deg, #f9f1ff 0%, #7b43a2 120.04%);
  --color-hoveroutline: #d2ebeb;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Albert Sans', sans-serif;
  background-color: var(--color-background);
  color: var(--color-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1536px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 60px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn--gradient {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, #8d22d8 0%, #00b0b0 100%);
}

.btn--gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease-in-out;
  z-index: 0;
}

.btn--gradient:hover::before {
  transform: translateX(100%);
}

.btn_icon {
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease-out;
}

.btn--gradient:hover .btn_icon {
  transform: translate(3px, -3px);
}

.btn--outline {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn--outline:hover {
  background-color: var(--color-hoveroutline);
}

.tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--color-primary);
  border-radius: 72px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.info-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 300;
}

.info-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.info-item .price-value {
  font-weight: 700;
}

.divider {
  width: 2px;
  height: 29px;
  background-color: var(--color-divider);
  flex-shrink: 0;
}

.bold {
  font-weight: 700;
}

.semibold {
  font-weight: 600;
}

/* ========================================
   HEADER RESPONSIVE
   ======================================== */
.header {
  padding: 24px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: transparent;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header__logo .logo-container {
  position: relative;
  width: 242px;
  height: 48px;
}

.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-link {
  font-size: 18px;
  color: var(--color-primary);
  transition: opacity 0.3s;
  white-space: nowrap;
}

.header__nav-link:hover {
  opacity: 0.7;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 60px;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

/* ========================================
   HERO RESPONSIVE
   ======================================== */
.hero {
  padding-top: 180px;
  padding-bottom: 80px;
  text-align: center;
}

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero__tags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__title {
  font-size: 88px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -4.4px;
  max-width: 1537px;
}

.hero__subtitle {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  max-width: 793px;
}

.hero__details {
  margin: 16px 0;
}

.hero__actions {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__actions img {
  width: 24px;
  height: 24px;
}

/* ========================================
   LIVE SECTION RESPONSIVE
   ======================================== */
.live-section {
  padding: 80px 0;
  text-align: center;
}

.live-video {
  max-width: 700px;
  margin: 0 auto 48px;
  width: 100%;
}

.live-video video {
  width: 100%;
  border-radius: 16px;
}

#countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cd-box {
  background: #B0DDD8;
  padding: 24px 32px;
  border-radius: 16px;
  font-size: 24px;
  font-weight: 600;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cd-box span {
  font-size: 48px;
  display: block;
  font-weight: 700;
}

/* ========================================
   BENEFITS RESPONSIVE
   ======================================== */
.benefits {
  background-color: var(--color-background-alt);
  padding: 80px 0;
}

.benefits__header {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.benefits__main-title {
  font-size: 72px;
  letter-spacing: -3.6px;
  line-height: 1.2;
}

.benefits__main-title .regular {
  font-weight: 400;
}

.benefits__main-title .bold {
  font-weight: 700;
}

.benefits__grid {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.card {
  flex: 1;
  padding: 48px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card--negative {
  background-color: var(--color-background);
  border: 1px solid var(--color-divider);
}

.card--positive {
  background-color: var(--color-white);
  box-shadow: -27px 12px 40px 0px rgba(0, 0, 0, 0.1);
}

.card__title {
  font-size: 32px;
  line-height: 1.4;
}

.card__title .regular {
  font-weight: 400;
}

.card__title .semibold {
  font-weight: 600;
}

.card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card__list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.card__list-item img {
  width: 32px;
  height: 32px;
  margin-top: 2px;
  flex-shrink: 0;
}

.card__list-item p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  flex: 1;
}

/* ========================================
   ABOUT RESPONSIVE
   ======================================== */
.about {
  background-color: var(--color-background-section);
  padding: 80px 0;
  overflow: hidden;
}

.about__container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about__text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.about__title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -2.4px;
}

.about__bio {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}

.about__cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.about__cta-text {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
}

.about__details {
  margin: 16px 0;
}

.about__image-content {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.about__image-container {
  position: relative;
  width: 100%;
  max-width: 601px;
  aspect-ratio: 601 / 623;
}

.about__image-bg {
  position: absolute;
  width: 100%;
  height: 75%;
  background: var(--gradient-image-bg);
  border-radius: 0px 200px 0px 200px;
  bottom: 0;
  right: 0;
}

.about__image {
  position: absolute;
  width: 95%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0px 0px 0px 200px;
  object-fit: cover;
}

/* ========================================
   FOOTER RESPONSIVE
   ======================================== */
.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-white);
  padding: 60px 0;
  text-align: center;
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 24px;
  font-weight: 400;
  transition: opacity 0.3s;
}

.footer__contact-item:hover {
  opacity: 0.8;
}

.footer__contact-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.footer__copyright {
  font-size: 16px;
  font-weight: 400;
  margin-top: 24px;
}

/* ========================================
   TABLET BREAKPOINT (768px - 1024px)
   ======================================== */
@media (max-width: 1024px) {
  .container {
    max-width: 960px;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Header */
  .header__nav-list {
    gap: 24px;
  }

  .header__nav-link {
    font-size: 16px;
  }

  /* Hero */
  .hero {
    padding-top: 160px;
    padding-bottom: 60px;
  }

  .hero__title {
    font-size: 64px;
    letter-spacing: -3px;
  }

  .hero__subtitle {
    font-size: 20px;
  }

  .info-item {
    font-size: 20px;
  }

  .btn {
    font-size: 18px;
    padding: 14px 20px;
  }

  /* Benefits */
  .benefits__main-title {
    font-size: 56px;
    letter-spacing: -2.8px;
  }

  .card {
    padding: 32px;
  }

  .card__title {
    font-size: 28px;
  }

  .card__list-item p {
    font-size: 20px;
  }

  /* About */
  .about__container {
    gap: 48px;
  }

  .about__title {
    font-size: 40px;
  }

  .about__bio {
    font-size: 20px;
  }

  .about__cta-text {
    font-size: 20px;
  }

  /* Live section */
  .cd-box {
    padding: 20px 28px;
    font-size: 20px;
    min-width: 90px;
  }

  .cd-box span {
    font-size: 40px;
  }
}

/* ========================================
   MOBILE BREAKPOINT (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Header */
  .header {
    padding: 16px 0;
  }

  .header__container {
    justify-content: center;
  }

  .header__logo .logo-container {
    width: 180px;
    height: 36px;
  }

  .header__nav {
    display: none !important; /* Ocultar toda la nav en mobile */
  }

  /* Hero */
  .hero {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .hero__tags {
    gap: 8px;
  }

  .tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero__title {
    font-size: 32px;
    letter-spacing: 0;
    line-height: 1.1;
  }

  .hero__subtitle {
    font-size: 16px;
    padding: 0 16px;
  }

  .hero__details .info-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .divider {
    display: none;
  }

  .info-item {
    font-size: 16px;
  }

    .info-item img {
        width: 16px;
        height: 16px;
    }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }

  /* Live section */
  .live-section {
    padding: 60px 0;
  }

  .live-video {
    margin-bottom: 32px;
    padding: 0 16px;
  }

  #countdown {
    gap: 8px;
    padding: 0 12px;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .cd-box {
    padding: 20px 16px;
    font-size: 16px;
    min-width: 0;
    flex: 1 1 calc(50% - 6px);
    max-width: calc(50% - 6px);
  }

  .cd-box span {
    font-size: 36px;
  }

  /* Benefits */
  .benefits {
    padding: 60px 0;
  }

  .benefits__header {
    margin-bottom: 32px;
  }

  .benefits__main-title {
    font-size: 28px;
 letter-spacing: 0;

  }

  .benefits__grid {
    flex-direction: column;
    gap: 24px;
  }

  .card {
    padding: 24px;
  }

  .card--negative {
    margin-top: 0;
  }

  .card__title {
    font-size: 20px;
  }

  .card__list {
    gap: 16px;
  }

  .card__list-item {
    gap: 12px;
  }

  .card__list-item img {
    width: 24px;
    height: 24px;
  }

  .card__list-item p {
    font-size: 16px;
  }

  /* About */
  .about {
    padding: 60px 0;
  }

  .about__container {
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
  }

  .about__text-content {
    align-items: center;
    gap: 24px;
  }

  .about__title {
    font-size: 28px;
        letter-spacing: 0;


  }

  .about__bio {
    font-size: 16px;
  }

  .about__cta-group {
    align-items: center;
    gap: 20px;
  }

  .about__cta-text {
    font-size: 16px;
  }

  .about__details .info-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .about__cta-group .btn {
    width: 100%;
    max-width: 100%;
  }

  .about__image-content {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about__image-container {
    max-width: 400px;
    width: 100%;
  }

  .about__image-bg {
    border-radius: 0px 100px 0px 100px;
    opacity: 1;
    visibility: visible;
  }

  .about__image {
    border-radius: 0px 0px 0px 100px;
    opacity: 1;
    visibility: visible;
  }

  /* Footer */
  .footer {
    padding: 40px 0;
  }

  .footer__title {
    font-size: 24px;
  }

  .footer__contact {
    margin: 16px 0;
  }

  .footer__contact-item {
    font-size: 16px;
    flex-wrap: wrap;
  }

  .footer__contact-item img {
    width: 24px;
    height: 24px;
  }

  .footer__copyright {
    font-size: 14px;
  }
}

/* ========================================
   SMALL MOBILE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
    letter-spacing: 0;

  }

  .benefits__main-title {
    font-size: 24px;
    letter-spacing: 0;

  }

  .card__title {
    font-size: 18px;
    letter-spacing: 0;

  }

  .card__list-item p {
    font-size: 16px;
  }

  .about__title {
    font-size: 24px;
    letter-spacing: 0;

  }

  .about__bio,
  .about__cta-text {
    font-size: 16px;
  }

  .info-item {
    font-size: 16px;
  }

  .btn {
    font-size: 16px;
    padding: 10px 16px;
  }

  .cd-box {
    padding: 10px 6px;
    font-size: 12px;
    max-width: calc(40% - 6px);
  }

  .cd-box span {
    font-size: 24px;
  }

  .footer__contact-item {
    font-size: 16px;
  }
  
  
  .info-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 300;
}
    .info-item img {
        width: 16px;
        height: 16px;
    }

}