/* ========================================
   TABLET RESPONSIVE (max-width: 1024px)
======================================== */
@media(max-width: 1024px) { 
    /* Navigation Section */
    .nav-menu { 
        gap: 20px; 
    } 
      

    /* About Section */
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-content h2 {
        font-size: 36px;
    }
    
    .about-image {
        min-height: 300px;
        order: -1;
    }

    /* Footer Section */
    .footer {
        padding: 50px 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

/* ========================================
   MOBILE RESPONSIVE (max-width: 768px)
======================================== */
@media(max-width: 768px) {
    /* Navigation Section - Simplificado para conversión */

    /* Ocultar menú de navegación completamente */
    .nav-menu {
        display: none !important;
    }

    /* Ocultar botón hamburguesa */
    .mobile-menu-toggle {
        display: none !important;
    }

    /* Mostrar SOLO logo + CTA */
    .header {
        padding: 10px 20px;
        justify-content: space-between;
    }

    .logo img {
        height: 50px;
    }

    .header .cta-button {
        display: inline-flex !important;
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 25px;
        white-space: nowrap;
    }

    /* Hero Section */
    .hero-cta {
        padding: 16px 30px;
        font-size: 16px;
        min-width: 200px;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 14px;
    }   
   
    
    /* Problems Section */
    .problems-section { 
        padding: 50px 20px; 
    }
    
    .problems-section h2 { 
        font-size: 28px; 
        margin-bottom: 15px; 
    }
    
    .problems-section .lead { 
        font-size: 16px; 
        margin-bottom: 30px; 
    }
    
    .problems-grid { 
        gap: 15px; 
    }
    
    .problem-item { 
        padding: 20px 15px; 
        gap: 15px; 
    }
    
    .problem-item .check-icon { 
        font-size: 20px; 
    }
    
    .problem-item h3 { 
        font-size: 18px; 
        margin-bottom: 8px; 
    }
    
    .problem-item p { 
        font-size: 14px; 
        line-height: 1.4; 
    }

    /* Process Section */

    .process-image {
        margin-bottom: 30px;
    }
    .process-image img {
        max-width: 100%;
        border-radius: 12px;
    }
    
    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 15px;
    }
    
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .testimonials-marquee-wrapper {
        flex-direction: row;
        height: 400px;
        gap: 0;
        justify-content: center;
    }

    .testimonials-marquee-group.is-down {
        display: none;
    }
    
    .testimonials-marquee-group {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
        margin-bottom: 15px;
        min-height: 150px;
    }
    
    .testimonials-author {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .testimonials-author-content {
        text-align: center;
    }
    
    /* About Section */
    .about-section {
        padding: 50px 20px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .about-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .about-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: left;
        max-width: none;
    }
    
    .about-features {
        margin-top: 25px;
        text-align: left;
        max-width: 100%;
    }
    
    .about-features li {
        margin-bottom: 15px;
        font-size: 15px;
        line-height: 1.5;
        align-items: flex-start;
    }
    
    .about-features li i {
        margin-right: 12px;
        font-size: 16px;
        margin-top: 3px;
    }
    
    .about-image {
        min-height: 250px;
        font-size: 14px;
        order: -1;
        margin-bottom: 20px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 50px 20px 70px 20px;
    }

    .cta-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    /* Footer Section */
    .footer {
        padding: 30px 0 15px 0;
    }

    .footer-container {
        padding: 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .footer-contact {
        padding-right: 0;
        order: 1;
    }
    
    .footer-contact h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .contact-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 20px;
        padding: 15px 20px;
        background: rgba(90, 185, 181, 0.08);
        border-radius: 10px;
        border-left: 3px solid #5AB9B5;
        gap: 12px;
        flex-wrap: nowrap;
    }
    
    .contact-item:last-child {
        border-bottom: none;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 0;
        font-size: 1.3rem;
        color: #5AB9B5;
        flex-shrink: 0;
    }
    
    .contact-item div {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .contact-item strong {
        font-size: 0.85rem;
        color: #3498db;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
    }
    
    .contact-item small {
        color: #d1d5db;
        font-size: 13px;
        font-style: italic;
    }
    
    .footer-map {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #34495e;
        padding-top: 20px;
        order: 2;
    }
    
    .map-container {
        min-height: 250px;
        margin-bottom: 20px;
    }
    
    .map-container iframe {
        height: 200px;
    }
    
    .footer-cta {
        margin: 20px 0 15px 0;
        padding: 15px 0;
    }
    
    .footer-cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .footer-cta-button:hover {
        background: #16a34a;
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(34, 197, 94, 0.5);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .footer-cta-button i {
        font-size: 18px;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    }
    
    .footer-legal {
        text-align: center;
        padding: 20px 0 10px;
        border-top: 1px solid rgba(125, 211, 252, 0.2);
        margin-top: 20px;
    }
    
    .footer-legal small {
        color: #d1d5db;
        font-size: 13px;
        line-height: 1.4;
    }
    
    /* Spacing Utilities */
    .trust-bar-section + .problems-section,
    .problems-section + .process-section,
    .process-section + .testimonials-section,
    .testimonials-section + .cta-section,
    .cta-section + .about-section { 
        margin-top: -20px; 
    }
    
    .lead {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 25px;
    }
}

/* ========================================
   SMALL MOBILE (max-width: 480px)
======================================== */
@media(max-width: 480px) {
    /* Header Mobile Pequeño */
    .logo img {
        height: 45px;
    }

    .header .cta-button {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }

    /* Hero Section */

    .hero-cta {
        padding: 14px 24px;
        font-size: 15px;
        min-width: 180px;
    }
    
    /* Problems Section */
    .problems-section { 
        padding: 40px 15px; 
    }
    
    .problems-section h2 { 
        font-size: 24px; 
    }
    
    .problem-item { 
        padding: 18px 12px; 
        gap: 12px; 
    }
    
    .problem-item h3 { 
        font-size: 16px; 
    }
    
    .problem-item p { 
        font-size: 13px; 
    }
    
    /* Process Section */
    .process-section { 
        padding: 40px 15px; 
    }
    
    .process-section h2 { 
        font-size: 24px; 
    }
    
    .process-step { 
        padding: 25px 15px; 
    }
    
    .process-step h3 { 
        font-size: 18px; 
    }
    
    .process-step p { 
        font-size: 13px; 
    }
    
    /* Testimonials Section */
    .testimonials-section h2 {
        font-size: 1.6rem;
    }
    
    .testimonial-card {
        padding: 15px 12px;
        min-height: 120px;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
    }
    
    /* About Section */
    .about-section {
        padding: 40px 15px;
    }
    
    .about-container {
        gap: 25px;
    }
    
    .about-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .about-content p {
        font-size: 15px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .about-features {
        margin-top: 20px;
    }
    
    .about-features li {
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    .about-features li i {
        margin-right: 10px;
        font-size: 14px;
    }
    
    .about-image {
        min-height: 200px;
        font-size: 13px;
        padding: 15px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 40px 15px 65px 15px;
    }

    .cta-section h2 {
        font-size: 24px;
    }
    
    /* Footer Section */
    .footer {
        padding: 25px 0 15px 0;
    }
    
    .footer-contact {
        padding: 20px 15px;
    }
    
    .footer-contact h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .contact-item i {
        margin-bottom: 0;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .contact-item div {
        font-size: 0.9rem;
    }
    
    .contact-item strong {
        font-size: 15px;
    }
    
    .footer-cta {
        margin: 25px 0 20px 0;
        padding: 20px 0;
    }

    .footer-cta-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .footer-cta-button i {
        font-size: 16px;
    }
    
    .map-container {
        min-height: 220px;
        border-radius: 8px;
    }
    
    .map-container iframe {
        height: 200px;
    }
}

/* ========================================
   VERY SMALL MOBILE (max-width: 360px)
======================================== */
@media(max-width: 360px) { 
    /* General CTA Buttons */
    .cta-button, 
    .hero-cta, 
    .footer-cta-button { 
        font-size: 16px; 
        padding: 14px 28px; 
        min-width: 160px;
    }    
   
    
    /* Problems Section */
    .problems-section { 
        padding: 35px 12px; 
    }
    
    .problem-item { 
        padding: 15px 10px; 
    }
    
    /* Process Section */
    .process-section { 
        padding: 35px 12px; 
    }
    
    .process-step { 
        padding: 20px 12px; 
    }
    
    /* About Section */
    .about-section {
        padding: 35px 12px;
    }
    
    .about-content h2 {
        font-size: 22px;
    }
    
    .about-content p {
        font-size: 14px;
    }
    
    .about-features li {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .about-features li i {
        font-size: 13px;
        margin-right: 8px;
    }
    
    .about-image {
        min-height: 180px;
        font-size: 12px;
        padding: 12px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 35px 12px 60px 12px;
    }
    
    /* Footer Section */
    .footer {
        padding: 25px 12px 12px;
    }
    
    .footer-contact {
        padding: 15px 12px;
    }
    
    .contact-item {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .contact-item div {
        font-size: 13px;
    }
    
    .contact-item i {
        font-size: 16px;
        width: 18px;
    }
    
    .footer-cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .footer-legal small {
        font-size: 12px;
    }
}