/* ===== RESPONSIVE COMPLETO ===== */

/* Tablets grandes y laptops */
@media (max-width: 1200px) {
  .navbar-container {
    padding: 1rem 2rem;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .sobre-mi-grid {
    gap: 2rem;
    padding: 0 2rem;
  }
  .experiencias-grid {
    padding: 0 2rem;
  }
}

/* Tablets medianas */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
  .experiencias-grid {
    gap: 1.5rem;
  }
  .servicio-card {
    max-width: 320px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* Tablets pequeñas y móviles grandes */
@media (max-width: 768px) {
  .navbar-links {
    gap: 1rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-section {
    padding: 3rem 1rem;
    min-height: 70vh;
  }
  .sobre-mi-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .sobre-mi-imagen img {
    max-width: 300px;
    margin: 0 auto;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .testimonial-metrics {
    flex-direction: column !important;
    gap: 1.5rem;
  }
  .testimonial-metrics .feature-item {
    min-width: 280px;
  }
  .mystery-band {
    margin: 0 1rem 2rem 1rem;
  }
}

/* Móviles medianos */
@media (max-width: 600px) {
  .navbar-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .navbar-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .navbar-links a {
    font-size: 0.9rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .servicio-card {
    max-width: 100%;
    margin: 0 1rem;
    min-height: 420px;
  }
  .servicio-card-image {
    height: 250px;
  }
  .servicio-card-title {
    font-size: 1.4rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .feature-list {
    max-width: 100%;
    gap: 1.1rem;
  }
  .feature-item {
    padding: 0.9em 1em;
  }
  .feature-number {
    min-width: 48px;
    font-size: 1.2em;
  }
  .mystery-band {
    padding: 2rem 1rem;
  }
  .mystery-band p {
    font-size: 1.1rem;
  }
  .real-stories {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .real-stories .section-title {
    font-size: 1.5rem;
  }
  .footer {
    padding: 2rem 1rem;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .servicio-card {
    min-height: 400px;
    margin: 0 0.5rem;
  }
  .servicio-card-image {
    height: 200px;
  }
  .servicio-card-title {
    font-size: 1.3rem;
  }
  .servicio-card-desc {
    font-size: 0.8rem;
  }
  .metric-badge {
    width: 70px;
    height: 70px;
  }
  .metric-number {
    font-size: 1.1rem;
  }
  .metric-label {
    font-size: 0.6rem;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Móviles muy pequeños */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .navbar-links {
    gap: 0.3rem;
  }
  .navbar-links a {
    font-size: 0.8rem;
    padding: 0.3rem;
  }
  .servicio-card {
    margin: 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

/* Ajustes para orientación horizontal en móviles */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 1rem;
  }
  .sobre-mi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* Ajustes para alturas pequeñas */
@media (max-height: 600px) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 1rem;
  }
  .hero-title {
    font-size: 2rem;
  }
}
