/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
  overflow-x: hidden;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a3441;
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-accept,
.btn-decline {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-accept {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
}

.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-decline {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
}

.btn-decline:hover {
  background: #333;
  color: white;
}

.cookie-link {
  color: #4ecdc4;
  text-decoration: none;
  font-size: 14px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 20, 25, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(15, 20, 25, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #4ecdc4;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4ecdc4, #44a08d);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
      135deg,
      rgba(15, 20, 25, 0.8) 0%,
      rgba(26, 35, 50, 0.8) 50%,
      rgba(42, 52, 65, 0.8) 100%
    ),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" style="stop-color:rgba(78,205,196,0.1)"/><stop offset="100%" style="stop-color:transparent"/></radialGradient></defs><circle cx="500" cy="500" r="500" fill="url(%23a)"/></svg>')
    no-repeat center center;
  background-size: cover;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 100px 20px;
}

.hero-text h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d, #ff6b35);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(78, 205, 196, 0.3);
}

.hero-text p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #4ecdc4;
  border: 2px solid #4ecdc4;
}

.btn-secondary:hover {
  background: #4ecdc4;
  color: white;
  transform: translateY(-3px);
}

/* Placeholder Images */
.placeholder-image {
  width: 100%;
  max-width: 500px;
  height: 300px;
  background: linear-gradient(135deg, #2a3441, #1a2332);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ecdc4;
  font-weight: 600;
  border: 2px solid #4ecdc4;
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.hero-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #1a2332, #2a3441);
  border-radius: 30px;
}

.concepto-image-real {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.screenshot {
  height: 200px;
}

.galeria-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.audiencia-image-real {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(135deg, #1a2332 0%, #2a3441 100%);
}

.section:nth-child(odd) {
  background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
}

/* Concepto Section */
.concepto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.concepto-text h2,
.mecanicas h2,
.caracteristicas h2,
.audiencia h2,
.galeria h2,
.testimonios h2,
.faq h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.concepto-text p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.concepto-text strong {
  color: #4ecdc4;
}

/* Mecánicas Section */
.mecanicas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mecanica-card {
  background: linear-gradient(135deg, #2a3441, #1a2332);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #4ecdc4;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mecanica-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(78, 205, 196, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.mecanica-card:hover::before {
  left: 100%;
}

.mecanica-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(78, 205, 196, 0.2);
}

.mecanica-icon {
  margin-bottom: 20px;
}

.placeholder-icon {
  font-size: 3rem;
}

.mecanica-card h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.mecanica-card p {
  color: #ccc;
  line-height: 1.6;
}

/* Características Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-item {
  background: linear-gradient(135deg, #1a2332, #2a3441);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.feature-item h3 {
  color: #4ecdc4;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.feature-item p {
  color: #ccc;
  line-height: 1.6;
}

/* Audiencia Section */
.audiencia-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.audiencia-text h3 {
  color: #ff6b35;
  font-size: 1.3rem;
  margin: 30px 0 15px 0;
}

.audiencia-text p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Galería Section */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 30px;
}

.galeria-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.galeria-item:hover {
  transform: scale(1.05);
}

.galeria-item p {
  color: #ccc;
  margin-top: 15px;
  font-weight: 500;
}

/* Testimonios Section */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonio-card {
  background: linear-gradient(135deg, #2a3441, #1a2332);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #4ecdc4;
  position: relative;
}

.testimonio-rating {
  color: #ff6b35;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonio-card p {
  color: #ccc;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonio-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonio-author strong {
  color: #4ecdc4;
  font-size: 1.1rem;
}

.testimonio-author span {
  color: #888;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #1a2332, #2a3441);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #4ecdc4;
}

.faq-question {
  padding: 20px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(78, 205, 196, 0.1);
}

.faq-question h3 {
  color: white;
  font-size: 1.1rem;
  margin: 0;
}

.faq-toggle {
  color: #4ecdc4;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
  padding: 0 30px 30px 30px;
  color: #ccc;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #ff6b35, #f7931e, #4ecdc4, #44a08d);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  text-align: center;
  padding: 100px 0;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn-download {
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.btn-download:hover {
  background: white;
  color: #333;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.download-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  color: white;
  margin-bottom: 5px;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, #1a2332, #0f1419);
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 20px;
}

.newsletter-content p {
  color: #ccc;
  margin-bottom: 30px;
}

.newsletter-form {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #4ecdc4;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  cursor: pointer;
}

.newsletter-note {
  color: #888;
  font-size: 0.9rem;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, #2a3441, #1a2332);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #4ecdc4;
}

.faq-question {
  padding: 20px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(78, 205, 196, 0.1);
}

.faq-question h4 {
  color: white;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

.faq-toggle {
  color: #4ecdc4;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
  padding: 0 30px 30px 30px;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f1419, #000000);
  padding: 60px 0 20px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #4ecdc4;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-section h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #4ecdc4;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  color: #4ecdc4;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #ff6b35;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-text h2 {
    font-size: 2.5rem;
  }

  .concepto-grid,
  .audiencia-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-buttons,
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats {
    gap: 30px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .placeholder-image {
    height: 250px;
  }

  .hero-placeholder {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .mecanicas-grid,
  .features-grid,
  .testimonios-grid {
    grid-template-columns: 1fr;
  }

  .galeria-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}
