body { font-family: 'Inter', sans-serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }
/* Hero section text - 90% viewport coverage */
.text-gradient { 
    color: #fde047;
    font-weight: 900;
}

/* Hero section specific styles */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 4xl;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 4.8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-stats {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 3xl;
    margin-left: auto;
    margin-right: auto;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: clamp(0.875rem, 2vw, 1rem);
    opacity: 0.8;
}

/* Gradient text for headings */
.text-gradient-heading {
    background: linear-gradient(135deg, #1E3A8A 0%, #0ea5e9 30%, #3b82f6 60%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient text for body content */
.text-gradient-body {
    background: linear-gradient(135deg, #1E3A8A 0%, #0ea5e9 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient text for accent elements */
.text-gradient-accent {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animation for gradient text */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Mobile responsive gradient text */
@media (max-width: 768px) {
    .text-gradient {
        background-size: 200% 200%;
        animation-duration: 5s;
    }
    
    .hero-section {
        min-height: 90vh;
        padding: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .text-gradient {
        background-size: 150% 150%;
        animation-duration: 6s;
    }
    
    .hero-section {
        min-height: 90vh;
        padding: 0.5rem;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
}
.bg-gradient-elevare { background: linear-gradient(135deg, #1E3A8A 0%, #0ea5e9 50%, #3b82f6 100%); }
/* Smooth scrolling */
html { scroll-behavior: smooth; }
/* Loading state */
.loading { opacity: 0.7; pointer-events: none; }
/* Success message */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10B981;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.success-message.show { transform: translateX(0); }
/* Error message */
.error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #EF4444;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.error-message.show { transform: translateX(0); }

/* Marca de agua flotante en Hero */
.hero-logo {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translate(-50%, -50%);
    width: 300px;   
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}
.logo-grande {
  position: absolute;
  top: 50%;
  left: 60.6666%;           /* 4/6 = 66.66% */
  transform: translate(-33.3333%, -50%);
  height: 150%;
  width: 35vw;         /* 1/6 del ancho de la ventana */
  max-width: none;
  min-width: 120px;         /* Opcional: tamaño mínimo */
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  object-fit: contain;
  object-position: center;
  display: none;
}
@media (min-width: 1024px) {
  .logo-grande {
    display: block;
  }
}
/* ============================= */
/* FORMULARIO DE CONTACTO ELEVARE */
/* ============================= */

.contact-section {
  max-width: 650px;
  background: #ffffff;
  margin: 60px auto;
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #1e3a8a;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  font-weight: 500;
  color: #111827;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15);
  outline: none;
}

.contact-form textarea {
  resize: none;
  min-height: 130px;
}

/* Botón */
.btn-submit {
  background-color: #1e3a8a;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 15px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background-color: #0f2e74;
  transform: translateY(-2px);
}

/* Hover section */
.contact-section:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

/* Responsivo */
@media (max-width: 768px) {
  .contact-section {
    margin: 30px 20px;
    padding: 25px 20px;
  }

  .contact-section h2 {
    font-size: 1.4rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .btn-submit {
    font-size: 0.95rem;
    padding: 12px;
  }
}
