/* RESPONSIVE ADICIONAL */

/* TABLETAS (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-content {
        padding-top: 15vh;
    }
    
    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MÓVILES PEQUEÑOS (menos de 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .hero {
        margin-top: 70px;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        gap: 2rem;
    }
}

/* ORIENTACIÓN HORIZONTAL EN MÓVILES */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }
}

/* DISPOSITIVOS CON PANTALLA TÁCTIL */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .btn {
        padding: 1rem 1.5rem;
        min-height: 44px; /* Tamaño mínimo para toque */
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Evita zoom en iOS */
    }
}

/* IMPRESIÓN */
@media print {
    #main-header,
    .hero-buttons,
    .menu-toggle,
    .social-links,
    footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    section {
        padding: 1cm 0;
        page-break-inside: avoid;
    }
}