:root {
  --primary-color: #FFF300;
  --secondary-color: #000000;
  --white: #ffffff;
  --grey: #575757;
  --title-font: 'Barlow Condensed', sans-serif;

  /* Tamaños de fuente para títulos */
  --h1-size: 4.5rem;    /* 72px */
  --h2-size: 3.75rem;   /* 60px */
  --h3-size: 3rem;      /* 48px */
  --h4-size: 2.5rem;    /* 40px */
  --h5-size: 2rem;      /* 32px */
  --h6-size: 1.5rem;    /* 24px */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Estilos base para títulos */
h1 {
  font-family: var(--title-font);
  font-size: 4.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

h2 {
  font-family: var(--title-font);
  font-size: 3.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}



body.no-scroll {
  overflow: hidden;
}

/* Header styles */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: var(--white);
}

.header__container {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header__left,
.header__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__logo {
  display: block;
  z-index: 1001;
}

.header__logo img {
  max-width: 180px;
  height: auto;
}

.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary-color);
  cursor: pointer;
  padding: 0.5rem;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}



.header__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.header__menu a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
  padding: 0.5rem 0;
  position: relative;
}

.header__menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.header__menu a:hover::after,
.header__menu a.active::after {
  width: 100%;
}

.header__social {
  display: flex;
  gap: 1.5rem;
}

.header__social a {
  color: var(--secondary-color);
  font-size: 1.2rem;
  transition: color 0.3s, transform 0.2s;
}

.header__social a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary-color);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Responsive styles */
@media (max-width: 968px) {
  .header__nav {
    display: none;
  }

  .header__mobile-toggle {
    display: block;
  }

  .header__container {
    padding: 0.8rem 1rem;
  }

  .header__logo img {
    max-width: 120px;
  }

  .header__right {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .header__social {
    display: none;
  }
}

/* App Video Section */
.app-video-section {
    padding: 5rem 0;
    background-color: var(--white);
    overflow: hidden;
}

.app-video__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.app-video__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-video__text h2 {
    justify-content: left;
}


.app-video__text p {
    margin-bottom: 2.5rem;
    text-align: left;
}

.app-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1.5rem;
}

.app-features-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
    padding: 1rem 1.5rem;
    background: #fff300;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.app-features-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 243, 0, 0.15);
}

.app-features-list li i {
    color: var(--primary-color);
    font-size: 1.4rem;
    background: rgba(255, 243, 0, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .app-video__text {
        padding-right: 0;
        text-align: center;
    }

    .app-video__text::before {
        left: 50%;
        transform: translateX(-50%);
        height: 4px;
        width: 100px;
        top: -20px;
    }

    .app-video__text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .app-video__text p {
        margin-left: auto;
        margin-right: auto;
    }

    .app-features-list li {
        justify-content: center;
    }

    .app-features-list li:hover {
        transform: translateY(-5px);
    }
}

.app-video__player {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.phone-frame {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* Proporción 16:9 para videos verticales */
    background: var(--secondary-color);
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 8px solid #333;
}

.phone-frame__notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: var(--secondary-color);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 2;
}

.phone-frame__buttons {
    position: absolute;
    right: -12px;
    top: 100px;
    z-index: 2;
}

.volume-button {
    width: 4px;
    height: 50px;
    background: #333;
    margin-bottom: 20px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.power-button {
    width: 4px;
    height: 80px;
    background: #333;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.phone-frame__screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
}

.phone-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain; /* Cambiado de cover a contain */
    background: #000; /* Fondo negro para los bordes */
}

@media (max-width: 968px) {
    .app-video__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .app-video__text {
        padding-right: 0;
    }

    .app-features-list li {
        justify-content: center;
    }

    .app-video__player {
        max-width: 300px;
    }
}

/* Hero Marquee */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-marquee {
    width: 100%;
    overflow: hidden;
    background: var(--primary-color);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-marquee__content {
    display: flex;
    white-space: nowrap;
    transform: translateX(0);
    transition: transform 0.1s linear;
    will-change: transform;
    padding: 0.25rem 0;
}

.hero-marquee:hover .hero-marquee__content {
    animation-play-state: paused;
}

.hero-marquee__content span {
    color: var(--grey);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-marquee__content span:hover {
    opacity: 1;
}

.hero-marquee__content i {
    color: var(--primary-color);
    font-size: 0.85rem;
    filter: drop-shadow(0 2px 4px rgba(255, 243, 0, 0.3));
    animation: spin 4s linear infinite;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.hero__shape--1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}

.hero__shape--2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 10%;
}

.hero__shape--3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 20%;
}

.hero__container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  z-index: 3;
}

.hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
  height: 100%;
  padding: 80px 0 0;
}

.hero__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 60%;
}

.hero__text {
  color: var(--white);
}

.hero__text h1 {
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero__text h1 span {
  color: var(--primary-color);
  display: block;
}

.hero__description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.hero__feature svg path {
  fill: var(--primary-color);
}

.hero__feature i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.hero__image {
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
  object-fit: contain;
  max-height: 40vh;
}

.hero__image:hover {
  transform: translateY(-10px);
}

.hero__background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    z-index: 1;
    overflow: hidden;
}

.hero__background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.7) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}
.hero__right {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  width: 35%;
}

.hero__login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.hero__login-header h2 {
  font-size: 1.75rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.hero__login-header p {
  color: #666;
}



.section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section__title {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.title-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    animation: spin 4s linear infinite;
}

.title-icon:last-child {
    animation-direction: reverse;
}

/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    padding: 2rem;
}

.video-overlay .cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.video-overlay .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-overlay .btn--primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.video-overlay .btn--outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.video-overlay .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.video-overlay h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.video-overlay p {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Tutorials Section */
.tutorials {
    padding: 6rem 0;
    background: #f8f9fa;
}

.tutorials__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tutorials__header {
    text-align: center;
    margin-bottom: 4rem;
}

.tutorials__title {
    font-size: 2.5rem;
    font-family: var(--title-font);
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.tutorials__description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.tutorials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    gap: 2rem;
}

.tutorial-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tutorial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.tutorial-card__icon {
  background: var(--primary-color);
  color: var(--grey);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-radius: 1rem 1rem 0 0;
  margin-bottom: 1rem;
  width: 100%;
}

.tutorial-card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tutorial-card__content h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.tutorial-card__content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tutorial-card__features {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}

.tutorial-card__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #444;
  margin-bottom: 0.75rem;
}

.tutorial-card__features li i {
  color: var(--primary-color);
  font-size: 1rem;
}

.tutorial-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--primary-color);
  color: var(--grey);
  text-decoration: none;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s ease;
  margin-top: auto;
}

.tutorial-card__button:hover {
  background: #000;
}

