@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
  --color-primario: #7e22ce;
  --color-secundario: #0891b2;
  --color-fondo: #0f172a;
  --color-superficie: #1e293b;
  --color-texto-principal: #e2e8f0;
  --color-texto-secundario: #94a3b8;
  --color-exito: #22c55e;
  --color-error: #ef4444;
}

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.7;
  color: var(--color-texto-principal);
  background-color: var(--color-fondo);
}

a {
  color: var(--color-secundario);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-primario);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER Y NAVEGACIÓN */
.header {
  background-color: var(--color-superficie);
  padding: 1rem 0;
  border-bottom: 1px solid #334155;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-primario);
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--color-texto-principal);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
}

.hero {
  background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1593352219757-04b3a4a90626?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
  padding: 6rem 1rem;
  text-align: center;
  color: #fff;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-title .highlight {
  color: var(--color-primario);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--color-texto-secundario);
}

.cta-button {
  background: linear-gradient(90deg, var(--color-primario), var(--color-secundario));
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(126, 34, 206, 0.25);
  color: #fff;
}

.review-section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-texto-principal);
}
.section-title .highlight{
  color: var(--color-primario);
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  color: var(--color-texto-secundario);
}

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

.info-block {
  background-color: var(--color-superficie);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #334155;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-block:hover {
  transform: translateY(-5px);
  border-color: var(--color-primario);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-icon {
  font-size: 2rem;
  color: var(--color-primario);
}

.info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.info-block p, .info-block ul {
  color: var(--color-texto-secundario);
  font-size: 1rem;
}

.info-block ul {
  list-style: none;
  padding-left: 0;
}

.info-block li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 0.5rem;
}

.info-block li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-exito);
  font-weight: 700;
}

.verdict-section {
  background-color: var(--color-superficie);
  padding: 4rem 1rem;
  text-align: center;
}

.verdict-box {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-fondo);
  padding: 2.5rem;
  border-radius: 12px;
}

.verdict-box .section-title {
  margin-bottom: 1.5rem;
}

.pros-cons {
  display: flex;
  gap: 2rem;
  text-align: left;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.pros-list, .cons-list {
  flex: 1;
}

.pros-cons h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.pros-cons ul {
  list-style: none;
}

.pros-cons li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 0.5rem;
}

.pros-list h3 { color: var(--color-exito); }
.pros-list li::before { content: '+'; color: var(--color-exito); position: absolute; left: 0; font-weight: 900; }

.cons-list h3 { color: var(--color-error); }
.cons-list li::before { content: '-'; color: var(--color-error); position: absolute; left: 0; font-weight: 900; }

.footer {
  background-color: #000;
  padding: 2.5rem 1rem;
  color: var(--color-texto-secundario);
  border-top: 1px solid #334155;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #334155;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.footer-nav-item a {
  font-weight: 500;
  color: var(--color-texto-secundario);
  transition: color 0.3s ease;
}

.footer-nav-item a:hover {
  color: #fff;
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem; /* Espacio entre logos */
}

.cert-logo {
  height: 28px; /* Altura consistente para los logos */
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.cert-logo:hover {
  opacity: 1;
}

.age-restriction {
  border: 2px solid var(--color-texto-secundario);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-texto-secundario);
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}

.legal-page {
  padding: 4rem 0;
}

.legal-content {
  background-color: var(--color-superficie);
  padding: 2.5rem;
  border-radius: 12px;
}
.legal-content h2 {
  font-size: 1.8rem;
  color: var(--color-primario);
  margin-bottom: 1rem;
}
.legal-content h3 {
  font-size: 1.4rem;
  color: var(--color-secundario);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.legal-content p, .legal-content li {
  color: var(--color-texto-secundario);
}
.legal-content ul {
  padding-left: 20px;
}

.getting-started-section {
  padding: 4rem 0;
  background-color: var(--color-fondo);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

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

.step-item.reverse {
  flex-direction: row-reverse;
}

.step-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.step-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.step-image:hover img {
  transform: scale(1.05);
}

.step-content {
  flex: 1;
  position: relative;
  padding-left: 2rem;
}

.step-number {
  position: absolute;
  left: -1rem;
  top: -1.5rem;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(126, 34, 206, 0.15);
  z-index: 1;
  line-height: 1;
}

.step-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primario);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.step-content p {
  font-size: 1.1rem;
  color: var(--color-texto-secundario);
  position: relative;
  z-index: 2;
}

.step-item,
.step-item.reverse {
  flex-direction: column;
  gap: 2rem;
}

.step-content {
  padding-left: 0;
  text-align: center;
}

.step-number {
  position: static;
  display: block;
  text-align: center;
  margin-bottom: -1.5rem;
}

.step-title {
  font-size: 1.8rem;
}

.hamburger-menu { display: none; }

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-superficie);
  color: var(--color-texto-secundario);
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  z-index: 1100;
  border-top: 1px solid #334155;
  transition: transform 0.5s ease-in-out;
}

.cookie-consent-banner.hidden {
  transform: translateY(100%);
}

.cookie-consent-banner p {
  margin: 0;
  text-align: center;
}

.cookie-consent-banner a {
  color: var(--color-secundario);
  text-decoration: underline;
}

.cookie-accept-btn {
  background-color: var(--color-primario);
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
}

/* Ajustes para móvil */
@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2.2rem; }
  .pros-cons { flex-direction: column; }

  .navbar-nav {
    display: none;
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background-color: var(--color-fondo);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .navbar-nav.active { display: flex; }
  .nav-link { font-size: 1.5rem; }

  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
  }
  .hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--color-texto-principal);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
  }

  .hamburger-menu.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}