/* ============================================
   RESPONSIVE ADICIONAL - MOBILE OPTIMIZATIONS
   ============================================ */

@media (max-width: 768px) {
    /* Contenedor principal */
    .container {
        padding: 0 1rem;
    }
    
    /* Títulos y textos */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Botones */
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Stats Bar */
    .stats-bar {
        padding: 2rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    /* Pricing Cards */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    /* Process Steps */
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step.step-reverse {
        flex-direction: column;
    }
    
    .step-visual,
    .step-content {
        max-width: 100%;
    }
    
    /* Imágenes generales */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Social Proof */
    .social-proof {
        flex-direction: column;
        text-align: center;
    }
    
    .avatars {
        justify-content: center;
    }
    
    /* Checklist */
    .checklist-box {
        padding: 1.5rem;
    }
    
    /* Factor Cards */
    .factor-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Payment Options */
    .payment-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Business Breakdown */
    .breakdown-bar {
        flex-direction: column;
        height: auto;
    }
    
    .breakdown-segment {
        width: 100% !important;
        height: 60px;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    /* Hero ultra-mobile */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
    }
    
    .hero-visual {
        height: 280px;
    }
    
    .hero-img {
        height: 250px;
    }
    
    .floating-card {
        display: none; /* Ocultar en pantallas muy pequeñas */
    }
    
    /* Stats */
    .stat-item h3 {
        font-size: 2rem;
    }
    
    /* Botones más pequeños */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Landscape móvil */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .hero-img {
        height: 280px;
    }
}