@media (max-width: 768px) {
  .tutorials {
    padding: 4rem 0;
  }

  .tutorials__title {
    font-size: 2rem;
  }

  .tutorials__description {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .tutorial-card__icon {
    height: 80px;
    font-size: 2rem;
  }

  .tutorial-card__content {
    padding: 1.5rem;
  }
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: #000;
}

.cta__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.cta-content {
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.cta-buttons .btn--primary {
    background: #FFD700;
    color: #000;
}

.cta-buttons .btn--outline {
    border: 2px solid #FFD700;
    color: #FFD700;
    background: transparent;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Footer */

.footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__logo img {
    height: 40px;
    width: auto;
}

.footer__description {
    color: #999;
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer__social a:hover {
    color: var(--primary-color);
}

.footer__links h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__links a, .footer__links li {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover, .footer__links li:hover {
    color: var(--primary-color);
}

.footer__links i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}


.footer__form {
    display: flex;
    gap: 0.5rem;
}

.footer__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    background: #222;
    color: #fff;
    font-size: 0.9rem;
}

.footer__input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.footer__button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 194, 6, 0.3);
}

.footer__divider {
    height: 1px;
    background: #333;
    margin: 2rem 0;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer__copyright {
    color: #999;
    font-size: 0.9rem;
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: var(--primary-color);
}


/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section__header {
  margin-bottom: 4rem;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--grey);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-card__icon {
    transform: rotate(0deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.features__cta {
    text-align: center;
    background: var(--primary-gradient);
    padding: 4rem;
    border-radius: 24px;
    color: var(--white);
    margin-top: 6rem;
}

.features__cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .features__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .features__cta {
        padding: 3rem 2rem;
    }

    .features__cta-text {
        font-size: 1.2rem;
    }
}

/* FAQ Section */
.faq__question svg {
    transition: transform 0.3s ease;
}

.faq__item[open] .faq__question svg {
    transform: rotate(180deg);
}

.faq__item[open] {
    margin-bottom: 1rem;
}

.faq__answer {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 0.5rem;
    transform-origin: top;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq__answer p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.faq__answer ul,
.faq__answer ol {
    margin: 0;
    padding-left: 1.5rem;
}

.faq__answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq__answer li:last-child {
    margin-bottom: 0;
}

/* Features List Section */
.features-list {
    padding: 8rem 0;
    background: #f8f9fa;
}

.features-list__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.features-list__current,
.features-list__roadmap {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.features-list__current .section__header,
.features-list__roadmap .section__header {
    text-align: left;
    margin-bottom: 2rem;
}

.features-list__current .section__title,
.features-list__roadmap .section__title {
    font-size: 2rem;
    margin: 0.5rem 0;
}

.features-list__current .section__description,
.features-list__roadmap .section__description {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.features-list__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-item svg {
  margin-top: 7px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-item__content h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature-item__content p {
    color: #666;
    line-height: 1.5;
}

.feature-item--coming-soon {
    background: linear-gradient(45deg, #f8f9fa, #fff);
    border: 2px dashed #e0e0e0;
}

.feature-item--coming-soon i {
    color: #888;
    background: rgba(0,0,0,0.05);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge--success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.badge--coming-soon {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

/* Press Section */
.press {
  padding: 6rem 0;
  background: var(--white);
}

.press__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.press__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}


.press__title {
  font-family: var(--title-font);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.press__subtitle {
  font-size: 1.2rem;
  color: var(--grey);
  margin-bottom: 3rem;
  line-height: 1.4;
}

.press__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.press_feateure-cont {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.press__feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 8px;
}

.press__feature-icon svg path {
  fill: var(--grey);
}

.press__feature h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--secondary-color);
}

.press__feature p {
  color: var(--grey);
  line-height: 1.4;
  margin: 1rem 0 0;
}

.press__contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.press__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.press__contact-item i {
  position: absolute;
  top: 0;
  left: -24px;
  color: var(--grey);
  font-size: 1rem;
}

.press__contact-item span {
  font-size: 0.8rem;
  color: var(--grey);
}

.press__contact-item p {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.press__kit {
  text-align: center;
  background: var(--primary-color);
  padding: 1rem;
  border-radius: 8px;
}

.press__kit i {
  position: static;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.press__kit .btn {
  font-weight: 600;
  color: var(--secondary-color);
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}

.press__kit:hover .btn{
  color: var(--white);
}

.press__kit span {
  font-size: 0.75rem;
  color: var(--secondary-color);
}

.press__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}


.press__header {
  text-align: center;
  margin-bottom: 3rem;
}

.press__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--primary-color);
  color: var(--grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.press__header h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.press__header p {
  font-size: 1.2rem;
  color: #666;
}

.press__contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.press__contact-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.press__contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  background: var(--white);
}

.press__contact-item i {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.press__contact-item strong {
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.press__contact-item span {
  font-size: 1rem;
  color: #666;
}

.press__contact-item svg path {
  fill: var(--grey);
}

.press__contact-item.press__kit:hover svg path {
  fill: var(--white);
}
.press__kit {
  background: var(--primary-color);
}

.press__kit svg,
.press__kit strong,
.press__kit span {
  color: var(--grey);
}

.press__kit:hover strong,
.press__kit:hover span,
.press__kit:hover svg {
  color: var(--white);
}

.press__kit:hover {
  background: var(--grey);
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
  background: var(--white);
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: visible;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--primary-color);
  color: var(--grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.testimonials__header h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.testimonials__header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonials Slider */
.testimonials-slider {
  width: 90vw;
  margin: 3rem auto;
  position: relative;
  padding: 0 4rem;
}

.testimonials-slider__navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
}

.testimonials-slider__navigation .swiper-button-next,
.testimonials-slider__navigation .swiper-button-prev {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.testimonials-slider .swiper-slide {
  height: auto;
  padding: 1rem;
}

.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-button-prev {
  color: var(--primary-color);
  background: var(--white);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 1 !important;
  margin: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.testimonials-slider .swiper-button-prev {
  left: 0;
}

.testimonials-slider .swiper-button-next {
  right: 0;
}

.testimonials-slider .swiper-button-next::after,
.testimonials-slider .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.testimonials-slider .swiper-button-next:hover,
.testimonials-slider .swiper-button-prev:hover {
  background: var(--primary-color);
  color: var(--white);
}

.testimonials-slider .swiper-pagination {
  position: relative;
  bottom: -2rem;
}

.testimonials-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials-slider .swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 24px;
  border-radius: 5px;
}

.testimonials-slider .swiper-button-next:after,
.testimonials-slider .swiper-button-prev:after {
  font-size: 1.2rem;
}

.testimonials-slider__navigation .swiper-button-next {
  right: -1.5rem;
}

.testimonials-slider__navigation .swiper-button-prev {
  left: -1.5rem;
}


.testimonials-slider .swiper-pagination {
  position: relative;
  bottom: -2rem;
  opacity: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
}

.testimonials-slider .swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.3;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color);
  transform: scale(1.2);
}

.testimonial-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-card__avatar {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.testimonial-card__info {
  flex: 1;
}

.testimonial-card__info h3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.testimonial-card__info span {
  font-size: 0.9rem;
  color: #666;
}

.testimonial-card__quote {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
  opacity: 0.2;
}

.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__rating {
  color: var(--primary-color);
  font-size: 1.1rem;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
}

.btn-download {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn-download:hover {
  background-color: #3691c9;
}

/* FAQ Section */
.faq {
  padding: 6rem 0;
  background: #f8f9fa;
}

.faq__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq__header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--primary-color);
  color: var(--grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.faq__header h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.faq__header p {
  font-size: 1.2rem;
  color: #666;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq__category h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq__item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq__item summary {
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__question {
  position: relative;
  padding: 1.25rem;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background-color 0.3s ease;
}

.faq__question:hover {
  opacity: 0.5;
}

.faq__question i {
  transition: transform 0.3s ease;
}

.faq__question.active {
  color: var(--grey);
}

.faq__question.active i {
  transform: rotate(180deg);
}

/* Ocultar respuesta cuando details está cerrado */
details:not([open]) .faq__answer {
  display: none;
}

/* Mostrar respuesta cuando details está abierto */
details[open] .faq__answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}




/* WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.section {
  padding: 4rem 0;
}

.section__title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section__description {text-align: center;
  font-size: 1.2rem;
  color: #666;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq__item {
  margin-bottom: 1rem;
}

.faq__question {
  cursor: pointer;
  padding: 1rem;
  background: #f8f9fa;
}


.testimonials__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonials__item {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.counter__container {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

/* Videos Section */
.videos-section {
  padding: 5rem 0;
  background-color: #f8f8f8;
}

.videos-section .section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.videos-slider {
  width: 100%;
  padding: 20px 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding: 0 15px;
}

.video-wrapper iframe {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.videos-slider .swiper-button-next,
.videos-slider .swiper-button-prev {
  color: var(--primary-color);
}

.videos-slider .swiper-button-next:hover,
.videos-slider .swiper-button-prev:hover {
  color: var(--secondary-color);
}

.videos-slider .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.videos-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.videos-slider .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .videos-section {
    padding: 3rem 0;
  }
  
  .video-wrapper iframe {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .video-wrapper iframe {
    height: 200px;
  }
}

.counter__item {
  font-size: 2rem;
  font-weight: bold;
}

/* Counter Section */
.counter-section {
  background: var(--secondary-color);
  color: var(--white);
  padding: 4rem 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  text-align: center;
}

.counter-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.counter-item:hover {
  transform: translateY(-10px);
}

.counter-item__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.counter-item__number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.counter-plus {
  color: var(--primary-color);
}

.counter-item__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.counter-item__description {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.4;
}

.hero__feature i {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  color: var(--primary-color);
  filter: drop-shadow(0 2px 4px rgba(255, 243, 0, 0.3));
  animation: spin 4s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.footer {
  background: var(--grey);
  color: var(--white);
  padding: 2rem 0;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}


/* Botones login y registro */
.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero__btn {
  display: inline-block;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background-color: #ffe600;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  border: none;
}

.hero__btn:hover {
  background-color: #ffdd00;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero__btn--secondary {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.hero__btn--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}
