
        /* --- VARIABLES Y ESTILOS GLOBALES --- */
        :root {
            --brand-cyan: #00a4ae;
            --brand-hover: #006d74;
            --brand-dark: #103940;
            --p-soft-cyan: rgba(0, 164, 174, 0.25);
            --bg-gradient: linear-gradient(180deg, #ffffff 0%, #e6f7f8 100%);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --box-shadow: 0 4px 15px rgba(0, 177, 187, 0.3);
            --glass-bg: rgba(255, 255, 255, 0.4);

            --p-cyan: #00a4ae;
            --p-dark-cyan: #006d74;
            --p-soft-cyan: rgba(0, 164, 174, 0.25);
            --p-glow: rgba(125, 211, 252, 0.5);
            --p-violet: rgba(203, 185, 255, 0.3);


        }

        * {
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        body {
            background: #ffffff;
            color: var(--brand-dark);
            overflow-x: hidden;
            padding-top: 80px; /* Espacio para el menú fijo */
        }

        /* --- MENÚ FIJADO CON EFECTO SCROLL --- */
        .navbar-pulpos {
        

    backdrop-filter: blur(10px) saturate(110%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
        background: rgba(255, 255, 255, 0.97);
            box-shadow: none;
            padding: 0.5rem 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1030;
            transition: all 0.3s ease;
        }

.navbar-pulpos:before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}



        .navbar-pulpos.scrolled {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .navbar-pulpos .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .navbar-pulpos .logo {
            height: 50px;
            width: auto;
        }

        .navbar-nav-main {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: #103940;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s ease;
            padding: 0.5rem 0;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .nav-link:hover {
            color: var(--brand-cyan);
        }

        .nav-link i {
            font-size: 0.8rem;
            margin-left: 2px;
        }

        .nav-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            min-width: 220px;
            padding: 0.75rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .nav-item:hover .nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 0.6rem 1.5rem;
            color: #103940;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }

        .dropdown-item:hover {
            background-color: #f8fafb;
            color: var(--brand-cyan);
            padding-left: 1.75rem;
        }

        .navbar-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .btn-nav {
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-nav-login {
            color: #103940;
            background-color: transparent;
            border: 1px solid #dee2e6;
        }

        .btn-nav-login:hover {
            background-color: #f8f9fa;
            color: var(--brand-cyan);
            border-color: #adb5bd;
        }

        .btn-nav-trial {
            background-color: var(--brand-cyan);
            color: white;
            border: 1px solid var(--brand-cyan);
            box-shadow: var(--box-shadow);
        }

        .btn-nav-trial:hover {
            background-color: var(--brand-hover);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 177, 187, 0.3);
        }

        /* Menú móvil */
        .navbar-toggler {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 4px;
        }

        .toggler-line {
            width: 24px;
            height: 2px;
            background-color: #103940;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* --- SECCIÓN HERO PRINCIPAL CON VIDEO --- */
        .video-hero-section {
         background: radial-gradient(67.13% 47.81% at 71.53% 36.91%, var(--p-glow) 0%, rgba(186, 230, 253, 0.1) 64.39%, rgba(249, 168, 212, 0) 100%), radial-gradient(58.8% 49.38% at 0% 61.56%, rgba(0, 164, 174, 0.35) 0%, rgba(253, 224, 241, 0) 87.62%), radial-gradient(55.84% 50% at 50% 50%, var(--p-violet) 0%, rgba(216, 202, 254, 0) 100%), linear-gradient(180deg,  #ffffff  0%, #f0f9fa 100%);
            

         min-height: 90vh;
            padding: 80px 0;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .blur-blob {
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(0, 177, 187, 0.15);
            filter: blur(80px);
            border-radius: 50%;
            z-index: 0;
        }
        
        .blob-1 { top: -100px; left: -100px; }
        .blob-2 { bottom: -100px; right: -100px; background: rgba(51, 154, 185, 0.15); }

        /* Trust Badge */
        .trust-badge {
            
background-color: rgba(0, 164, 174, 0.1);
    color:#00a4ae;

            padding: 10px 24px;
            border-radius: 100px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 2.5rem;
            border: 1px solid rgba(0, 164, 174, 0.1);
            position: relative;
            z-index: 1;
        }

        .avatar-group {
            display: flex;
            align-items: center;
        }

        .avatar-group img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid white;
            margin-right: -10px;
            object-fit: cover;
        }

        /* Tipografía */
        .main-title {
            font-weight: 800;
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            color: var(--brand-dark);
        }

        .main-subtitle {
            font-size: 1.3rem;
            color: #6c757d;
            max-width: 650px;
            margin: 0 auto 4rem auto;
        }

        /* Video con efecto vidrio */
        .video-player-container {
            max-width: 1050px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .video-glass-frame {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 12px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 40px 80px rgba(16, 57, 64, 0.12);
            position: relative;
        }

        .video-ratio {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            overflow: hidden;
            border-radius: 20px;
            background: #000;
        }

        .video-ratio iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* CTA y Trustpilot */
        .cta-container {
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .btn-pulpos-lg {
            background: var(--brand-cyan);
            color: white;
            padding: 18px 50px;
            border-radius: 100px;
            font-weight: 700;
            font-size: 1.3rem;
            border: none;
            transition: var(--transition);
            box-shadow: var(--box-shadow);
            text-decoration: none;
            display: inline-block;
        }

        .btn-pulpos-lg:hover {
            background-color: var(--brand-hover);
            transform: translateY(-5px);
            box-shadow: 0 20px 45px rgba(0, 177, 187, 0.45);
            color: white;
        }

        .trust-stars {
            margin-top: 1.5rem;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .stars-color {
            color: #ffb400;
        }

        /* --- SECCIONES DE FUNCIONALIDADES --- */
        .content-section {
            padding: 100px 0;
            overflow: hidden;
        }

        .bg-light-gray {
            background-color: #f8f9fa;
        }

        .badge-custom {
            background-color: rgba(0, 164, 174, 0.1);
            color: var(--brand-cyan);
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section-title {
            color: var(--brand-dark);
            font-weight: 700;
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 2.5rem;
        }

        .features-grid-2x2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .features-list-vertical {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            margin-top: 4px;
            color: var(--brand-cyan);
        }

        .feature-texts h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--brand-dark);
            margin-bottom: 0.25rem;
        }

        .feature-texts p {
            font-size: 0.95rem;
            color: #6c757d;
            margin-bottom: 0;
            line-height: 1.5;
        }

        /* Imágenes funcionalidades */
        .img-wrapper {
            position: relative;
            width: 100%;
            max-width: 600px;
            height: 400px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .img-wrapper:hover {
            transform: translateY(-10px);
        }

        .img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .left-img {
            margin-left: auto;
            margin-right: 0;
        }

        .right-img {
            margin-left: 0;
            margin-right: auto;
        }

        .btn-cyan {
            background-color: var(--brand-cyan);
            color: white;
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: var(--box-shadow);
        }

        .btn-cyan:hover {
            background-color: var(--brand-hover);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 177, 187, 0.3);
        }

        /* --- SECCIÓN INTELIGENCIA ARTIFICIAL --- */
        .section-ia {
            background: 
                radial-gradient(67.13% 47.81% at 71.53% 28.91%, var(--p-glow) 0%, rgba(186, 230, 253, 0.1) 64.39%, rgba(249, 168, 212, 0) 100%), 
                radial-gradient(58.8% 49.38% at 0% 61.56%, rgba(0, 164, 174, 0.35) 0%, rgba(253, 224, 241, 0) 87.62%), 
                radial-gradient(55.84% 50% at 50% 50%, var(--p-violet) 0%, rgba(216, 202, 254, 0) 100%), 
                linear-gradient(180deg, #f0f9fa 0%, #ffffff 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .ia-badge {
            background: rgba(0, 164, 174, 0.15);
            color: var(--brand-cyan);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 2rem;
        }

        .ia-circle-icon {
            width: 48px;
            height: 48px;
            background-color: var(--brand-cyan);
            border: 2px solid rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(0, 164, 174, 0.3);
        }

        .ia-phone-container {
            width: 100%;
            max-width: 380px;
            margin: 0 auto;
            background-color: #ffffff;
            border: 4px solid rgba(0, 164, 174, 0.3);
            border-radius: 40px;
            padding: 10px;
            box-shadow: 0 26.8px 53.6px -12.864px rgba(0, 164, 174, 0.4);
            overflow: hidden;
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }

        .ia-phone-container:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .ia-video-frame {
            width: 100%;
            border-radius: 30px;
            display: block;
        }

        /* --- TESTIMONIALS --- */
        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover { 
            transform: translateY(-10px); 
        }

        .testimonial-card p {
            color: #4b5563;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-author img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* --- VIDEO TESTIMONIAL --- */
        .section-testimonial-video {
            background: 
                radial-gradient(circle at 100% 0%, rgba(0, 164, 174, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 0% 100%, rgba(0, 164, 174, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
                #ffffff;
            padding: 100px 0;
        }

        /* --- CTA FINAL CON PRECIO --- */
        .cta-final-section {
            background: 
                radial-gradient(80% 80% at 100% 100%, rgba(0, 164, 174, 0.25) 0%, transparent 100%),
                radial-gradient(60% 60% at 0% 0%, rgba(0, 109, 116, 0.1) 0%, transparent 100%),
                #f8fdfe;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }

        .handwritten-price {
            position: absolute;
            width: 180px;
            right: 10%;
            top: -40px;
            transform: rotate(5deg);
            z-index: 2;
        }

        .cta-title {
            color: var(--brand-dark);
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
        }

        .price-underline {
            border-bottom: 4px solid var(--brand-cyan);
            padding-bottom: 5px;
        }

        /* --- APP BANNER --- */
        .app-banner {
            background: linear-gradient(93deg, var(--brand-cyan) 0%, var(--brand-hover) 100%);
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            padding: 3rem;
        }

        .qr-img { 
            max-width: 120px; 
            border-radius: 12px; 
        }

        /* --- FAQ --- */
        .faq-item h6 {
            font-weight: 700;
            color: var(--brand-dark);
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .faq-item p { 
            font-size: 0.9rem; 
            line-height: 1.5; 
        }

        /* --- FOOTER --- */
        .footer-pulpos {
            background-color: #fff;
            border-top: 1px solid #f1f5f9;
        }

        .footer-title {
            color: var(--brand-dark);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #64748b;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--brand-cyan);
        }

        .social-link {
            width: 36px;
            height: 36px;
            background-color: #f8fafc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-dark);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--brand-cyan);
            color: #fff;
            transform: translateY(-3px);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 991px) {
            .navbar-toggler {
                display: flex;
            }
            
            .navbar-nav-main {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
             
    background-color: transparent;
   



background: rgb(255 255 255 / 97%);


                flex-direction: column;
                align-items: flex-start;
                padding: 1.5rem;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: all 0.4s ease;
                gap: 0;
            }
            
            .navbar-nav-main.active {
                max-height: 80vh;
                overflow-y: auto;
                opacity: 1;
                padding: 1.5rem;
            }
            
            .nav-item {
                width: 100%;
                margin-bottom: 0.5rem;
            }
            
            .nav-link {
                padding: 0.75rem 0;
                width: 100%;
                justify-content: space-between;
                border-bottom: 1px solid #f1f1f1;
            }
            
            .nav-dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                max-height: 0;
                overflow: hidden;
                padding: 0;
                transition: max-height 0.3s ease;
                background-color: #f9f9f9;
                border-radius: 6px;
                margin-top: 0.5rem;
            }
            
            .nav-item:hover .nav-dropdown {
                transform: none;
            }
            
            .nav-dropdown.active {
                max-height: 300px;
                padding: 0.5rem 0;
            }
            
            .dropdown-item {
                padding: 0.6rem 1rem;
            }
            
            .navbar-actions {
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                gap: 0.75rem;
            }
            
            .btn-nav {
                width: 100%;
                text-align: center;
                padding: 0.75rem 1.5rem;
            }
            
            .video-glass-frame {
                padding: 8px;
                border-radius: 20px;
            }
            
            .section-title {
                font-size: 2rem;
                text-align: center;
            }
            
            .badge-custom, .ia-badge {
                display: block;
                width: fit-content;
                margin: 0 auto 1.5rem;
            }
            
            .img-wrapper {
                width: 450px;
                height: 300px;
                margin: 40px auto 50px;
            }
            
            .left-img, .right-img {
                margin-left: auto;
                margin-right: auto;
            }
            
            .ps-lg-5 {
                padding-left: 0 !important;
            }
            
            .mt-4 {
                text-align: center;
                margin-bottom: 40px;
            }
            
            .ia-phone-container {
                margin-top: 4rem;
                max-width: 300px;
                transform: none;
            }
            
            .ia-circle-icon {
                margin: 0 auto;
            }
            
            .handwritten-price {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                margin: 20px auto;
                display: block;
            }
        }

        @media (max-width: 768px) {
            .img-wrapper {
                width: 420px;
                height: 280px;
            }
            
            .content-section {
                padding: 70px 0 30px;
            }
            
            .features-grid-2x2 {
                grid-template-columns: 1fr;
            }
            
            .cta-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            body {
                padding-top: 70px;
            }
            
            .navbar-pulpos {
                padding: 0.75rem 0;
            }
            
            .navbar-pulpos .logo {
                height: 39px;
            }
            
            .navbar-nav-main {
                top: 70px;
            }
            
            .img-wrapper {
                width: 390px;
                height: 260px;
                margin: 30px auto 60px;
                border-radius: 16px;
            }
            
            .section-title {
                font-size: 1.75rem;
                margin-bottom: 2rem;
            }
            
            .content-section {
                padding: 60px 0 20px;
            }
            
            .app-banner {
                padding: 2rem 1rem;
            }
        }


        /* --- APP BANNER MODIFICADO --- */
        .app-banner {
            background: linear-gradient(93deg, var(--brand-cyan) 0%, var(--brand-hover) 100%);
            border-radius: 24px;
            overflow: visible;
            position: relative;
            padding: 3rem;
            min-height: 300px;
        }

        /* Teléfono flotante - Escritorio */
        .app-phone-float {
            position: absolute;
            right: 30px;
            top: -39px;
            z-index: 10;
            width: 334px;
            height: auto;
        }

        .app-phone-img {
            width: 100%;
            height: auto;

        }

    

        /* Botones de descarga */
        .app-download-buttons {
            margin-bottom: 2rem;
        }

        .app-download-btn {
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .app-download-btn:hover {
            transform: translateY(-5px);
        }

        .app-store-img,
        .google-play-img {
            height: 50px;
            width: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Responsive para el teléfono flotante */
        @media (max-width: 1199px) {
            .app-phone-float {
                width: 240px;
                right: 20px;
                top: 57px;
            }
        }

        @media (max-width: 991px) {
            .app-phone-float {
                position: relative;
                width: 220px;
                right: auto;
                top: auto;
                margin: 40px auto -50px auto; /* Ajustado para móvil */
                display: block;
                order: 3; /* Para asegurar que esté al final */
            }
            
            .app-banner .row {
                display: flex;
                flex-direction: column;
            }
            
            .app-banner .col-lg-8 {
                order: 1;
            }
            
            .app-phone-float {
                order: 2;
                margin-top: 40px;
                margin-bottom: -50px; /* Hace que el teléfono sobresalga un poco */
            }
            
            .app-phone-img {
                transform: rotate(0deg);
            }
            
            .app-banner {
                padding: 2.5rem 1.5rem 3.5rem 1.5rem; /* Más padding abajo para el teléfono */
                text-align: center;
                overflow: visible;
            }
            
            .app-download-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .app-phone-float {
                width: 250px;
                margin: 30px auto -48px auto;
            }
            
            .app-banner {
                padding: 2rem 1rem 3rem 1rem;
            }
            
            .app-store-img,
            .google-play-img {
                height: 45px;
            }
        }



       @media (min-width: 1400px) {
           .navbar-pulpos .container {
               max-width: 980px;
           }    
              }    




              /* === MEJORAS PARA MÓVILES - SEPARACIÓN DE IMÁGENES === */

/* Ajuste general para todas las secciones en móvil */
@media (max-width: 767px) {
    
    /* Cada sección debe tener suficiente espacio inferior */
    .content-section {
        padding: 50px 0 30px 0;
    }
    
    /* Separación extra entre secciones */
    .content-section + .content-section {
        margin-top: 20px;
    }
    
    /* Contenedores de imagen - más pequeños y con más margen */
    .img-wrapper {
        width: 100%;
        max-width: 350px !important; /* Imágenes más pequeñas en móvil */
        height: 220px !important;    /* Altura proporcional */
        margin: 25px auto 40px auto !important; /* Más espacio abajo */
        border-radius: 16px;
    }
    
    /* Ajuste específico para imágenes en secciones pares e impares */
    .col-lg-5 .img-wrapper,
    .col-lg-7 .img-wrapper {
        margin-bottom: 35px !important;
    }
    
    /* Asegurar que el texto tenga espacio antes de la imagen */
    .col-lg-5, .col-lg-7 {
        margin-bottom: 0 !important;
    }
    
    /* Reducir el margen superior del título cuando sigue a una imagen */
    .order-1 .section-title {
        margin-top: 15px;
    }
    
    /* Ajuste para la última sección antes del footer */
    .content-section:last-of-type {
        padding-bottom: 50px;
    }
    
    /* Separación visual entre secciones - línea sutil opcional */
    .content-section:not(:last-of-type)::after {
        content: '';
        display: block;
        width: 80px;
        height: 2px;
        background: rgba(0, 164, 174, 0.2);
        margin: 40px auto 0 auto;
        border-radius: 2px;
    }
}

/* Ajustes específicos para tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .img-wrapper {
        max-width: 450px !important;
        height: 280px !important;
        margin: 30px auto 45px auto !important;
    }
    
    .content-section {
        padding: 60px 0 35px 0;
    }
}

/* Ajuste para pantallas muy pequeñas */
@media (max-width: 480px) {
    .img-wrapper {
        max-width: 300px !important;
        height: 190px !important;
        margin: 20px auto 35px auto !important;
    }
    
    .img-wrapper img,
    .img-wrapper div[style*="background"] {
        border-radius: 12px !important;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
}

/* Mejora para las imágenes de fondo gradiente */
.img-wrapper div[style*="background"] {
    transition: all 0.3s ease;
}

/* Asegurar que todas las imágenes tengan bordes redondeados */
.img-wrapper img,
.img-wrapper div[style*="background"] {
    border-radius: 15px;
    overflow: hidden;
}

/* Ajuste específico para la sección de IA en móvil */
@media (max-width: 767px) {
    .section-ia {
        padding: 60px 0 30px 0;
    }
    
    .ia-phone-container {
        margin: 30px auto 20px auto;
        max-width: 280px;
    }
    
    /* Separar la IA de la sección anterior */
    .section-ia {
        margin-top: 20px;
    }
}

/* Mejora para el CTA final en móvil */
@media (max-width: 767px) {
    .cta-final-section {
        padding: 60px 0 50px 0;
        margin-top: 20px;
    }
    
    .cta-final-section .container {
        padding: 0 20px;
    }
}

/* Ajuste para el banner de la app en móvil */
@media (max-width: 767px) {
    .app-banner {
        margin: 30px 15px 20px 15px;
        padding: 25px 15px 40px 15px;
    }
    
    .app-phone-float {
        margin-top: 25px !important;
        margin-bottom: -40px !important;
    }
}