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

body {
    font-family: Arial, sans-serif;
    color: #222;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

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

.logo {
    font-weight: bold;
    font-size: 1.2rem;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* Hero */
.hero {
    background: url("./imgs/1.png") center/cover no-repeat;
    color: white;
    position: relative;
    padding: 140px 20px 100px;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 0;
}

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

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 800px;
    margin-inline: auto;
}

.btn {
    display: inline-block;
    background-color: white;
    color: #000;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
}

/* Intro */
.intro {
    padding: 80px 0;
    text-align: center;
}

.intro h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Dark Section */
.section-dark {
    background: url("./imgs/2.png") center/cover no-repeat;
    color: white;
    position: relative;
    padding: 100px 0;
}

.section-dark-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 20px;
    border-radius: 12px;
    text-align: center;
}

.section-dark h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
}

.section-dark p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1rem;
    line-height: 1.6;
}

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

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .intro h2,
    .section-dark h2 {
        font-size: 1.5rem;
    }
}

/* Opiniones */
.opiniones {
    padding: 80px 0;
    text-align: center;
}

.opiniones h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.opiniones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.opinion-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    line-height: 1.6;
}

.opinion-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    background: url("./imgs/3.png") center/cover no-repeat;
    position: relative;
    padding: 100px 0;
}

.contact-overlay {
    background: rgba(0, 0, 0, 0.55);
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.contact-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-content p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: grid;
    gap: 15px;
}

.contact-form input {
    padding: 12px;
    border: 2px solid white;
    background: transparent;
    color: white;
    border-radius: 6px;
    font-size: 1rem;
}

.contact-form button {
    padding: 14px;
    background-color: white;
    color: #000;
    border: none;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
}

/* Footer */
.footer {
    background: #f9f9f9;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-right nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-right nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .opiniones-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nav {
        display: none;
    }
}

html {
    scroll-behavior: smooth !important;
}

/* Thank You Page */
.thank-you-body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
  }
  
  .thank-you-hero {
    background: url('./imgs/4.png') center/cover no-repeat;
    padding: 120px 20px;
    position: relative;
    text-align: center;
  }
  
  .thank-you-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 20px;
    border-radius: 10px;
  }
  
  .thank-you-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .thank-you-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .btn-white {
    display: inline-block;
    margin-top: 30px;
    background: white;
    color: #000;
    font-weight: bold;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s ease;
  }
  
  .btn-white:hover {
    background: #e0e0e0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .thank-you-hero h1 {
      font-size: 2rem;
    }
  
    .thank-you-hero p {
      font-size: 1rem;
    }
  }
  