* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

/* Header Section */
.hero {
    background-image: url('images_web/fondo-hero.jpg'); /* Cambia por la ruta real */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Oscurece la imagen */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.4em;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: #ff5722;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #e64a19;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #1a1a1a;
    text-align: center;
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    background-color: #2c2c2c;
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature img {
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.feature h3 {
    font-size: 1.8em;
    margin-top: 15px;
}

.feature p {
    font-size: 1.2em;
}

/* Screenshot Section */
.screenshots {
    padding: 80px 0;
    background-color: #1a1a1a;
    text-align: center;
}

.screenshot-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.screenshot {
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.screenshot:hover {
    transform: translateY(-10px);
}

.screenshot img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: #121212;
    text-align: center;
}

.video-container iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 10px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-size: 1em;
    color: #bdbdbd;
}

.footer .social-links a {
    margin: 0 10px;
    font-size: 1.2em;
    color: #bdbdbd;
    transition: color 0.3s ease;
}

.footer .social-links a:hover {
    color: #ff5722;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeIn {
    animation-name: fadeIn;
}

.animate__fadeInUp {
    animation-name: fadeIn;
    animation-duration: 1.5s;
}

.animate__delay-1s {
    animation-delay: 1s;
}

.animate__delay-2s {
    animation-delay: 2s;
}

.animate__delay-3s {
    animation-delay: 3s;
}

.how-it-works {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 600;
    color: #333;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.step p {
    font-size: 1rem;
    color: #666;
}

.privacy-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
}

.privacy-item h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #ff5722;
}

.privacy-item p {
    font-size: 1.1em;
    color: #e0e0e0;
    line-height: 1.6;
}

.privacy-item a {
    color: #ff5722;
    text-decoration: underline;
}


@media (max-width: 768px) {
    .features {
      flex-direction: column;
      align-items: center;
    }
  
    .feature {
      width: 90%;
    }
  
    .screenshot-gallery {
      flex-direction: column;
      align-items: center;
    }
  
    .screenshot {
      width: 90%;
    }
  
    .hero h1 {
      font-size: 2.2em;
    }
  
    .hero p {
      font-size: 1.1em;
    }
  
    .cta-btn {
      font-size: 1em;
      padding: 12px 24px;
    }
  }
  
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 1.8em;
    }
  
    .hero p {
      font-size: 1em;
    }
  
    .about h2,
    .how-it-works h2 {
      font-size: 2em;
    }
  
    .feature h3,
    .step h3 {
      font-size: 1.4em;
    }
  }
  