/**
 * Konektor Chile - Responsive Styles
 * Media queries para diseño responsive
 */

/* ==================== TABLET (max-width: 1024px) ==================== */
@media (max-width: 1024px) {
  /* Typography adjustments */
  .hero-title-enhanced {
    font-size: var(--text-5xl);
  }

  .section-title {
    font-size: var(--text-4xl);
  }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .hero-visual {
    order: -1;
  }

  .tech-showcase {
    height: 400px;
  }

  /* Stats */
  .stats-grid-enhanced {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Value Proposition */
  .value-grid {
    grid-template-columns: 1fr;
  }

  /* Solutions */
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline::before {
    display: none;
  }

  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: static;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ==================== MOBILE (max-width: 768px) ==================== */
@media (max-width: 768px) {
  /* Container */
  .container {
    padding: 0 var(--space-4);
  }

  /* Typography */
  .hero-title-enhanced {
    font-size: var(--text-4xl);
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .section-subtitle {
    font-size: var(--text-lg);
  }

  /* Navigation */
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Hero */
  .hero-enhanced {
    min-height: auto;
    padding: var(--space-12) 0;
  }

  .hero-badge {
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-3);
  }

  .hero-subtitle-enhanced {
    font-size: var(--text-lg);
  }

  .hero-cta-enhanced {
    flex-direction: column;
  }

  .hero-cta-enhanced .btn {
    width: 100%;
  }

  .hero-trust-badges {
    flex-direction: column;
    gap: var(--space-3);
  }

  .tech-showcase {
    height: 300px;
  }

  .tech-card {
    padding: var(--space-4);
  }

  .tech-icon {
    font-size: var(--text-3xl);
  }

  .stat-number {
    font-size: var(--text-2xl);
  }

  /* Stats */
  .stats-grid-enhanced {
    grid-template-columns: 1fr;
  }

  .stat-item-enhanced .stat-number {
    font-size: var(--text-5xl);
  }

  /* Sections */
  section {
    padding: var(--space-12) 0;
  }

  .section-header {
    margin-bottom: var(--space-10);
  }

  /* Process */
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: var(--text-2xl);
  }

  /* Contact Form */
  .contact-form-wrapper {
    padding: var(--space-6);
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  /* Buttons */
  .btn-primary-large,
  .btn-secondary-large {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
  }
}

/* ==================== SMALL MOBILE (max-width: 480px) ==================== */
@media (max-width: 480px) {
  /* Typography */
  .hero-title-enhanced {
    font-size: var(--text-3xl);
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  /* Hero */
  .tech-showcase {
    height: 250px;
  }

  .card-ai,
  .card-automation,
  .card-metaverse {
    padding: var(--space-3);
  }

  .tech-icon {
    font-size: var(--text-2xl);
  }

  .tech-label {
    font-size: var(--text-sm);
  }

  .stat-number {
    font-size: var(--text-xl);
  }

  .stat-label {
    font-size: var(--text-xs);
  }

  /* Stats */
  .stat-item-enhanced .stat-number {
    font-size: var(--text-4xl);
  }

  .stat-item-enhanced .stat-label {
    font-size: var(--text-base);
  }

  /* Cards */
  .value-card,
  .solution-card {
    padding: var(--space-6);
  }

  .solution-title {
    font-size: var(--text-2xl);
  }

  /* Contact */
  .contact-title {
    font-size: var(--text-3xl);
  }

  .contact-description {
    font-size: var(--text-lg);
  }
}

/* ==================== LANDSCAPE MOBILE ==================== */
@media (max-height: 600px) and (orientation: landscape) {
  .hero-enhanced {
    min-height: auto;
    padding: var(--space-10) 0;
  }

  .hero-visual {
    display: none;
  }
}
