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

body {
  font-family: 'Avenir', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 2px solid #FFD700;
  box-shadow: 0 4px 20px rgba(255,215,0,0.2);
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255,215,0,0.5);
  cursor: pointer;
}

.header nav {
  display: flex;
  gap: 30px;
}

.header nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.header nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FFD700;
  transition: width 0.3s ease;
}

.header nav a:hover::after {
  width: 100%;
}

main {
  padding-top: 100px;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}


.contacto-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .contacto-hero {
      text-align: center;
      padding: 80px 20px;
      background: linear-gradient(135deg, rgba(255,215,0,0.1), transparent);
      border-radius: 20px;
      margin-bottom: 60px;
    }

    .contacto-hero h1 {
      font-size: 3.5rem;
      color: #FFD700;
      margin-bottom: 20px;
      text-transform: uppercase;
      animation: fadeInDown 0.8s ease;
    }

    .contacto-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
    }

    .contacto-form-container {
      background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(0,0,0,0.8));
      border: 2px solid rgba(255,215,0,0.3);
      border-radius: 20px;
      padding: 40px;
    }

    .contacto-form-container h2 {
      color: #FFD700;
      font-size: 2rem;
      margin-bottom: 30px;
      text-transform: uppercase;
    }

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

    .form-group label {
      display: block;
      color: #FFD700;
      font-weight: 600;
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 15px;
      border: 2px solid rgba(255,215,0,0.3);
      background: rgba(0,0,0,0.6);
      color: #fff;
      border-radius: 10px;
      font-size: 1rem;
      font-family: inherit;
      transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #FFD700;
      box-shadow: 0 0 15px rgba(255,215,0,0.3);
    }

    .btn-enviar {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, #FFD700, #FFA500);
      color: #000;
      border: none;
      border-radius: 10px;
      font-size: 1.2rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-enviar:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255,215,0,0.5);
    }

    .contacto-info-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .info-card {
      background: rgba(255,215,0,0.05);
      border: 2px solid rgba(255,215,0,0.2);
      border-radius: 15px;
      padding: 30px;
      transition: all 0.3s ease;
    }

    .info-card:hover {
      border-color: #FFD700;
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(255,215,0,0.2);
    }

    .info-card h3 {
      color: #FFD700;
      font-size: 1.5rem;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .info-card .icon {
      font-size: 2rem;
    }

    .info-item {
      padding: 12px 0;
      color: rgba(255,255,255,0.85);
      font-size: 1.1rem;
      border-bottom: 1px solid rgba(255,215,0,0.1);
    }

    .info-item:last-child {
      border-bottom: none;
    }

    .info-item strong {
      color: #FFD700;
      display: inline-block;
      min-width: 120px;
    }

    .whatsapp-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }

    .btn-whatsapp {
      padding: 15px;
      background: #25D366;
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .btn-whatsapp:hover {
      background: #1fbd59;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(37,211,102,0.4);
    }

    .mensaje-exito {
      background: rgba(0,255,0,0.1);
      border: 2px solid rgba(0,255,0,0.3);
      color: #0f0;
      padding: 15px;
      border-radius: 10px;
      text-align: center;
      margin-bottom: 20px;
      display: none;
      animation: slideDown 0.5s ease;
    }

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

    @media (max-width: 968px) {
      .contacto-grid {
        grid-template-columns: 1fr;
      }
      
      .contacto-hero h1 {
        font-size: 2.5rem;
      }
    }

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

    .nosotros-hero {
      text-align: center;
      padding: 80px 20px;
      background: linear-gradient(135deg, rgba(255,215,0,0.1), transparent);
      border-radius: 20px;
      margin-bottom: 60px;
    }

    .nosotros-hero h1 {
      font-size: 3.5rem;
      color: #FFD700;
      margin-bottom: 20px;
      text-transform: uppercase;
      animation: fadeInDown 0.8s ease;
    }

    .nosotros-hero p {
      font-size: 1.3rem;
      color: rgba(255,255,255,0.8);
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .valores-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
    }

    .valor-card {
      background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(0,0,0,0.8));
      border: 2px solid rgba(255,215,0,0.3);
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      transition: all 0.4s ease;
    }

    .valor-card:hover {
      transform: translateY(-10px);
      border-color: #FFD700;
      box-shadow: 0 20px 40px rgba(255,215,0,0.3);
    }

    .valor-icon {
      font-size: 4rem;
      margin-bottom: 20px;
    }

    .valor-card h3 {
      color: #FFD700;
      font-size: 1.8rem;
      margin-bottom: 15px;
      text-transform: uppercase;
    }

    .valor-card p {
      color: rgba(255,255,255,0.8);
      line-height: 1.6;
      font-size: 1.05rem;
    }

    .historia-section {
      background: rgba(255,215,0,0.05);
      border: 2px solid rgba(255,215,0,0.2);
      border-radius: 20px;
      padding: 60px 40px;
      margin-bottom: 60px;
    }

    .historia-section h2 {
      color: #FFD700;
      font-size: 2.5rem;
      margin-bottom: 30px;
      text-align: center;
      text-transform: uppercase;
    }

    .historia-section p {
      color: rgba(255,255,255,0.85);
      font-size: 1.15rem;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin: 60px 0;
    }

    .stat-item {
      text-align: center;
      padding: 30px;
      background: rgba(0,0,0,0.6);
      border-radius: 15px;
      border: 2px solid rgba(255,215,0,0.2);
    }

    .stat-number {
      font-size: 3.5rem;
      color: #FFD700;
      font-weight: bold;
      display: block;
      margin-bottom: 10px;
    }

    .stat-label {
      color: rgba(255,255,255,0.8);
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }