/* ============================================
   CORRECCIONES MÓVIL - Logo, Menú y Layout
   ============================================ */

/* ============================================
   PREVENCIÓN GLOBAL DE OVERFLOW DE TEXTO
   ============================================ */

* {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    hyphens: auto !important;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* Todos los elementos de texto */
h1, h2, h3, h4, h5, h6,
p, span, a, li, div,
label, input, textarea, button,
.section__title, .section__description,
.card__title, .card__description,
.hero__title, .hero__description,
.about__text, .service__description,
.benefit__description, .reason__description,
.sector__title, .sector__description,
.approach__title, .approach__description,
.contact__title, .contact__description,
.footer__description {
    word-wrap: break-word !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
    hyphens: auto !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: clip !important;
}

/* ============================================
   1. LOGO - AJUSTE AL HEADER EN MÓVIL
   ============================================ */

@media screen and (max-width: 1024px) {
    .nav__logo {
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
    }

    .nav__logo-img {
        height: 2.5rem !important;
        width: auto !important;
        object-fit: contain !important;
    }

    .nav {
        height: 4rem !important;
        padding: 0 1rem !important;
    }

    .scroll-header .nav {
        height: 3.5rem !important;
    }

    .scroll-header .nav__logo-img {
        height: 2.2rem !important;
    }
}

@media screen and (max-width: 768px) {
    .nav__logo-img {
        height: 2.2rem !important;
    }

    .nav {
        height: 3.5rem !important;
    }

    .scroll-header .nav {
        height: 3rem !important;
    }

    .scroll-header .nav__logo-img {
        height: 2rem !important;
    }
}

@media screen and (max-width: 480px) {
    .nav__logo-img {
        height: 2rem !important;
    }

    .nav {
        height: 3.5rem !important;
    }
}

/* ============================================
   2. MENÚ HAMBURGUESA - VISIBLE Y FUNCIONAL
   ============================================ */

@media screen and (max-width: 1024px) {
    /* Asegurar que el toggle sea visible */
    .nav__toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 48px !important;
        height: 48px !important;
        padding: 12px !important;
        background: linear-gradient(135deg, rgba(21, 51, 98, 0.95), rgba(30, 66, 117, 0.95)) !important;
        border-radius: 12px !important;
        cursor: pointer !important;
        z-index: 1001 !important;
        position: relative !important;
        box-shadow: 0 4px 12px rgba(21, 51, 98, 0.3) !important;
        transition: all 0.3s ease !important;
    }

    .nav__toggle:active {
        transform: scale(0.95) !important;
    }

    /* Las 3 líneas del hamburguesa */
    .nav__toggle span {
        display: block !important;
        width: 24px !important;
        height: 3px !important;
        background: linear-gradient(90deg, var(--gold-beige), #d4a874) !important;
        border-radius: 2px !important;
        margin: 3px 0 !important;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
        position: relative !important;
        z-index: 2 !important;
    }

    /* Asegurar que haya 3 spans visibles */
    .nav__toggle span:nth-child(1),
    .nav__toggle span:nth-child(2),
    .nav__toggle span:nth-child(3) {
        display: block !important;
        opacity: 1 !important;
    }

    /* Animación cuando el menú está abierto */
    .show-menu ~ .nav__toggle span:nth-child(1) {
        transform: rotate(45deg) translateY(9px) !important;
    }

    .show-menu ~ .nav__toggle span:nth-child(2) {
        opacity: 0 !important;
        transform: translateX(-20px) !important;
    }

    .show-menu ~ .nav__toggle span:nth-child(3) {
        transform: rotate(-45deg) translateY(-9px) !important;
    }
}

@media screen and (max-width: 768px) {
    .nav__toggle {
        width: 46px !important;
        height: 46px !important;
    }

    .nav__toggle span {
        width: 22px !important;
    }
}

@media screen and (max-width: 480px) {
    .nav__toggle {
        width: 44px !important;
        height: 44px !important;
    }

    .nav__toggle span {
        width: 20px !important;
        height: 2.5px !important;
    }
}

/* ============================================
   3. CORRECCIÓN DE OVERFLOW EN SECTORES
   ============================================ */

@media screen and (max-width: 1024px) {

    /* Prevenir overflow en toda la página */
    .main {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Hero COMPLETELY ISOLATED: force edge-to-edge on mobile */
    .hero {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        left: 0 !important;
        right: 0 !important;
    }

    /* Sectores específicos */
    .sectors__grid,
    .sectors__container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
    }

    .sector__card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 1.5rem 0 !important;
        padding: 1.5rem 1rem !important;
        box-sizing: border-box !important;
    }

    /* Tabs de enfoques optimizados */
    .approaches__tab-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .approach__tab-btn {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.85rem 0.75rem !important;
        box-sizing: border-box !important;
        text-align: center !important;
        background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(248, 249, 250, 0.98) 100%) !important;
        border-radius: 14px !important;
        border: 2px solid rgba(21, 51, 98, 0.1) !important;
        box-shadow: 0 4px 12px rgba(21, 51, 98, 0.08) !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
    }

    .approach__tab-btn.active {
        border-color: var(--navy-dark) !important;
        box-shadow:
            0 6px 16px rgba(21, 51, 98, 0.15),
            0 0 0 2px rgba(21, 51, 98, 0.1) !important;
        background: linear-gradient(135deg,
            rgba(21, 51, 98, 0.05) 0%,
            rgba(182, 138, 84, 0.05) 100%) !important;
    }

    .approach__tab-btn:active {
        transform: scale(0.98) !important;
    }

    .approaches__tab-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .approach__tab-panel {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem 1rem !important;
        box-sizing: border-box !important;
    }

    /* Títulos de approach content */
    .approach__content-title {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
        text-align: center !important;
        color: var(--navy-dark) !important;
        margin-bottom: 1rem !important;
        padding: 0 0.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
    }

    /* Descripciones en approach */
    .approach__description,
    .approach__text p {
        text-align: left !important;
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        color: rgba(21, 51, 98, 0.75) !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
    }

    /* Iconos de approach */
    .approach__icon-wrapper {
        width: 60px !important;
        height: 60px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        margin: 0 auto 1rem !important;
        box-shadow: 0 4px 12px rgba(21, 51, 98, 0.2) !important;
    }

    .approach__icon-wrapper i {
        font-size: 1.75rem !important;
        color: white !important;
    }

    /* Iconos de sectores */
    .sector__icon {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 1rem !important;
    }

    .sector__icon i {
        font-size: 2.5rem !important;
        text-align: center !important;
    }

    /* Features list en sectores */
    .sector__features,
    .approach__features {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
        box-sizing: border-box !important;
    }

    .sector__feature-item,
    .approach__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        padding: 0.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: anywhere !important;
        word-break: break-all !important;
    }

    /* Badges de tabs */
    .tab__badge {
        display: inline-block !important;
        padding: 0.5rem 1rem !important;
        border-radius: 20px !important;
        font-size: 0.85rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
    }

    .tab__title {
        font-size: 0.85rem !important;
        text-align: center !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
        margin-top: 0.4rem !important;
        line-height: 1.3 !important;
        display: block !important;
        font-weight: 600 !important;
    }
}

/* ============================================
   4. CENTRADO DE TODO EL CONTENIDO
   ============================================ */

@media screen and (max-width: 1024px) {

    /* Todos los elementos de texto centrados */
    .sector__card *,
    .approach__tab-panel *,
    .sectors__grid *,
    .approaches__container * {
        text-align: center !important;
    }

    /* Listas centradas */
    .sector__features,
    .approach__features {
        list-style: none !important;
        padding-left: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .sector__feature-item,
    .approach__feature-item {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }

    /* Iconos de check centrados */
    .sector__feature-item i,
    .approach__feature-item i {
        flex-shrink: 0 !important;
    }
}

/* ============================================
   5. PREVENCIÓN DE SCROLL HORIZONTAL
   ============================================ */

@media screen and (max-width: 1024px) {

    /* Contenedores principales */
    body,
    html,
    .main,
    .container,
    section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    /* Asegurar que ningún elemento salga del viewport */
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Elementos que pueden causar overflow */
    img,
    video,
    iframe,
    svg,
    canvas {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Tablas y contenido wide */
    table,
    pre,
    code {
        max-width: 100% !important;
        overflow-x: auto !important;
    }

    /* Grid y flex containers */
    .grid,
    .flex {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ============================================
   6. AJUSTES ESPECÍFICOS PARA MÓVILES PEQUEÑOS
   ============================================ */

@media screen and (max-width: 480px) {

    .sector__card {
        padding: 1.25rem 0.75rem !important;
    }

    .approach__tab-btn {
        padding: 0.85rem 0.75rem !important;
        font-size: 0.9rem !important;
    }

    .tab__badge {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.8rem !important;
    }

    .tab__title {
        font-size: 0.85rem !important;
    }

    .sector__icon i {
        font-size: 2rem !important;
    }

    .approach__tab-panel {
        padding: 1.25rem 0.75rem !important;
    }
}

/* ============================================
   7. ASEGURAR QUE EL HEADER NO SOBRESALGA
   ============================================ */

@media screen and (max-width: 1024px) {

    .header {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }

    .nav {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 1rem !important;
    }

    /* Asegurar espacio entre logo y toggle */
    .nav__logo {
        flex-shrink: 0 !important;
        margin-right: auto !important;
    }

    .nav__toggle {
        flex-shrink: 0 !important;
        margin-left: 1rem !important;
    }

    .nav__menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 80% !important;
        max-width: 320px !important;
        height: 100vh !important;
    }

    .nav__menu.show-menu {
        right: 0 !important;
    }
}

/* ============================================
   8. CORRECCIONES ADICIONALES DE LAYOUT
   ============================================ */

@media screen and (max-width: 1024px) {

    /* Page hero sin overflow */
    .page-hero {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        padding: 4rem 1rem 2rem !important;
    }

    .page-hero__container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .page-hero__title,
    .page-hero__description {
        text-align: center !important;
        word-wrap: break-word !important;
        overflow-wrap: anywhere !important;
        word-break: break-all !important;
        max-width: 100% !important;
    }

    /* Section headers centrados con estilo tarjeta */
    .section__header {
        width: calc(100% - 1rem) !important;
        max-width: 100% !important;
        text-align: center !important;
        padding: 1.5rem 1rem !important;
        margin: 0 auto 2rem !important;
        background: linear-gradient(135deg,
            rgba(21, 51, 98, 0.03) 0%,
            rgba(182, 138, 84, 0.03) 100%) !important;
        border-radius: 20px !important;
        border: 1px solid rgba(21, 51, 98, 0.08) !important;
    }

    /* Títulos dentro de section__header - sin estilos de tarjeta */
    .section__header .section__title {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 0 0.75rem 0 !important;
        margin: 0 0 0.75rem 0 !important;
        width: 100% !important;
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        font-weight: 800 !important;
        color: var(--navy-dark) !important;
        text-align: center !important;
    }

    /* Descripción dentro de section__header */
    .section__header .section__description {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        font-size: 1rem !important;
        line-height: 1.7 !important;
        color: rgba(21, 51, 98, 0.8) !important;
        text-align: center !important;
    }

    /* Asegurar que los containers no sobresalgan */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* ============================================
   9. PREVENCIÓN EXHAUSTIVA DE OVERFLOW DE TEXTO
   ============================================ */

@media screen and (max-width: 1024px) {

    /* Todos los contenedores y secciones con márgenes reducidos */
    section,
    .section,
    .section-elevated,
    .section-elevated-1,
    .section-elevated-2,
    .section-elevated-3,
    .section-elevated-4,
    .section-elevated-5,
    .section-elevated-6 {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* Todos los contenedores internos */
    .hero__container,
    .stats__container,
    .services__container,
    .benefits__container,
    .about__container,
    .contact__container,
    .cta__container,
    .mvv__container,
    .why-choose__container,
    .sectors__container,
    .approaches__container,
    .process__container,
    .services-intro__container,
    .main-services__container,
    .additional__container,
    .quick-contact__container,
    .faq__container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    /* Todos los grids */
    .stats__grid,
    .services__grid,
    .services__detailed-grid,
    .benefits__grid,
    .reasons__grid,
    .sectors__grid,
    .mvv__grid,
    .process__grid,
    .additional__grid,
    .quick-contact__grid {
        width: 100% !important;
        max-width: 100% !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Todas las cards y bloques con estilos mejorados */
    .stats__card,
    .service__card,
    .service__detailed-card,
    .benefit__card,
    .benefit__item,
    .reason__card,
    .sector__card,
    .mvv__card,
    .process__card,
    .step__card,
    .faq__item,
    .contact__item,
    .quick-option {
        width: calc(100% - 1rem) !important;
        max-width: 100% !important;
        margin: 0 auto 1.5rem !important;
        padding: 1.5rem 1.25rem !important;
        box-sizing: border-box !important;
        background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(248, 249, 250, 0.98) 100%) !important;
        border-radius: 20px !important;
        box-shadow:
            0 6px 20px rgba(21, 51, 98, 0.1),
            0 3px 10px rgba(21, 51, 98, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
        border: 1px solid rgba(21, 51, 98, 0.08) !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }

    .stats__card:active,
    .service__card:active,
    .benefit__card:active,
    .reason__card:active,
    .sector__card:active {
        transform: translateY(-2px) !important;
        box-shadow:
            0 8px 24px rgba(21, 51, 98, 0.15),
            0 4px 12px rgba(21, 51, 98, 0.08) !important;
    }

    /* Títulos dentro de cards - sin estilos de tarjeta adicionales */
    .stats__card .section__title,
    .service__card .service__title,
    .benefit__card .benefit__title,
    .reason__card .reason__title,
    .mvv__card .mvv__title,
    .process__card .process__title,
    .step__card .step__title {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 0 0.75rem 0 !important;
        margin: 0 0 0.5rem 0 !important;
        width: 100% !important;
    }

    /* Títulos de sectores - optimizados para móvil */
    .sector__card .sector__title {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0.5rem 0 0.25rem 0 !important;
        width: 100% !important;
        font-size: 1.15rem !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
        text-align: center !important;
        color: var(--navy-dark) !important;
        display: block !important;
    }

    /* Subtítulos de sectores */
    .sector__subtitle {
        display: block !important;
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        color: var(--gold-beige) !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }

    /* Header de sector más compacto */
    .sector__header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding-bottom: 1rem !important;
        margin-bottom: 1rem !important;
        border-bottom: 2px solid rgba(21, 51, 98, 0.1) !important;
    }

    /* Iconos de sectores */
    .sector__header .sector__icon {
        margin-bottom: 0.75rem !important;
    }

    .sector__header .sector__icon i {
        font-size: 2rem !important;
    }

    /* Iconos dentro de cards con mejor presentación */
    .service__card i,
    .benefit__card i,
    .reason__card i,
    .sector__card i,
    .mvv__card i,
    .process__card i,
    .step__card i,
    .stats__card i {
        display: inline-block !important;
        width: 50px !important;
        height: 50px !important;
        line-height: 50px !important;
        text-align: center !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg,
            rgba(21, 51, 98, 0.08) 0%,
            rgba(182, 138, 84, 0.08) 100%) !important;
        margin-bottom: 1rem !important;
        font-size: 1.5rem !important;
        color: var(--navy-dark) !important;
    }

    /* Descripciones dentro de cards */
    .service__card .service__description,
    .benefit__card .benefit__description,
    .reason__card .reason__description,
    .mvv__card .mvv__description,
    .process__card .process__description,
    .step__card .step__description {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: center !important;
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        color: rgba(21, 51, 98, 0.8) !important;
    }

    /* Descripción de sectores */
    .sector__card .sector__description {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 1rem 0 !important;
        margin: 0 0 1rem 0 !important;
        text-align: left !important;
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        color: rgba(21, 51, 98, 0.75) !important;
        border-bottom: 1px solid rgba(21, 51, 98, 0.08) !important;
    }

    /* Contenido de sectores */
    .sector__content {
        width: 100% !important;
        padding: 0 !important;
    }

    /* Servicios y beneficios de sectores */
    .sector__services,
    .sector__benefits {
        margin-bottom: 1.25rem !important;
    }

    .sector__services h4,
    .sector__benefits h4 {
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: var(--navy-dark) !important;
        margin-bottom: 0.75rem !important;
        text-align: left !important;
        padding: 0 !important;
    }

    .sector__services-list,
    .sector__benefits ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .sector__services-list li,
    .sector__benefits ul li {
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        padding: 0.5rem 0 !important;
        margin: 0 !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        text-align: left !important;
        color: rgba(21, 51, 98, 0.8) !important;
    }

    .sector__services-list li i,
    .sector__benefits ul li::before {
        flex-shrink: 0 !important;
        color: var(--gold-beige) !important;
        font-size: 0.85rem !important;
        margin-top: 0.2rem !important;
    }

    .sector__benefits ul li {
        padding-left: 1.25rem !important;
        position: relative !important;
    }

    .sector__benefits ul li::before {
        content: "▸" !important;
        position: absolute !important;
        left: 0 !important;
        top: 0.5rem !important;
    }

    /* Números en reason cards */
    .reason__number {
        display: inline-block !important;
        width: 60px !important;
        height: 60px !important;
        line-height: 60px !important;
        text-align: center !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg,
            var(--navy-dark) 0%,
            var(--gold-beige) 100%) !important;
        color: white !important;
        font-size: 1.5rem !important;
        font-weight: 800 !important;
        margin-bottom: 1rem !important;
        box-shadow: 0 4px 12px rgba(21, 51, 98, 0.2) !important;
    }

    /* Títulos principales hero - sin tarjeta */
    .hero__title,
    .page-hero__title {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 1rem 0 !important;
        padding: 0.5rem 1rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
        hyphens: auto !important;
        overflow: visible !important;
        box-sizing: border-box !important;
        text-align: center !important;
        font-size: 2rem !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
    }

    /* Section titles y otros títulos con estilos de tarjeta */
    .section__title,
    .cta__title,
    .stats__text,
    .contact__title,
    .contact__item-title,
    .faq__question {
        width: calc(100% - 1rem) !important;
        max-width: 100% !important;
        margin: 0 auto 1rem !important;
        padding: 1rem 1.25rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
        hyphens: auto !important;
        overflow: visible !important;
        box-sizing: border-box !important;
        background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 249, 250, 0.95) 100%) !important;
        border-radius: 16px !important;
        box-shadow:
            0 4px 16px rgba(21, 51, 98, 0.12),
            0 2px 8px rgba(21, 51, 98, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
        border: 1px solid rgba(21, 51, 98, 0.1) !important;
        position: relative !important;
        z-index: 1 !important;
        text-align: center !important;
    }

    /* Todas las descripciones y párrafos */
    .hero__description,
    .page-hero__description,
    .section__description,
    .cta__description,
    .service__description,
    .benefit__description,
    .reason__description,
    .sector__description,
    .mvv__description,
    .process__description,
    .step__description,
    .approach__description,
    .about__text,
    .about__description,
    .contact__description,
    .faq__answer,
    p {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.75rem 1rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
        hyphens: auto !important;
        overflow: visible !important;
        box-sizing: border-box !important;
        line-height: 1.7 !important;
        text-align: justify !important;
    }

    /* Textos específicos que necesitan break-all (direcciones largas) */
    .contact__item-text,
    .footer__info span,
    .footer__info {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: anywhere !important;
        word-break: break-all !important;
        hyphens: auto !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    /* Spans, links y list items */
    span, li, a {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Listas y features */
    .benefits__list,
    .sector__features,
    .approach__features,
    .service__features,
    .feature__list,
    .values__list,
    ul, ol {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .benefit__item,
    .sector__feature-item,
    .approach__feature-item,
    .service__feature-item,
    .feature__item,
    .value__item,
    li {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.75rem 1rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
        box-sizing: border-box !important;
        line-height: 1.6 !important;
        margin-bottom: 0.5rem !important;
    }

    /* Botones con estilos mejorados */
    .button,
    .hero__button,
    .cta__button,
    .btn,
    .btn-primary,
    .btn-secondary,
    button {
        max-width: calc(100% - 2rem) !important;
        padding: 1rem 1.75rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
        text-align: center !important;
        box-sizing: border-box !important;
        border-radius: 50px !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        box-shadow:
            0 6px 20px rgba(21, 51, 98, 0.25),
            0 3px 10px rgba(21, 51, 98, 0.15) !important;
        transition: all 0.3s ease !important;
        border: none !important;
    }

    .button:active,
    .hero__button:active,
    .cta__button:active {
        transform: translateY(2px) !important;
        box-shadow:
            0 3px 10px rgba(21, 51, 98, 0.2),
            0 2px 5px rgba(21, 51, 98, 0.1) !important;
    }

    /* Forms */
    .contact__form,
    .form__group,
    form {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    input,
    textarea,
    select {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: anywhere !important;
        word-break: break-all !important;
    }

    /* Tablas */
    table {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        overflow-x: auto !important;
        box-sizing: border-box !important;
    }

    th, td {
        word-wrap: break-word !important;
        overflow-wrap: anywhere !important;
        word-break: break-all !important;
        max-width: 200px !important;
        padding: 0.5rem !important;
    }

    /* Imágenes y media */
    img, video, iframe, svg, canvas {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Elementos con contenido largo */
    pre, code {
        max-width: 100% !important;
        overflow-x: auto !important;
        word-wrap: break-word !important;
        overflow-wrap: anywhere !important;
        word-break: break-all !important;
        white-space: pre-wrap !important;
        box-sizing: border-box !important;
    }

    /* Footer */
    .footer,
    .footer__container,
    .footer__content,
    .footer__data,
    .footer__contact,
    .footer__social {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        box-sizing: border-box !important;
    }

    .footer__title,
    .footer__description,
    .footer__info {
        word-wrap: break-word !important;
        overflow-wrap: anywhere !important;
        word-break: break-all !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    /* Prevenir overflow con pseudo-elementos */
    *::before,
    *::after {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Asegurar que nada sobresalga del viewport */
    body > *,
    .main > *,
    section > *,
    .container > * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* ============================================
   10. CORRECCIONES ADICIONALES PARA MÓVILES PEQUEÑOS
   ============================================ */

@media screen and (max-width: 480px) {

    /* Reducir padding para móviles pequeños */
    .container,
    .section__container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    /* Reducir padding en cards pero mantener estilos */
    .stats__card,
    .service__card,
    .benefit__item,
    .reason__card,
    .sector__card {
        width: calc(100% - 0.5rem) !important;
        padding: 1.25rem 1rem !important;
        border-radius: 16px !important;
    }

    /* Títulos más compactos */
    .section__title,
    .hero__title,
    .page-hero__title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        padding: 0.85rem 1rem !important;
        border-radius: 14px !important;
    }

    /* Descripción más compacta */
    .section__description,
    .hero__description {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        padding: 0.65rem 0.85rem !important;
    }

    /* Section headers más compactos */
    .section__header {
        padding: 1.25rem 0.75rem !important;
        border-radius: 16px !important;
    }

    .section__header .section__title {
        font-size: 1.3rem !important;
        padding: 0 0 0.6rem 0 !important;
        margin: 0 0 0.6rem 0 !important;
    }

    .section__header .section__description {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    /* Botones más compactos */
    .button,
    .hero__button,
    .cta__button {
        padding: 0.85rem 1.5rem !important;
        font-size: 0.95rem !important;
    }

    /* Secciones con menos margen */
    section,
    .section,
    .section-elevated {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* Títulos de sectores aún más compactos en móviles pequeños */
    .sector__card .sector__title {
        font-size: 1.05rem !important;
        line-height: 1.25 !important;
        margin: 0.4rem 0 0.2rem 0 !important;
    }

    .sector__subtitle {
        font-size: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .sector__header {
        padding-bottom: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .sector__header .sector__icon i {
        font-size: 1.75rem !important;
    }

    .sector__card .sector__description {
        font-size: 0.85rem !important;
        padding: 0 0 0.75rem 0 !important;
        margin: 0 0 0.75rem 0 !important;
    }

    .sector__services h4,
    .sector__benefits h4 {
        font-size: 0.95rem !important;
        margin-bottom: 0.5rem !important;
    }

    .sector__services-list li,
    .sector__benefits ul li {
        font-size: 0.85rem !important;
        padding: 0.4rem 0 !important;
    }

    .sector__services,
    .sector__benefits {
        margin-bottom: 1rem !important;
    }

    /* Tabs más compactos en móviles pequeños */
    .approach__tab-btn {
        padding: 0.75rem 0.65rem !important;
        border-radius: 12px !important;
    }

    .tab__badge {
        font-size: 0.7rem !important;
        padding: 0.35rem 0.7rem !important;
    }

    .tab__title {
        font-size: 0.8rem !important;
        line-height: 1.25 !important;
        margin-top: 0.35rem !important;
    }

    /* Approach content más compacto */
    .approach__content-title {
        font-size: 1rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.75rem !important;
    }

    .approach__text p {
        font-size: 0.85rem !important;
        line-height: 1.55 !important;
    }

    .approach__icon-wrapper {
        width: 55px !important;
        height: 55px !important;
        margin-bottom: 0.85rem !important;
    }

    .approach__icon-wrapper i {
        font-size: 1.6rem !important;
    }

    /* Panel de approach más compacto */
    .approach__tab-panel {
        padding: 1rem 0.75rem !important;
    }

    .approach__content {
        padding: 0 !important;
    }

    /* Cualquier h4 dentro de approach */
    .approach__tab-panel h4 {
        font-size: 0.95rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* ============================================
       ESTILOS PARA PÁGINA DE SERVICIOS
       ============================================ */

    /* Service detailed cards - similar a sector cards */
    .service__detailed-card {
        width: calc(100% - 1rem) !important;
        max-width: 100% !important;
        margin: 0 auto 1.5rem !important;
        padding: 1.5rem 1.25rem !important;
    }

    .service__detailed-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding-bottom: 1rem !important;
        margin-bottom: 1rem !important;
        border-bottom: 2px solid rgba(21, 51, 98, 0.1) !important;
    }

    .service__detailed-icon {
        margin-bottom: 0.75rem !important;
    }

    .service__detailed-icon i {
        display: inline-block !important;
        width: 60px !important;
        height: 60px !important;
        line-height: 60px !important;
        text-align: center !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg,
            rgba(21, 51, 98, 0.08) 0%,
            rgba(182, 138, 84, 0.08) 100%) !important;
        font-size: 1.75rem !important;
        color: var(--navy-dark) !important;
    }

    .service__detailed-title-group {
        text-align: center !important;
        width: 100% !important;
    }

    .service__detailed-title {
        font-size: 1.15rem !important;
        line-height: 1.3 !important;
        font-weight: 700 !important;
        text-align: center !important;
        color: var(--navy-dark) !important;
        margin: 0.5rem 0 0.25rem 0 !important;
        padding: 0 !important;
        background: none !important;
        box-shadow: none !important;
        border: none !important;
    }

    .service__detailed-subtitle {
        display: block !important;
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        color: var(--gold-beige) !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        margin-bottom: 0 !important;
    }

    .service__detailed-content {
        width: 100% !important;
        padding: 0 !important;
    }

    .service__detailed-description {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 1rem 0 !important;
        margin: 0 0 1rem 0 !important;
        text-align: left !important;
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        color: rgba(21, 51, 98, 0.75) !important;
        border-bottom: 1px solid rgba(21, 51, 98, 0.08) !important;
    }

    .service__detailed-features,
    .service__detailed-benefits {
        margin-bottom: 1.25rem !important;
    }

    .service__detailed-features {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 0 1.25rem 0 !important;
    }

    .service__detailed-features li {
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        padding: 0.5rem 0 !important;
        margin: 0 !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        text-align: left !important;
        color: rgba(21, 51, 98, 0.8) !important;
    }

    .service__detailed-features li i {
        flex-shrink: 0 !important;
        color: var(--gold-beige) !important;
        font-size: 0.85rem !important;
        margin-top: 0.2rem !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        border-radius: 0 !important;
    }

    .service__detailed-benefits h4 {
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: var(--navy-dark) !important;
        margin-bottom: 0.75rem !important;
        text-align: left !important;
        padding: 0 !important;
    }

    .service__detailed-benefits ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .service__detailed-benefits ul li {
        padding-left: 1.25rem !important;
        position: relative !important;
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        text-align: left !important;
        color: rgba(21, 51, 98, 0.8) !important;
    }

    .service__detailed-benefits ul li::before {
        content: "▸" !important;
        position: absolute !important;
        left: 0 !important;
        top: 0.5rem !important;
        color: var(--gold-beige) !important;
        font-size: 0.85rem !important;
    }

    /* ============================================
       ESTILOS PARA PÁGINA DE NOSOTROS
       ============================================ */

    /* Reason cards - compactos */
    .reason__card {
        text-align: center !important;
    }

    .reason__content {
        padding: 0 !important;
    }

    .reason__title {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 0.5rem 0 !important;
        margin: 0 0 0.5rem 0 !important;
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    .reason__description {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
    }

    /* MVV cards */
    .mvv__card {
        text-align: center !important;
    }

    .mvv__icon {
        margin-bottom: 1rem !important;
    }

    .mvv__icon i {
        display: inline-block !important;
        width: 60px !important;
        height: 60px !important;
        line-height: 60px !important;
        text-align: center !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg,
            rgba(21, 51, 98, 0.08) 0%,
            rgba(182, 138, 84, 0.08) 100%) !important;
        font-size: 1.75rem !important;
        color: var(--navy-dark) !important;
    }

    .mvv__title {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 0.75rem 0 !important;
        margin: 0 0 0.75rem 0 !important;
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    .mvv__description {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
    }

    .values__list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .value__item {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        padding: 0.5rem !important;
        font-size: 0.9rem !important;
    }

    .value__item i {
        color: var(--gold-beige) !important;
        font-size: 0.85rem !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
    }

    /* About features */
    .about__features {
        width: 100% !important;
    }

    .feature__item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .feature__icon {
        display: inline-block !important;
        width: 50px !important;
        height: 50px !important;
        line-height: 50px !important;
        text-align: center !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg,
            rgba(21, 51, 98, 0.08) 0%,
            rgba(182, 138, 84, 0.08) 100%) !important;
        font-size: 1.5rem !important;
        color: var(--navy-dark) !important;
        margin-bottom: 0.75rem !important;
    }

    .feature__content {
        width: 100% !important;
    }

    .feature__title {
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        color: var(--navy-dark) !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
    }

    .feature__description {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        color: rgba(21, 51, 98, 0.75) !important;
    }

    /* ============================================
       ESTILOS PARA PÁGINA INDEX
       ============================================ */

    /* Stats cards */
    .stats__card {
        text-align: center !important;
        padding: 1.25rem 1rem !important;
    }

    .stats__number {
        font-size: 2rem !important;
        font-weight: 800 !important;
        color: var(--navy-dark) !important;
        margin-bottom: 0.5rem !important;
        line-height: 1 !important;
    }

    .stats__text {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        color: rgba(21, 51, 98, 0.8) !important;
    }

    /* Service cards (homepage) */
    .service__card {
        text-align: center !important;
    }

    .service__icon {
        margin-bottom: 1rem !important;
    }

    .service__icon i {
        display: inline-block !important;
        width: 60px !important;
        height: 60px !important;
        line-height: 60px !important;
        text-align: center !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg,
            rgba(21, 51, 98, 0.08) 0%,
            rgba(182, 138, 84, 0.08) 100%) !important;
        font-size: 1.75rem !important;
        color: var(--navy-dark) !important;
    }

    .service__title {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 0.75rem 0 !important;
        margin: 0 0 0.5rem 0 !important;
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    .service__description {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
    }

    /* Benefit cards */
    .benefit__card,
    .benefit__item {
        text-align: center !important;
    }

    .benefit__icon {
        margin-bottom: 1rem !important;
    }

    .benefit__icon i {
        display: inline-block !important;
        width: 50px !important;
        height: 50px !important;
        line-height: 50px !important;
        text-align: center !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg,
            rgba(21, 51, 98, 0.08) 0%,
            rgba(182, 138, 84, 0.08) 100%) !important;
        font-size: 1.5rem !important;
        color: var(--navy-dark) !important;
    }

    .benefit__title {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 0.5rem 0 !important;
        margin: 0 0 0.5rem 0 !important;
        font-size: 1.05rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    .benefit__description {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
    }

    /* ============================================
       ESTILOS PARA PÁGINA CONTACTO
       ============================================ */

    /* Contact items */
    .contact__item {
        text-align: center !important;
        padding: 1.5rem 1rem !important;
    }

    .contact__item-icon {
        margin-bottom: 1rem !important;
    }

    .contact__item-icon i {
        display: inline-block !important;
        width: 60px !important;
        height: 60px !important;
        line-height: 60px !important;
        text-align: center !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg,
            rgba(21, 51, 98, 0.08) 0%,
            rgba(182, 138, 84, 0.08) 100%) !important;
        font-size: 1.75rem !important;
        color: var(--navy-dark) !important;
    }

    .contact__item-title {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 0.5rem 0 !important;
        margin: 0 0 0.5rem 0 !important;
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    .contact__item-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
        padding: 0.5rem !important;
    }

    /* Contact form */
    .contact__form {
        width: 100% !important;
        padding: 0 !important;
    }

    .form__group {
        margin-bottom: 1rem !important;
    }

    .form__label {
        display: block !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: var(--navy-dark) !important;
        margin-bottom: 0.5rem !important;
        text-align: left !important;
    }

    .form__input,
    .form__textarea {
        width: 100% !important;
        padding: 0.85rem 1rem !important;
        border: 2px solid rgba(21, 51, 98, 0.15) !important;
        border-radius: 12px !important;
        font-size: 0.9rem !important;
        background: white !important;
        transition: border-color 0.3s ease !important;
    }

    .form__input:focus,
    .form__textarea:focus {
        outline: none !important;
        border-color: var(--navy-dark) !important;
        box-shadow: 0 0 0 3px rgba(21, 51, 98, 0.1) !important;
    }

    .form__textarea {
        min-height: 120px !important;
        resize: vertical !important;
    }

    /* Quick options */
    .quick-option {
        text-align: center !important;
        padding: 1.25rem 1rem !important;
    }

    .quick-option i {
        display: inline-block !important;
        width: 50px !important;
        height: 50px !important;
        line-height: 50px !important;
        text-align: center !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg,
            rgba(21, 51, 98, 0.08) 0%,
            rgba(182, 138, 84, 0.08) 100%) !important;
        font-size: 1.5rem !important;
        color: var(--navy-dark) !important;
        margin-bottom: 0.75rem !important;
    }

    .quick-option h3 {
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        color: var(--navy-dark) !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
    }

    .quick-option p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        color: rgba(21, 51, 98, 0.75) !important;
        margin-bottom: 0.75rem !important;
    }

    /* ============================================
       ESTILOS COMPACTOS PARA MÓVILES PEQUEÑOS - TODAS LAS PÁGINAS
       ============================================ */

    /* Servicios - móviles pequeños */
    .service__detailed-title {
        font-size: 1.05rem !important;
        line-height: 1.25 !important;
        margin: 0.4rem 0 0.2rem 0 !important;
    }

    .service__detailed-subtitle {
        font-size: 0.75rem !important;
    }

    .service__detailed-header {
        padding-bottom: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .service__detailed-icon i {
        width: 55px !important;
        height: 55px !important;
        line-height: 55px !important;
        font-size: 1.6rem !important;
    }

    .service__detailed-description {
        font-size: 0.85rem !important;
        padding: 0 0 0.75rem 0 !important;
        margin: 0 0 0.75rem 0 !important;
    }

    .service__detailed-features li,
    .service__detailed-benefits ul li {
        font-size: 0.85rem !important;
        padding: 0.4rem 0 !important;
    }

    .service__detailed-benefits h4 {
        font-size: 0.95rem !important;
        margin-bottom: 0.5rem !important;
    }

    .service__detailed-features,
    .service__detailed-benefits {
        margin-bottom: 1rem !important;
    }

    .service__detailed-card {
        width: calc(100% - 0.5rem) !important;
        padding: 1.25rem 1rem !important;
    }

    /* Nosotros - móviles pequeños */
    .reason__title {
        font-size: 1rem !important;
        padding: 0 0 0.4rem 0 !important;
        margin: 0 0 0.4rem 0 !important;
    }

    .reason__description {
        font-size: 0.85rem !important;
    }

    .mvv__title {
        font-size: 1.1rem !important;
        padding: 0 0 0.6rem 0 !important;
        margin: 0 0 0.6rem 0 !important;
    }

    .mvv__description {
        font-size: 0.85rem !important;
    }

    .mvv__icon i {
        width: 55px !important;
        height: 55px !important;
        line-height: 55px !important;
        font-size: 1.6rem !important;
    }

    .feature__icon {
        width: 45px !important;
        height: 45px !important;
        line-height: 45px !important;
        font-size: 1.4rem !important;
        margin-bottom: 0.6rem !important;
    }

    .feature__title {
        font-size: 1rem !important;
        margin-bottom: 0.4rem !important;
    }

    .feature__description {
        font-size: 0.85rem !important;
    }

    .feature__item {
        padding: 0.85rem !important;
        margin-bottom: 0.85rem !important;
    }

    .value__item {
        font-size: 0.85rem !important;
        padding: 0.4rem !important;
    }

    /* Index - móviles pequeños */
    .stats__number {
        font-size: 1.8rem !important;
        margin-bottom: 0.4rem !important;
    }

    .stats__text {
        font-size: 0.85rem !important;
    }

    .stats__card {
        padding: 1rem 0.85rem !important;
    }

    .service__card {
        padding: 1.25rem 1rem !important;
    }

    .service__icon i {
        width: 55px !important;
        height: 55px !important;
        line-height: 55px !important;
        font-size: 1.6rem !important;
    }

    .service__title {
        font-size: 1.05rem !important;
        padding: 0 0 0.6rem 0 !important;
        margin: 0 0 0.4rem 0 !important;
    }

    .service__description {
        font-size: 0.85rem !important;
    }

    .benefit__icon i {
        width: 45px !important;
        height: 45px !important;
        line-height: 45px !important;
        font-size: 1.4rem !important;
    }

    .benefit__title {
        font-size: 1rem !important;
        padding: 0 0 0.4rem 0 !important;
        margin: 0 0 0.4rem 0 !important;
    }

    .benefit__description {
        font-size: 0.85rem !important;
    }

    .benefit__card,
    .benefit__item {
        padding: 1.25rem 1rem !important;
    }

    /* Contacto - móviles pequeños */
    .contact__item {
        padding: 1.25rem 0.85rem !important;
    }

    .contact__item-icon i {
        width: 55px !important;
        height: 55px !important;
        line-height: 55px !important;
        font-size: 1.6rem !important;
    }

    .contact__item-title {
        font-size: 1.05rem !important;
        padding: 0 0 0.4rem 0 !important;
        margin: 0 0 0.4rem 0 !important;
    }

    .contact__item-text {
        font-size: 0.85rem !important;
    }

    .form__label {
        font-size: 0.85rem !important;
        margin-bottom: 0.4rem !important;
    }

    .form__input,
    .form__textarea {
        padding: 0.75rem 0.85rem !important;
        font-size: 0.85rem !important;
        border-radius: 10px !important;
    }

    .form__textarea {
        min-height: 100px !important;
    }

    .quick-option {
        padding: 1rem 0.85rem !important;
    }

    .quick-option i {
        width: 45px !important;
        height: 45px !important;
        line-height: 45px !important;
        font-size: 1.4rem !important;
        margin-bottom: 0.6rem !important;
    }

    .quick-option h3 {
        font-size: 1rem !important;
        margin-bottom: 0.4rem !important;
    }

    .quick-option p {
        font-size: 0.8rem !important;
        margin-bottom: 0.6rem !important;
    }
}
