
    :root {
        --fixed-video-height: 74px;
    }

    * {
        box-sizing: border-box;
    }

    /* ── Mejoras tipografía base ── */
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
        line-height: 1.15;
    }

    p, li, span, button {
        font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    }

    html {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-x: clip;
    }

    body {
        margin: 0;
        font-family: 'Plus Jakarta Sans', 'Inter', 'Montserrat', sans-serif;
        background: var(--bg-main);
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-x: clip;
        overscroll-behavior-x: none;
        touch-action: pan-y;
    }

    img,
    video {
        max-width: 100%;
    }

    svg,
    canvas,
    iframe {
        max-width: 100%;
    }

    .container {
        width: min(1500px, 100%);
        max-width: 1500px;
        margin: auto;
        padding: 20px;
        position: relative;
    }

    /* video */
    .full-viewport-video {
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: min(1500px, calc(100% - 20px));
        margin: 0;
        z-index: 60;
    }

    .full-viewport-video video {
        display: block;
        width: 100%;
        height: var(--fixed-video-height);
        object-fit: cover;
    }



    /* Header */
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .home-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 6px 14px;
        border-radius: 18px;
        background: rgba(249, 249, 249, 0.64);
        backdrop-filter: blur(18px) saturate(1.6);
        -webkit-backdrop-filter: blur(18px) saturate(1.6);
        border: 1px solid rgba(255, 255, 255, 0.55);
        box-shadow: 0 4px 24px rgba(15, 23, 34, 0.10), 0 1px 4px rgba(15, 23, 34, 0.06);
        position: fixed;
        top: calc(var(--fixed-video-height) + 8px);
        left: 50%;
        transform: translateX(-50%);
        width: min(1500px, calc(100% - 20px));
        z-index: 80;
        transition: box-shadow 0.3s ease, background 0.3s ease;
    }

    .home-topbar.is-scrolled {
        background: rgba(249, 249, 249, 0.60);
        box-shadow: 0 12px 32px rgba(15, 23, 34, 0.16), 0 3px 10px rgba(15, 23, 34, 0.08);
        border-color: rgba(206, 216, 224, 0.9);
    }

    .home-topbar + .main {
        margin-top: calc(var(--fixed-video-height) + 96px);
    }

    .home-topbar-brand {
        display: flex;
        align-items: center;
        gap: 4px;
        min-width: 0;
        flex-shrink: 0;
    }

    :is(.serv-adm-topbar, .serv-cont-topbar, .serv-leg-topbar, .serv-mark-topbar) {
        position: relative;
        z-index: 50;
    }

    :is(.home-topbar, .serv-adm-topbar, .serv-cont-topbar, .serv-leg-topbar, .serv-mark-topbar) .topbar-menu {
        width: auto;
        flex-shrink: 1;
        flex-grow: 1;
        position: static;
        top: auto;
        align-self: auto;
        max-height: none;
        overflow: visible;
    }

    :is(.home-topbar, .serv-adm-topbar, .serv-cont-topbar, .serv-leg-topbar, .serv-mark-topbar) .topbar-menu > ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
        flex-wrap: wrap;
    }

    :is(.home-topbar, .serv-adm-topbar, .serv-cont-topbar, .serv-leg-topbar, .serv-mark-topbar) .topbar-menu > ul > li {
        margin: 0;
        padding: 0;
        background: transparent;
        border-radius: 0;
        color: #1f2937;
        font-size: 13px;
    }

    :is(.home-topbar, .serv-adm-topbar, .serv-cont-topbar, .serv-leg-topbar, .serv-mark-topbar) .topbar-menu > ul > li:hover {
        background: transparent;
        color: #1f2937;
    }

    :is(.home-topbar, .serv-adm-topbar, .serv-cont-topbar, .serv-leg-topbar, .serv-mark-topbar) .topbar-menu .menu-link-btn,
    :is(.home-topbar, .serv-adm-topbar, .serv-cont-topbar, .serv-leg-topbar, .serv-mark-topbar) .topbar-menu .menu-label {
        width: auto;
        padding: 8px 10px;
        gap: 8px;
        border-radius: 999px;
        background: rgba(168, 170, 169, 0.28);
        color: #111827;
        font-size: 13px;
        transition: background 0.18s ease, color 0.18s ease, outline-color 0.18s ease;
        outline: 1.5px solid transparent;
        outline-offset: -1.5px;
    }

    :is(.home-topbar, .serv-adm-topbar, .serv-cont-topbar, .serv-leg-topbar, .serv-mark-topbar) .topbar-menu .menu-link-btn:hover,
    :is(.home-topbar, .serv-adm-topbar, .serv-cont-topbar, .serv-leg-topbar, .serv-mark-topbar) .topbar-menu .menu-label:hover {
        background: rgba(14, 172, 216, 0.14);
        color: #0078a8;
        outline-color: rgba(14, 172, 216, 0.50);
    }

    :is(.home-topbar, .serv-adm-topbar, .serv-cont-topbar, .serv-leg-topbar, .serv-mark-topbar) .topbar-menu .menu-label-text {
        gap: 8px;
    }

    :is(.home-topbar, .serv-adm-topbar, .serv-cont-topbar, .serv-leg-topbar, .serv-mark-topbar) .topbar-menu .submenu-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        width: max-content;
        min-width: min(260px, calc(100vw - 32px));
        max-width: calc(100vw - 32px);
        margin-top: 0;
        z-index: 40;
    }

    :is(.home-topbar, .serv-adm-topbar, .serv-cont-topbar, .serv-leg-topbar, .serv-mark-topbar) .topbar-menu .has-dropdown {
        position: relative;
    }

    :is(.home-topbar, .serv-adm-topbar, .serv-cont-topbar, .serv-leg-topbar, .serv-mark-topbar) .topbar-menu .imagenes {
        width: 18px;
        height: 18px;
    }

    :is(.home-topbar, .serv-adm-topbar, .serv-cont-topbar, .serv-leg-topbar, .serv-mark-topbar) .topbar-menu #img-redes {
        display: none;
    }

    .home-topbar .logo {
        margin-bottom: 0;
    }

    .home-topbar-brand h2 {
        margin: 0;
        line-height: 1;
        color: var(--text-main);
    }



    .home-topbar-brand .logo-inicial,
    .serv-adm-brand .logo-inicial,
    .serv-cont-brand .logo-inicial,
    .serv-leg-brand .logo-inicial,
    .serv-mark-brand .logo-inicial {
        display: block;
    }

    .home-topbar-brand .logo-title-wordmark {
        display: block;
        width: 140px;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .home-topbar-brand .logo-inicial {
        width: 100px;
        height: 90px;
    }

    .left {
        min-width: 0;
    }

    .logo {
        display: flex;
        align-items: center;
        font-size: 24px;
        gap: 15px;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    .logo h2 {
        margin: 0;
        line-height: 1;
        font-family: 'Copperplate Gothic Bold', 'Copperplate Gothic', 'Copperplate', serif;
    }

    .logo-inicial { 
        width: 85px;
        height: 80px;
        border-radius: 50%;
    }

    
    #title-menu {  
        text-transform: uppercase;
        font-size: 0px;
        font-family: 'Montserrat', sans-serif;
        line-height: 0;
        margin: 0;
        height: 0;
        overflow: hidden;
    }

    h2{
        font-family: 'Montserrat', sans-serif;
    }

    /* Login */ 
    .login {
        text-align: right;
    }

    .login input {
        display: block;
        margin: 5px 0;
        padding: 5px;
    }

    .login button {
        background: #0eacd8;
        color: white;
        border: none;
        padding: 6px 12px;
        cursor: pointer;
        display: flex;
    }

    ::placeholder {
        color: black;
    }

    .label-login {
        display: flex;
        color: black;
        
    }

    /* Sidebar */
    .main {
        display: grid;
        grid-template-columns: clamp(180px, 18vw, 240px) 1fr;
        margin-top: 14px;
        align-items: flex-start;
        gap: 20px;
    }

    .main.main-no-sidebar {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    /* Internal pages: move primary menu to top horizontal layout */
    .main:not(.main-no-sidebar) {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .main:not(.main-no-sidebar) > *:not(#primarySidebar) {
        grid-column: 1;
    }

    .main:not(.main-no-sidebar) > #primarySidebar.sidebar {
        position: relative;
        top: auto;
        align-self: auto;
        max-height: none;
        overflow: visible;
        grid-column: 1;
        width: 100%;
    }

    .main:not(.main-no-sidebar) > #primarySidebar > ul {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px;
    }

    .main:not(.main-no-sidebar) > #primarySidebar > ul > li {
        margin: 0;
        padding: 0;
        background: transparent;
        border-radius: 0;
        color: #1f2937;
        font-size: 14px;
    }

    .main:not(.main-no-sidebar) > #primarySidebar > ul > li:hover {
        background: transparent;
        color: #1f2937;
    }

    .main:not(.main-no-sidebar) > #primarySidebar .menu-link-btn,
    .main:not(.main-no-sidebar) > #primarySidebar .menu-label {
        width: auto;
        padding: 10px 12px;
        gap: 10px;
        border-radius: 999px;
        background: rgba(168, 170, 169, 0.28);
        color: #111827;
    }

    .main:not(.main-no-sidebar) > #primarySidebar .menu-label-text {
        gap: 10px;
    }

    .main:not(.main-no-sidebar) > #primarySidebar .has-dropdown {
        position: relative;
        align-items: stretch;
    }

    .main:not(.main-no-sidebar) > #primarySidebar .submenu-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        width: max-content;
        min-width: 260px;
        margin-top: 0;
        z-index: 9999;
    }

    .main:not(.main-no-sidebar) > #primarySidebar .imagenes {
        width: 20px;
        height: 20px;
    }

    .main:not(.main-no-sidebar) > #primarySidebar #img-redes {
        display: none;
    }

    .main.main-no-sidebar > picture {
        grid-column: 1;
    }

    .main.main-no-sidebar > picture > .banner-princ-top {
        grid-column: 1;
        width: 100%;
    }

    #bannerTitle {
        margin-bottom: 15px;
    }

    .main > .banner-princ-summary {
        grid-column: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
        width: 100%;
        margin-bottom: 6rem;
        padding: clamp(16px, 2vw, 32px) clamp(16px, 2vw, 32px);
        aspect-ratio: auto;
        background: transparent;
        border-radius: 0;
        text-align: center;
    }

    .main.main-no-sidebar > .banner-princ-summary {
        grid-column: 1;
    }

    .banner-princ-summary-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .banner-princ-summary-logo img {
        display: block;
        width: clamp(170px, 24vw, 340px);
        height: auto;
        object-fit: contain;
    }

    .banner-princ-summary-logo .logo-inicial {
        width: clamp(108px, 9vw, 142px);
        height: clamp(108px, 9vw, 142px);
    }

    .banner-princ-summary-logo h2 {
        margin: 0;
        font-size: clamp(44px, 5vw, 72px);
        line-height: 1;
        color: #111827;
        font-weight: 900;
        letter-spacing: -0.02em;
        font-family: 'Copperplate Gothic Bold', 'Copperplate Gothic', 'Copperplate', serif;
    }

    .banner-princ-summary h3 {
        margin: 0;
        font-size: clamp(28px, 4.8vw, 58px);
        line-height: 1.05;
        color: #111827;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .banner-princ-summary p {
        margin-top: 5px;
        max-width: 760px;
        font-size: clamp(16px, 1.45vw, 24px);
        line-height: 1.45;
        color: #1f2937;
    }

    .banner-princ-summary-highlight {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        letter-spacing: 0.08em;
        font-size: clamp(13px, 1.1vw, 20px);
        color: var(--cta);
        text-transform: uppercase;
    }

    .sidebar {
        width: 100%;
        flex-shrink: 0;
        position: sticky;
        top: calc(var(--fixed-video-height) + 16px);
        align-self: start;
        max-height: calc(100vh - var(--fixed-video-height) - 24px);
        overflow-y: auto;
    }

    .sidebar-floating {
        position: fixed;
        top: calc(var(--fixed-video-height) + 16px);
        right: 16px;
        width: auto;
        max-width: calc(100vw - 20px);
        z-index: 22;
        opacity: 0;
        visibility: hidden;
        transform: translateX(16px);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        overflow: visible;
        max-height: none;
    }

    .sidebar-floating > ul {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        width: max-content;
    }

    .sidebar-floating.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }

    .sidebar-floating > ul > li {
        margin: 0;
        padding: 0;
        background: transparent;
        border-radius: 0;
        color: #1f2937;
        font-size: 14px;
        width: auto;
        max-width: calc(100vw - 24px);
    }

    .sidebar-floating .menu-link-btn,
    .sidebar-floating .menu-label {
        width: auto;
        padding: 10px 12px;
        gap: 10px;
        border-radius: 999px;
        background: rgba(168, 170, 169, 0.28);
        color: #111827;
    }

    .sidebar-floating .menu-label-text {
        gap: 10px;
    }

    .sidebar-floating .dropdown-arrow {
        margin-left: 8px;
    }

    .sidebar ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar > ul > li {
    display: flex;          /* activa flexbox */
    align-items: center;    /* centra verticalmente icono y texto */
    gap: 25px;          /* espacio entre icono y texto */
    padding: 12px;
    padding-top: 12px;
    margin: 5px 0;
    background: #dcdcdc;
    border-radius: 10px;
    background-color: #a8aaa9;
    font-size: clamp(16px, 1.35vw, 20px);
    color: white;
}

    .sidebar > ul > li:hover {
            background: #555;
            color: white;
    }

    /* Keep floating right menu identical to top menu style */
    .sidebar.sidebar-floating > ul > li,
    .sidebar.sidebar-floating > ul > li:hover {
        margin: 0;
        padding: 0;
        background: transparent;
        border-radius: 0;
        color: #1f2937;
        font-size: 14px;
        box-shadow: none;
    }

    .sidebar a {
        color: inherit;
        text-decoration: none;
    }

    .sidebar > ul > li.nav-button-item {
        padding: 0;
    }

    .menu-link-btn {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        font: inherit;
        display: flex;
        align-items: center;
        gap: 25px;
        padding: 12px;
        cursor: pointer;
        text-align: left;
    }

        .menu-label {
            display: flex;
            align-items: center;
                justify-content: space-between;
            width: 100%;
            line-height: 1.2;
                border: 0;
                background: transparent;
                color: inherit;
                font: inherit;
                padding: 0;
                cursor: pointer;
                text-align: left;
            }

            .menu-label-text {
                display: flex;
                align-items: center;
                gap: 25px;
                min-width: 0;
            }

            .dropdown-arrow {
                width: 10px;
                height: 10px;
                border-right: 2px solid currentColor;
                border-bottom: 2px solid currentColor;
                transform: rotate(45deg);
                transition: transform 0.25s ease;
                margin-left: 12px;
                flex-shrink: 0;
        }

        .has-dropdown {
            position: relative;
            flex-direction: column;
            align-items: stretch;
            transition: background-color 0.25s ease, box-shadow 0.25s ease;
        }

        .has-dropdown::after {
            content: none;
        }

        .social-dropdown {
            display: none;
            list-style: none;
            margin: 10px 0 0;
            padding: 10px;
            width: 100%;
            position: static;
            background: rgba(23, 23, 23, 0.96);
            border: 1px solid rgba(14, 172, 216, 0.25);
            border-radius: 14px;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
            backdrop-filter: blur(10px);
        }

        .social-dropdown li {
            margin: 0;
            padding: 0;
            font-size: 16px;
            background: transparent;
            border-radius: 8px;
            color: white;
            line-height: 1.2;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 100%;
            padding: 14px;
            color: white;
            border-radius: 10px;
            border: 0;
            background: transparent;
            font: inherit;
            text-align: left;
            cursor: pointer;
            transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
        }

        .social-dropdown li + li {
            margin-top: 4px;
        }

        .social-link:hover,
        .social-link:focus-visible {
            background: rgba(14, 172, 216, 0.2);
            color: #7cdfff;
            transform: translateX(4px);
            outline: none;
        }

        .has-dropdown:hover .social-dropdown,
        .has-dropdown:focus-within .social-dropdown {
            display: block;
        }

        .has-dropdown:hover .submenu-dropdown,
        .has-dropdown:focus-within .submenu-dropdown {
            display: block;
        }

        .has-dropdown:hover .dropdown-arrow,
        .has-dropdown:focus-within .dropdown-arrow {
            transform: rotate(225deg);
        }

        .has-dropdown.is-open {
            background: #a8aaa9;
            box-shadow: none;
        }

        .has-dropdown.is-open .social-dropdown {
            display: block;
        }

        .has-dropdown.is-open .submenu-dropdown {
            display: block;
        }

        .has-dropdown.is-open .dropdown-arrow {
            transform: rotate(225deg);
        }

        .has-dropdown .menu-label {
            width: 100%;
        }

        .social-fixed-label {
            cursor: default;
        }

        .social-fixed-item .social-dropdown {
            display: block;
            margin: 0;
            padding: 0;
            background: transparent;
            border: 0;
            box-shadow: none;
            backdrop-filter: none;
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
        }

/* ── Estilos específicos para página de políticas ── */

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.privacy-header h1 {
    margin: 0 0 10px;
    font-size: clamp(18px, 2.5vw, 27px);
    font-weight: 800;
    color: #0a2f6b;
    letter-spacing: -0.02em;
}

.privacy-subtitle {
    margin: 0 0 8px;
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 600;
    color: #334155;
}

.privacy-update {
    margin: 0;
    font-size: 13px;
    color: #475569;
    font-style: italic;
}

.privacy-intro {
    margin-bottom: 40px;
    padding: 24px;
    background: transparent;
    border-radius: 0;
}

.privacy-intro p {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-main);
}

.page-content section {
    margin-bottom: 32px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.page-content section h2 {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 700;
    color: #0a2f6b;
    border-bottom: 2px solid #2da9cf;
    padding-bottom: 8px;
}

.page-content section h3 {
    margin: 20px 0 12px;
    font-size: 15px;
    font-weight: 600;
    color: #0a2f6b;
}

.page-content section p {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-main);
}

.page-content section ul {
    margin: 0 0 16px;
    padding-left: 20px;
}

.page-content section li {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-main);
}

.page-content section li strong {
    font-weight: 600;
    color: #000000;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.page-content th,
.page-content td {
    padding: 12px 16px;
    text-align: left;
}

.page-content th {
    background: rgba(45, 169, 207, 0.12);
    font-weight: 600;
    color: #0f172a;
    font-size: 13px;
}

.page-content td {
    font-size: 13px;
    color: var(--text-main);
}

.page-content td:first-child {
    font-weight: 600;
}

.policy-highlight {
    background: rgba(45, 169, 207, 0.1);
    padding: 10px 12px;
    border-radius: 0;
    border-left: 3px solid #2da9cf;
    font-weight: 600;
    color: #134e63;
    margin: 20px 0;
}

.policy-note {
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin: 20px 0;
}

.policy-note p {
    margin: 0;
    color: #334155;
    font-weight: 600;
}

.terms-legal-note {
    margin: 10px 0 8px;
    padding: 12px 0 0;
    border-top: 2px solid #2da9cf;
    font-size: 13px;
    line-height: 1.4;
    color: #475569;
    font-style: italic;
    text-align: center;
}

.terminos-highlight{
    background: rgba(45, 169, 207, 0.1);
    padding: 10px 12px;
    border-radius: 0;
    border-left: 3px solid #2da9cf;
    font-weight: 600;
    color: #134e63;
    margin: 20px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-content {
        padding: 10px;
    }
    
    .privacy-header {
        padding: 20px 15px;
    }
    
    .page-content section {
        padding: 16px;
    }
    
    .page-content table {
        font-size: 15px;
    }
    
    .page-content th,
    .page-content td {
        padding: 8px 12px;
        justify-content: space-between;
        gap: 4px;
        width: 100%;
        }

    .terms-legal-note {
        font-size: 12px;
    }
    }

            
        .social-fixed-item .social-dropdown li {
            flex: 1 1 0;
            min-width: 0;
        }

        .social-fixed-item .social-dropdown li + li {
            margin-top: 0;
        }

        .social-fixed-item .social-link {
            justify-content: center;
            width: 100%;
            padding: 8px 0;
        }

        .social-fixed-item .social-link:hover,
        .social-fixed-item .social-link:focus-visible {
            background: transparent;
            color: inherit;
            transform: none;
            outline: none;
            box-shadow: none;
        }

        .social-fixed-item .dropdown-arrow {
            display: none;
        }
    

    .imagenes {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        filter: brightness(0) invert(1);
    }

    .social-dropdown .imagenes {
        width: 26px;
        height: 26px;
    }

    .social-fixed-item .social-dropdown .imagenes {
        width: 30px;
        height: 30px;
    }

    .social-fixed-item .imagenes {
        filter: brightness(0) saturate(100%) invert(42%) sepia(84%) saturate(1500%) hue-rotate(158deg) brightness(84%) contrast(94%);
    }

    .submenu-dropdown {
        display: none;
        list-style: none;
        margin: 10px 0 0;
        padding: 10px;
        width: 100%;
        position: static;
        background: rgba(23, 23, 23, 0.96);
        border: 1px solid rgba(14, 172, 216, 0.25);
        border-radius: 14px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(10px);
    }

    .submenu-dropdown li + li {
        margin-top: 4px;
    }

    .submenu-link {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 14px;
        color: white;
        border-radius: 10px;
        border: 0;
        background: transparent;
        font: inherit;
        text-align: left;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
    }

    .submenu-link:hover,
    .submenu-link:focus-visible {
        background: rgba(14, 172, 216, 0.2);
        color: #7cdfff;
        transform: translateX(4px);
        outline: none;
    }

    

    /* Banner */
    .banner {
        grid-column: 2;
        min-width: 0;
        margin-left: 0;
        margin-top: 0;
        background: none;
        color: inherit;
        border-radius: 0;
        padding: 16px 10px 10px;
        display: grid;
        grid-template-columns: minmax(230px, 1fr) minmax(260px, 360px) minmax(230px, 1fr);
        grid-template-areas:
            "title title title"
            "left image right"
            "list list list"
            "quote quote quote";
        align-items: start;
        gap: 14px 52px;
        overflow: hidden;
    }

    .main.main-no-sidebar .banner {
        grid-column: 1;
    }

    .main > picture {
        grid-column: 2;
        display: block;
    }

    .main > picture > .banner-princ-top {
        grid-column: 2;
        display: block;
        width: 100%;
        height: auto;
        margin: 0;
        border-radius: 100px;
    }

    /* .main > .banner-princ-top + .banner-princ-top {
        margin-top: -20px;
    } */

    .main > picture > .banner-princ-top:last-of-type {
        margin-bottom: 5rem;
    }

    .banner h2 {
        grid-area: title;
        text-align: center;
        margin: 0 0 80px;
        color: #111;
        font-size: clamp(34px, 4.3vw, 50px);
        line-height: 1.05;
    }
    

    .banner-text {
        font-size: 16px;
        line-height: 1.5;
        font-family: 'Open Sans', sans-serif;
        margin: 0;
        color: #111;
        padding: 20px;
    }

    .banner-text-left {
        grid-area: left;
    }

    .banner-text-right {
        grid-area: right;
    }

    .banner-image-wrap {
        grid-area: image;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-inline: 12px;
    }

    .banner-list {
        grid-area: list;
        font-size: 16px;
        line-height: 1.5;
        font-family: 'Open Sans', sans-serif;
        background-color: #aaa5a55d;
        color: #111;
        border-radius: 20px;
        width: min(640px, 100%);
        margin: 4px auto 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 26px;
        padding: 14px 18px;
        margin-bottom: 10px;
    }

    .banner-list ul {
        margin: 0;
        padding-left: 20px;
    }

    .banner-quote {
        grid-area: quote;
        margin: 2px 0 20px 0;
        text-align: center;
        font-size: clamp(20px, 2.1vw, 30px);
        color: #111;
    }

    .banner-img{
        display: block;
        width: min(100%, 335px);
        height: auto;
        margin: 0 auto;
    }

    cite{
        font-family: 'Lora', serif;
        font-style: italic;
        font-weight: 700;
    }

/* Objectives Carousel */
    .objectives-carousel {
        margin-top: 50px;        
        margin-left: 0;
        width: 100%;
        border-radius: 20px;
        padding: 20px 40px;
        text-align: center;
        box-sizing: border-box;
        /* background-color: #0eacd8; */
    }

    .objectives-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #272727;
        margin: 0 0 18px 0;
        text-transform: uppercase;
        font-weight: 750;
    }

    .carousel-track {
        display: grid;
        grid-template-columns: repeat(3, minmax(260px, 1fr));
        gap: 20px;
        width: 100%;
    }

    .carousel-item {
        border-radius: var(--radius-card);
        padding: 22px;
        font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: #333;
        text-align: left;
        line-height: 1.5;
        background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(232,240,250,0.72) 100%);
        border: 1px solid rgba(255,255,255,0.75);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        min-height: 50px;
        box-shadow: 0 8px 24px rgba(15, 23, 34, 0.09), 0 1px 4px rgba(15,23,34,0.05);
        backdrop-filter: blur(8px) saturate(1.2);
        -webkit-backdrop-filter: blur(8px) saturate(1.2);
        transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), box-shadow 0.28s ease, border-color 0.28s ease;
    }

    .carousel-item h4 {
        margin: 0;
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        color: #111;
        line-height: 1.3;
        font-weight: 700;
    }

    .carousel-item p {
        margin: 0;
        font-size: 15px;
        line-height: 1.55;
        color: #202020;
    }

    .carousel-item:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(15, 23, 34, 0.15), 0 0 0 2px rgba(0, 163, 209, 0.22);
        border-color: rgba(0, 163, 209, 0.35);
    }


    .letra{
        color: #0eacd8;
    }

    .siglas-banner2-row {
        display: flex;
        gap: 24px;
        align-items: stretch;
        margin-top: var(--section-gap);
        width: 100%;
        box-sizing: border-box;
    }

    .banner-siglas {
        flex: 1 1 0;
        margin-top: 0;
        /* background: linear-gradient(to left, #9e9c9c, #555); */
        background-color: #292a2bc7;
        color: white;
        border-radius: 20px;
        padding: 10px 40px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        font-family: 'Open Sans', sans-serif;
        min-width: 0;
    }

    .texto-siglas {
        line-height: 2;
        font-size: clamp(16px, 1.35vw, 18px);
        margin-left: 15px;
    }

    .siglas {
        font-weight: bold;
        color: white;
    }

/*Two banner*/

    .bannertwo {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1 1 0;
        min-width: 0;
        border-radius: 0;
        overflow: visible;
        position: relative;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .banner-blindaje-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: 100%;
        max-width: 600px;
        text-align: center;
        padding: 40px 20px;
        position: relative;
        overflow: hidden;
    }

    .banner-blindaje-bg-art {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 0;
    }

    .banner-blindaje-bg-art img {
        width: min(100%, 560px);
        height: auto;
        opacity: 0.50;
        object-fit: contain;
        transform: translate(18px, 25px);
    }

    .banner-blindaje-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
    }

    .banner-blindaje-logo img {
        width: 250px;
        height: 250px;
        object-fit: contain;
        position: relative;
        z-index: 2;
    }


    .banner-blindaje-title {
        margin: 0;
        font-family: 'Montserrat', sans-serif;
        font-size: clamp(28px, 4vw, 48px);
        font-weight: 800;
        line-height: 1.2;
        color: #111827;
        letter-spacing: -0.02em;
        position: relative;
        z-index: 2;
    }

    .banner-blindaje-subtitle {
        margin: 0;
        font-size: clamp(14px, 2vw, 18px);
        line-height: 1.6;
        color: #1f2937;
        font-weight: 500;
        max-width: 500px;
        position: relative;
        z-index: 2;
    }

    .banner-blindaje-method {
        margin: 10px 0 0;
        font-size: clamp(12px, 1.5vw, 16px);
        font-weight: 600;
        color: #4b5563;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        position: relative;
        z-index: 2;
    }

    .image-card-glow {
        display: none;
    }

    #banner2 {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 0;
        margin: 0;
        object-fit: cover;
        position: relative;
        z-index: 1;
        box-shadow: none;
    }

    @media (max-width: 900px) {
        .siglas-banner2-row {
            flex-direction: column;
        }

        .banner-siglas,
        .bannertwo {
            flex: 1 1 auto;
        }

        #banner2 {
            height: auto;
            width: 100%;
        }

        .banner-blindaje-content {
            padding: 30px 16px;
            gap: 16px;
        }

        .banner-blindaje-logo img {
            width: 140px;
            height: 140px;
        }

        .banner-blindaje-bg-art img {
            width: min(100%, 520px);
            opacity: 0.46;
            transform: translate(12px, 10px);
        }

        .banner-blindaje-title {
            font-size: clamp(24px, 5vw, 36px);
        }

        .banner-blindaje-subtitle {
            font-size: clamp(13px, 2.5vw, 16px);
        }
    }

    @media (max-width: 640px) {
        .banner-blindaje-content {
            padding: 24px 12px;
            gap: 14px;
        }

        .banner-blindaje-logo img {
            width: 110px;
            height: 110px;
        }

        .banner-blindaje-bg-art img {
            width: min(100%, 420px);
            opacity: 0.42;
            transform: translate(8px, 8px);
        }

        .banner-blindaje-title {
            font-size: clamp(22px, 6vw, 32px);
        }

        .banner-blindaje-subtitle {
            font-size: clamp(12px, 3vw, 14px);
        }
    }

    
    /* Tabs */
    .tabs {
        margin-top: 20px;
        display: flex;
        justify-content: space-around;
        background: #333;
        color: white;
        border-radius: 20px;
        padding: 10px;
    }

    .tabs div {
        cursor: pointer;
    }

    .tabs .active {
        background: #00aaff;
        padding: 5px 15px;
        border-radius: 10px;
    }

    /* Steps */
    .steps {
        display: flex;
        margin-top: 20px;
    }

    .step {
        flex: 1;
        padding: 20px;
        text-align: center;
        background: #f0f0f0;
        border-right: 1px solid #ccc;
    }

    .step:last-child {
        background: #00aaff;
        color: white;
    }


    .section-title {
        margin: 0;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        color: #1a1a1a;
    }

    .section-title-main {
        margin: 12px auto 24px;
        font-size: clamp(24px, 3.1vw, 36px);
        font-weight: 700;
        line-height: 1.14;
        letter-spacing: -0.02em;
        white-space: normal;
        text-wrap: balance;
    }

    .section-title-label {
        margin: var(--section-gap) 0 22px;
        font-size: clamp(13px, 1.2vw, 17px);
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--cta);
    }

    /* Container services - Bento Grid */

    .container-services {
        display: grid;
        margin-bottom: 40px;
        grid-template-columns: 1.35fr 1fr;
        grid-template-rows: auto auto;
        gap: 14px;
        border-radius: 0;
        overflow: visible;
        background: transparent;
    }

    .container-services > div {
        min-height: 200px;
        box-sizing: border-box;
        padding: 28px 22px 24px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: var(--radius-card);
        background: linear-gradient(135deg, rgba(255,255,255,0.90) 0%, rgba(232,238,248,0.70) 100%);
        border: 1px solid rgba(255,255,255,0.70);
        box-shadow: 0 8px 24px rgba(15, 23, 34, 0.09), 0 1px 4px rgba(15,23,34,0.05);
        backdrop-filter: blur(10px) saturate(1.3);
        -webkit-backdrop-filter: blur(10px) saturate(1.3);
        transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), box-shadow 0.28s ease, border-color 0.28s ease;
    }

    /* Bento: columna izquierda más grande (Administrativos y Legales) */
    .container-services > div:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        min-height: 240px;
        background: linear-gradient(135deg, #e8f5fb 0%, #c8eaf5 100%);
        border-color: rgba(0, 163, 209, 0.22);
    }

    .container-services > div:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
        background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
    }

    /* Marketing: tamaño pequeño, columna izquierda fila 2 */
    .container-services > div:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
        background: linear-gradient(135deg, #e8f0fb 0%, #c8d8f5 100%);
        border-color: rgba(0, 80, 209, 0.18);
    }

    /* Legales: al lado derecho, mismo tamaño grande que Administrativos */
    .container-services > div:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
        min-height: 240px;
        background: linear-gradient(135deg, #00c3ef 0%, #00a7da 100%);
    }

    .container-services > div:nth-child(5) {
        grid-column: 1;
        background: linear-gradient(135deg, #00c3ef 0%, #00a7da 100%);
    }

    .container-services > div:nth-child(6) {
        grid-column: 2;
        background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    }

    .container-services > div:nth-child(7) {
        background: linear-gradient(135deg, #bebebe 0%, #a2a2a2 100%);
    }

    .container-services > div:nth-child(8) {
        background: linear-gradient(135deg, #8f8f8f 0%, #6f6f6f 100%);
    }

    .container-services > div h1 {
        display: block;
        margin: 0;
        color: #111;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 34px;
        line-height: 1;
    }

    .container-services > div h2 {
        display: block;
        margin: 10px 0 0;
        color: #111;
        font-family: 'Open Sans', sans-serif;
        font-weight: 650;
        font-size: 22px;
        line-height: 1.2;
        padding-bottom: 7px;
        border-bottom: 3px solid rgba(0, 0, 0, 0.55);
    }

    .container-services > div p {
        margin: 20px 0 0;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.55;
        color: #101010;
    }

    .container-services > div img {
        display: block;
        width: clamp(56px, 5vw, 76px);
        height: clamp(56px, 5vw, 76px);
        object-fit: contain;
        margin: 0;
        mix-blend-mode: multiply;
    }

    .container-services > div h3 {
        display: block;
        margin: 0;
        color: #111;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: clamp(17px, 1.35vw, 20px);
        line-height: 1.35;
        text-wrap: balance;
    }

    .container-services .service-card {
        cursor: pointer;
        transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), box-shadow 0.28s ease, border-color 0.28s ease;
        transform-origin: center;
        overflow: hidden;
    }

    .container-services .service-card:hover,
    .container-services .service-card:focus-visible {
        transform: translateY(-8px) scale(1.03);
        border-radius: var(--radius-card);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18), 0 0 0 2px rgba(0, 163, 209, 0.25);
        border-color: rgba(0, 163, 209, 0.40);
        outline: none;
        z-index: 2;
    }

    @media (max-width: 1300px) {
        .container-services > div p {
            font-size: 15px;
        }

        .container-services > div h1,
        .container-services > div h2 {
            font-size: 20px;
        }

        .container-services > div h1 {
            font-size: 28px;
        }
    }

    @media (max-width: 980px) {
        .container-services {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .container-services > div:nth-child(1),
        .container-services > div:nth-child(2),
        .container-services > div:nth-child(3),
        .container-services > div:nth-child(4) {
            grid-column: auto;
            grid-row: auto;
            min-height: 180px;
        }

        .container-services > div {
            min-height: 156px;
            padding: 18px 14px;
            gap: 8px;
        }

        .container-services > div p {
            font-size: 15px;
            line-height: 1.45;
        }
    }

    @media (max-width: 640px) {
        .container-services {
            grid-template-columns: 1fr;
            border-radius: 14px;
        }

        .container-services > div:nth-child(1) {
            grid-column: 1;
        }

        .container-services > div {
            border-right: none;
            min-height: auto;
            gap: 8px;
        }

        .container-services > div h1,
        .container-services > div h2 {
            font-size: 18px;
        }

        .container-services > div h1 {
            font-size: 24px;
        }

        .container-services > div p {
            font-size: 14px;
        }
    }
    

    .back-to-top {
        position: fixed;
        right: 24px;
        bottom: 24px;
        min-height: 52px;
        padding: 0 18px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 999px;
        background: linear-gradient(135deg, #0ba8d4, #056f95);
        color: #ffffff;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        overflow: hidden;
        box-shadow: 0 14px 30px rgba(2, 63, 86, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px) scale(0.96);
        transition: opacity 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
        z-index: 30;
    }

    .back-to-top::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
        transform: translateX(-125%);
        transition: transform 0.45s ease;
        pointer-events: none;
    }

    .back-to-top-icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: inline-grid;
        place-items: center;
        font-size: 16px;
        line-height: 1;
        font-weight: 900;
    }

    .back-to-top-text {
        letter-spacing: 0.04em;
    }

    .back-to-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .back-to-top:hover,
    .back-to-top:focus-visible {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 18px 34px rgba(2, 62, 84, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.42);
        filter: saturate(1.08);
        outline: none;
    }

    .back-to-top:hover::before,
    .back-to-top:focus-visible::before {
        transform: translateX(125%);
    }

    .back-to-top:focus-visible {
        box-shadow: 0 0 0 4px rgba(14, 172, 216, 0.28), 0 18px 34px rgba(2, 62, 84, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.42);
    }

    .whatsapp-float,
    .telegram-float {
        position: fixed;
        right: 24px;
        width: auto;
        height: auto;
        border: 0;
        border-radius: 0;
        background: transparent;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        cursor: pointer;
        box-shadow: none;
        z-index: 31;
        transition: transform 0.2s ease;
    }

    .whatsapp-float {
        bottom: 96px;
    }

    .telegram-float {
        bottom: 24px;
    }

    .back-to-top.is-visible ~ .whatsapp-float {
        bottom: 164px;
    }

    .back-to-top.is-visible ~ .telegram-float {
        bottom: 92px;
    }

    .whatsapp-float:hover,
    .whatsapp-float:focus-visible,
    .telegram-float:hover,
    .telegram-float:focus-visible {
        transform: translateY(-2px);
        outline: none;
    }

    .whatsapp-float-icon,
    .telegram-float-icon {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .telegram-float-icon {
        width: 52px;
        height: 52px;
    }

    footer {
        background: linear-gradient(135deg, #0f1722 0%, #1a2840 100%);
        color: #fff;
        font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
        font-size: 14px;
        letter-spacing: 0.04em;
        margin-top: 40px;
        width: 100%;
        margin-left: 0;
        border-radius: 18px 18px 0 0;
        padding: 15px 15px;
    }

    .footer-inner {
        width: 100%;
        max-width: 1320px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
        align-items: center;
        gap: 18px 24px;
    }

    .footer-brand {
        display: flex;
        align-items: center;
        justify-self: start;
        align-self: end;
        margin-top: 6px;
    }

    .footer-logo {
        width: 125px;
        height: 125px;
        object-fit: contain;
        margin-right: 12px;
    }

    .footer-brand-name {
        font-family: 'Copperplate Gothic Bold', 'Copperplate Gothic', 'Copperplate', serif;
        font-size: 21px;
        color: #fff;
        letter-spacing: 0.08em;
    }

    .footer-social {
        display: flex;
        justify-self: center;
        gap: 14px;
    }

    .footer-social-btn {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        padding: 0;
    }

    .footer-social-btn:hover {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    }

    .footer-social-btn:focus-visible {
        outline: 2px solid rgba(255, 255, 255, 0.75);
        outline-offset: 2px;
    }

    .footer-social-btn:active {
        transform: translateY(-1px);
    }

    .footer-social-btn img {
        width: 22px;
        height: 22px;
        object-fit: contain;
        filter: brightness(0) invert(1);
        transition: transform 0.25s ease, opacity 0.25s ease;
        opacity: 0.95;
    }

    .footer-social-btn:hover img {
        transform: scale(1.06);
        opacity: 1;
    }

    .footer-social-icon-telegram {
        transform: translateX(0);
    }

    .footer-social-btn:hover .footer-social-icon-telegram {
        transform: translateX(0) scale(1.06);
    }

    .footer-links {
        display: flex;
        align-items: center;
        justify-self: end;
        align-self: end;
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: flex-end;
        text-align: right;
        margin-bottom: -50px;
    }

    .footer-company-data {
        grid-column: 3;
        justify-self: end;
        margin-bottom: 30px;
        display: grid;
        gap: 4px;
        text-align: right;
        font-style: normal;
        font-size: 13px;
        color: #ffffff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
    }

    .footer-company-data a {
        color: #ffffff;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .footer-company-data a:hover {
        opacity: 0.9;
    }

    .footer-link-btn {
        background: none;
        border: none;
        color: #fff;
        font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
        font-size: 13px;
        cursor: pointer;
        padding: 4px 2px;
        transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
        letter-spacing: 0.02em;
        opacity: 0.95;
    }

    .footer-link-btn:hover {
        opacity: 1;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .footer-divider {
        color: #fff;
        opacity: 0.55;
        font-size: 16px;
    }

    .footer-copy {
        grid-column: 1 / -1;
        margin: 0;
        color: #fff;
        opacity: 0.86;
        font-size: 12px;
        letter-spacing: 0.04em;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        padding-top: 10px;
    }

    @media (max-width: 1200px) {
        .container {
            padding-inline: 16px;
        }

        .main {
            grid-template-columns: 1fr;
        }

        .home-topbar {
            align-items: flex-start;
        }

        .home-topbar .topbar-menu {
            width: 100%;
        }

        .home-topbar .topbar-menu > ul {
            justify-content: flex-start;
        }

        .sidebar {
            width: 100%;
            position: static;
            top: auto;
            max-height: none;
            overflow: visible;
        }

        .sidebar-floating {
            position: fixed;
            top: calc(var(--fixed-video-height) + 16px);
            right: 12px;
            left: auto;
            bottom: auto;
            width: auto;
            max-width: calc(100vw - 16px);
            z-index: 35;
        }

        #primarySidebar ul {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 12px;
        }

        #primarySidebar > ul > li {
            margin: 0;
        }

        .main > picture {
            grid-column: 1;
        }

        .main > picture > .banner-princ-top {
            grid-column: 1;
            width: 100%;
            margin: 0;
            border-radius: 20px;
        }

        .main > .banner-princ-summary {
            grid-column: 1;
            border-radius: 0;
            padding: 10px 8px;
            margin-bottom: 8px;
            aspect-ratio: auto;
            min-height: 0;
        }

        .main > picture + picture > .banner-princ-top {
            margin-top: -20px;
        }

        .main > picture > .banner-princ-top:last-of-type {
            margin-bottom: 34px;
        }

        .banner {
            grid-column: 1;
            margin-top: 0;
        }

        .projects,
        .banner,
        .banner-siglas {
            padding-left: 24px;
            padding-right: 24px;
        }
    }

    @media (max-width: 900px) {
        footer {
            margin-top: 16px;
            border-radius: 16px 16px 0 0;
            padding: 24px 14px 18px;
        }

        .footer-inner {
            grid-template-columns: 1fr;
            gap: 14px;
            justify-items: center;
        }

        .footer-brand,
        .footer-social,
        .footer-links {
            justify-self: center;
            justify-content: center;
        }

        .footer-company-data {
            grid-column: auto;
            justify-self: center;
            text-align: center;
            font-size: 14px;
        }

        .footer-links {
            margin-bottom: 0;
        }

        .footer-copy {
            margin-top: 2px;
            font-size: 11px;
            padding-top: 10px;
        }
        #primarySidebar .has-dropdown.is-open .social-dropdown,
        #floatingSidebar .has-dropdown.is-open .social-dropdown {
            display: block;
        }

        #primarySidebar .social-fixed-item .social-dropdown {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap: 4px;
        }

        .has-dropdown:not(.is-open):hover .social-dropdown,
        .has-dropdown:not(.is-open):focus-within .social-dropdown,
        .has-dropdown:not(.is-open):hover .submenu-dropdown,
        .has-dropdown:not(.is-open):focus-within .submenu-dropdown {
            display: none;
        }

        .has-dropdown:not(.is-open):hover .dropdown-arrow,
        .has-dropdown:not(.is-open):focus-within .dropdown-arrow {
            transform: rotate(45deg);
        }

        .sidebar-floating > ul > li {
            margin: 0;
            padding: 0;
            border-radius: 0;
            gap: 8px;
            font-size: 14px;
            color: #1f2937;
        }

        .sidebar-floating .menu-link-btn,
        .sidebar-floating .menu-label {
            padding: 10px 12px;
        }

        .header:not(.home-topbar) {
            align-items: flex-start;
        }

        .home-topbar {
            padding: 12px;
        }

        .home-topbar .topbar-menu .submenu-dropdown {
            position: static;
            top: auto;
            left: auto;
            width: 100%;
            min-width: 0;
            margin-top: 8px;
        }

        .banner {
            grid-template-columns: 1fr;
            grid-template-areas:
                "title"
                "image"
                "left"
                "right"
                "list"
                "quote";
            gap: 14px;
            padding: 24px;
            background: linear-gradient(to left, #000000, #555);
            color: white;
            border-radius: 20px;
        }

        .banner h2 {
            margin: 0 0 24px;
            color: #0eacd8;
        }

        .banner-text,
        .banner-quote {
            color: white;
        }

        .banner-text-left,
        .banner-text-right {
            text-align: left;
        }

        .banner-image-wrap {
            padding-inline: 0;
        }

        .banner-img {
            width: min(100%, 300px);
            margin: 0 auto;
            -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
            mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
            -webkit-mask-composite: unset;
            mask-composite: unset;
        }

        .banner-list {
            background-color: #ffffff;
            color: #000000;
            border-radius: 20px;
            margin-bottom: 0;
        }

        .main > picture > .banner-princ-top {
            height: auto;
            object-fit: contain;
            object-position: center;
        }

        .main > picture > .banner-princ-top:last-of-type {
            margin-bottom: 14px;
        }

        .projects {
            padding: 20px 0;
        }

        .carousel-track {
            grid-template-columns: repeat(2, minmax(240px, 1fr));
            gap: 16px;
        }

        .banner-siglas {
            padding: 24px;
        }

        .texto-siglas {
            margin-left: 0;
            line-height: 1.8;
        }
    }

    @media (max-width: 640px) {
        :root {
            --fixed-video-height: 58px;
        }

        .sidebar-floating {
            right: 8px;
            width: auto;
            max-width: calc(100vw - 12px);
        }

        .section-title-main {
            white-space: normal;
            line-height: 1.2;
        }

        .objectives-carousel {
            padding: 16px 12px;
        }

        .container {
            padding: 10px;
        }

        .logo {
            font-size: 20px;
        }

        .logo-inicial {
            width: 72px;
            height: 72px;
        }

        .home-topbar-brand .logo-inicial {
            width: 54px;
            height: 54px;
        }

        .home-topbar {
            justify-content: center;
            text-align: center;
        }

        .home-topbar-brand,
        .home-topbar .logo {
            justify-content: center;
            width: 100%;
        }

        .home-topbar-brand .logo-title-wordmark {
            width: clamp(98px, 40vw, 126px);
        }

        .home-topbar .topbar-menu > ul {
            justify-content: center;
        }

        .home-topbar .topbar-menu .menu-link-btn,
        .home-topbar .topbar-menu .menu-label {
            width: 100%;
            justify-content: flex-start;
        }

        .home-topbar .topbar-menu .submenu-dropdown {
            max-width: 100%;
        }

        #primarySidebar ul {
            grid-template-columns: 1fr;
        }

        .sidebar > ul > li,
        .menu-label {
            gap: 14px;
        }

        .menu-label-text {
            gap: 14px;
        }

        .main > picture > .banner-princ-top {
            border-radius: 14px;
            height: auto;
            object-fit: contain;
            object-position: center;
        }

        .main > .banner-princ-summary {
            border-radius: 0;
            gap: 6px;
            padding: 8px 6px;
            margin-bottom: 6px;
            min-height: 0;
        }

        .banner-princ-summary-logo img {
            width: clamp(150px, 58vw, 240px);
        }

        .banner-princ-summary-logo .logo-inicial {
            width: 86px;
            height: 86px;
        }

        .banner {
            padding: 20px;
            border-radius: 16px;
        }

        .banner h2 {
            font-size: clamp(34px, 9vw, 46px);
        }

        .banner-text,
        .banner-list {
            font-size: 15px;
        }

        .banner-list {
            flex-direction: row;
            gap: 10px;
            padding: 8px 16px;
        }

        .banner-list > div {
            display: contents;
        }

        .banner-list ul {
            margin: 0;
            padding-left: 20px;
        }

        .projects-title {
            font-size: 16px;
            letter-spacing: 1px;
        }

        .carousel-track {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .carousel-item {
            font-size: 15px;
            min-height: auto;
            padding: 16px;
        }

        .carousel-item p {
            font-size: 15px;
            line-height: 1.65;
            overflow-wrap: break-word;
        }

        .siglas-banner2-row {
            gap: 14px;
        }

        .banner-siglas {
            padding: 20px;
            border-radius: 16px;
        }

        .bannertwo {
            padding: 14px;
            border-radius: 16px;
        }

        #title-objetivos {
            margin: 36px 0 24px;
        }

        .back-to-top {
            right: 14px;
            bottom: 18px;
            min-height: 44px;
            padding: 0 14px;
            font-size: 11px;
            gap: 8px;
        }

        .whatsapp-float {
            right: 14px;
            bottom: 74px;
            width: auto;
            height: auto;
        }

        .telegram-float {
            right: 14px;
            bottom: 22px;
            width: auto;
            height: auto;
        }

        .whatsapp-float-icon,
        .telegram-float-icon {
            width: 36px;
            height: 36px;
        }

        .back-to-top-icon {
            width: 22px;
            height: 22px;
            font-size: 14px;
        }
    }

    @media (max-width: 500px) {
        .sidebar-floating {
            top: calc(var(--fixed-video-height) + 4px);
            right: 6px;
            width: auto;
            max-width: calc(100vw - 10px);
        }

        .sidebar-floating .menu-link-btn,
        .sidebar-floating .menu-label,
        .sidebar-floating .submenu-link {
            padding: 10px 12px;
            font-size: 14px;
        }

        .sidebar-floating .menu-label-text {
            gap: 10px;
        }

        .sidebar-floating .imagenes {
            width: 20px;
            height: 20px;
        }

        .container {
            padding: 8px;
        }

        .banner-list {
            flex-direction: column;
            gap: 0;
            padding: 8px 16px;
        }

        .banner-list > div {
            display: contents;
        }

        .section-title-main {
            font-size: 30px;
            margin: 8px auto 16px;
        }

        .section-title-label {
            margin: 36px 0 14px;
            letter-spacing: 0.08em;
        }

        .banner,
        .banner-siglas {
            padding: 16px;
        }

        .texto-siglas {
            font-size: 15px;
            line-height: 1.7;
        }

        .objectives-carousel {
            padding: 12px 8px;
        }

        .carousel-item {
            padding: 14px;
            border-radius: 8px;
        }

        .carousel-item h4 {
            font-size: 17px;
        }

        .carousel-item p {
            font-size: 14px;
            line-height: 1.6;
        }

        .carousel-wrapper {
            padding: 0 30px;
        }

        .carousel-btn {
            width: 28px;
            height: 28px;
            font-size: 14px;
        }

        .container-services > div {
            padding: 18px 12px;
        }

        .container-services > div h3 {
            font-size: 16px;
        }

        footer {
            font-size: 14px;
        }

        .main > picture > .banner-princ-top {
            border-radius: 10px;
            height: auto;
            object-fit: contain;
            object-position: center;
        }

        .banner-img {
            width: 100%;
            -webkit-mask-image: none;
            mask-image: none;
        }
    }

    @media (max-width: 360px) {
        .sidebar-floating {
            right: 4px;
            width: auto;
            max-width: calc(100vw - 8px);
        }

        .sidebar-floating .menu-link-btn,
        .sidebar-floating .menu-label,
        .sidebar-floating .submenu-link {
            padding: 10px 12px;
            font-size: 14px;
        }

        .sidebar-floating .menu-label-text {
            gap: 10px;
        }

        .sidebar-floating .imagenes {
            width: 20px;
            height: 20px;
        }
    }

    @media (max-width: 320px) {
        .sidebar-floating {
            width: auto;
            max-width: calc(100vw - 8px);
        }
    }

    :root {
        --bg-main: #ffffff;
        --bg-soft: #f2f4f7;
        --text-main: #0f1722;
        --text-muted: #39495d;
        --card-bg: rgba(255, 255, 255, 0.82);
        --card-border: rgba(17, 24, 39, 0.10);
        --accent: #00a6d1;
        --accent-strong: #007da8;
        --cta: #0a84ff;
        --cta-hover: #005fcb;
        --cta-glow: rgba(10, 132, 255, 0.38);
        --section-gap: clamp(56px, 6vw, 96px);
        --panel-shadow: 0 10px 32px rgba(15, 23, 34, 0.09), 0 1px 4px rgba(15, 23, 34, 0.05);
        --radius-card: 20px;
        --radius-pill: 999px;
    }

    body {
        background: var(--bg-main);
        color: var(--text-main);
        position: relative;
        min-height: 100vh;
    }

    body::before,
    body::after {
        content: none;
        position: fixed;
        width: 44vw;
        height: 44vw;
        border-radius: 999px;
        filter: blur(34px);
        z-index: -2;
        opacity: 0.5;
        pointer-events: none;
        animation: orbFloat 18s ease-in-out infinite alternate;
    }

    body::before {
        top: -12vw;
        left: -10vw;
        background: radial-gradient(circle at center, rgba(0, 166, 209, 0.45), rgba(0, 166, 209, 0));
    }

    body::after {
        right: -12vw;
        bottom: -12vw;
        background: radial-gradient(circle at center, rgba(255, 205, 109, 0.34), rgba(255, 205, 109, 0));
        animation-delay: 3s;
    }

    @keyframes orbFloat {
        from { transform: translate3d(0, 0, 0) scale(1); }
        to { transform: translate3d(3vw, 2vw, 0) scale(1.08); }
    }

    .glass-panel {
        background: linear-gradient(135deg, rgba(255,255,255,0.88) 0%, rgba(242,244,247,0.72) 100%);
        border: 1px solid rgba(255, 255, 255, 0.65);
        box-shadow: var(--panel-shadow);
        backdrop-filter: blur(14px) saturate(1.4);
        -webkit-backdrop-filter: blur(14px) saturate(1.4);
    }

    /* Switch claro/oscuro eliminado. Sitio en tema unico. */

    .social-proof {
        margin-top: var(--section-gap);
        margin-bottom: var(--section-gap);
        border-radius: 22px;
        padding: 24px 28px;
    }

    .social-proof-title {
        margin: 0 0 16px;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: var(--text-main);
        text-transform: uppercase;
        font-size: clamp(13px, 1.1vw, 15px);
    }

    .logo-marquee {
        overflow: hidden;
        position: relative;
        padding-inline: 2px;
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
    }

    .logo-track {
        display: flex;
        gap: 0;
        width: max-content;
        animation: logoLoop 17s linear infinite;
        will-change: transform;
    }

    .logo-pill {
        padding: 10px 16px;
        border-radius: 999px;
        font-weight: 700;
        color: var(--text-main);
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.75);
        white-space: nowrap;
        flex: 0 0 auto;
        margin-right: 14px;
    }

    @keyframes logoLoop {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
    }

    .benefits-accordion-wrap {
        margin-top: var(--section-gap);
    }

    .benefits-accordion {
        margin-top: 20px;
        border-radius: 24px;
        padding: 20px;
        display: grid;
        grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.8fr);
        gap: 16px;
    }

    .benefits-list {
        display: grid;
        gap: 10px;
    }

    .benefit-item {
        text-align: left;
        border: 1px rgba(255, 255, 255, 0.45);
        background: linear-gradient(135deg, rgba(255,255,255,0.60) 0%, rgba(232,240,250,0.45) 100%);
        border-radius: 14px;
        color: var(--text-main);
        padding: 14px 18px;
        cursor: pointer;
        display: grid;
        gap: 6px;
        transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
        font-size: 17px;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .benefit-item strong {
        font-family: 'Montserrat', sans-serif;
    }

    .benefit-item span {
        color: var(--text-muted);
        line-height: 1.5;
    }

    .benefit-item:hover,
    .benefit-item.is-active:hover {
        border: 1px solid rgba(14, 172, 216, 0.60);
        transform: translateX(6px) scale(1.01);
        background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(215,235,248,0.72) 100%);
        box-shadow: 0 8px 20px rgba(0, 120, 180, 0.15);
    }

    .benefit-item.is-active {
        border-color: var(--card-border);
        transform: none;
        background: linear-gradient(135deg, rgba(255,255,255,0.60) 0%, rgba(232,240,250,0.45) 100%);
        box-shadow: none;
    }

    .benefits-preview {
        border-radius: 18px;
        min-height: 280px;
        padding: 22px;
        position: relative;
        color: #f8fbff;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
        overflow: hidden;
    }

    .benefits-preview-picture {
        position: absolute;
        inset: 0;
        z-index: 0;
        margin: 0;
    }

    .benefits-preview-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .benefits-preview::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        opacity: 0;
        z-index: 0;
        background: #ffffff;
    }

    .benefits-preview-copy {
        position: relative;
        z-index: 2;
    }

    .benefits-preview h3,
    .benefits-preview p {
        margin: 0;
    }

    .benefits-preview h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: clamp(24px, 2.2vw, 30px);
        margin-bottom: 10px;
    }

    .benefits-preview p {
        line-height: 1.6;
        max-width: 34ch;
    }

    .osare-scrolly {
        min-height: 480px;
        position: relative;
    }

    .osare-sticky-scene {
        position: sticky;
        top: calc(var(--fixed-video-height) + 20px);
        min-height: 360px;
        border-radius: 16px;
        background: rgba(6, 17, 34, 0.84);
        color: #f4f8ff;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
    }

    .osare-word {
        position: absolute;
        z-index: 2;
        display: flex;
        gap: 0.2em;
        font-family: 'Montserrat', sans-serif;
        font-size: clamp(54px, 9vw, 126px);
        letter-spacing: 0.08em;
        font-weight: 800;
    }

    .osare-word span {
        opacity: 0.18;
        transform: translateY(20px) scale(0.8);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
        color: rgba(206, 227, 255, 0.65);
    }

    .osare-word span.is-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
        color: #7de2ff;
    }

    .chaos-chip {
        position: absolute;
        left: calc(var(--x, 0.5) * 100%);
        top: calc(var(--y, 0.5) * 100%);
        transform: translate(-50%, -50%);
        padding: 8px 10px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(126, 177, 240, 0.45);
        transition: left 0.5s ease, top 0.5s ease, background-color 0.35s ease, transform 0.35s ease;
    }


    .osare-steps {
        display: grid;
        gap: 12px;
    }

    .osare-steps article {
        background: rgba(255, 255, 255, 0.46);
        border: 1px solid rgba(255, 255, 255, 0.58);
        border-radius: 14px;
        padding: 14px 18px;
        transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    }

    .osare-steps article:hover {
        transform: translateY(-5px) scale(1.02);
        background: rgba(255, 255, 255, 0.70);
        border-color: rgba(0, 163, 209, 0.42);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    }

    .osare-steps h3 {
        margin: 0;
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
    }

    .osare-steps p {
        margin: 8px 0 0;
        color: var(--text-muted);
        line-height: 1.55;
    }

    .section-bg-soft {
        background: var(--bg-soft);
        border-radius: 28px;
        padding: 48px 24px;
        margin: 0 -10px;
    }

    .cta-hero {
        margin-top: 10px;
        font-size: 17px;
        padding: 18px 44px;
        box-shadow: 0 16px 40px var(--cta-glow), 0 4px 12px rgba(0,0,0,0.13);
    }

    .cta-premium {
        margin: 40px 0 48px;
        border-radius: var(--radius-card);
        padding: 36px 28px;
        text-align: center;
    }

    .cta-premium p {
        margin: 0 0 20px;
        font-size: clamp(17px, 1.7vw, 22px);
        color: var(--text-main);
        font-weight: 500;
    }

    .cta-magnet {
        position: relative;
        border: 0;
        border-radius: var(--radius-pill);
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        letter-spacing: 0.06em;
        padding: 16px 36px;
        font-size: 16px;
        cursor: pointer;
        background: linear-gradient(135deg, var(--cta), var(--cta-hover));
        box-shadow: 0 12px 28px var(--cta-glow), 0 3px 8px rgba(0,0,0,0.12);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        isolation: isolate;
        text-transform: uppercase;
    }

    .cta-magnet:hover,
    .cta-magnet:focus-visible {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 18px 36px var(--cta-glow), 0 4px 12px rgba(0,0,0,0.15);
        outline: none;
    }

    .cta-magnet::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: inherit;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
        transform: translateX(-130%);
        animation: ctaGlow 4.2s ease-in-out infinite;
        z-index: -1;
        opacity: 0.8;
    }

    @keyframes ctaGlow {
        0%, 62% { transform: translateX(-130%); opacity: 0; }
        78% { transform: translateX(0%); opacity: 0.95; }
        100% { transform: translateX(130%); opacity: 0; }
    }

    h3 {
        color: #000000;
    }

    @media (max-width: 900px) {
        .benefits-accordion {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 640px) {

        .social-proof,
        .benefits-accordion,
        .cta-premium {
            padding: 14px;
        }

        .logo-pill {
            font-size: 13px;
        }

        .benefits-preview {
            min-height: 220px;
        }

        .osare-scrolly {
            min-height: 700px;
        }

        .osare-sticky-scene {
            min-height: 300px;
        }
    }

    /* Final responsive tuning */
    @media (max-width: 900px) {
        .header {
            position: relative;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .left {
            width: 100%;
            padding-right: 112px;
        }


        .social-proof-title {
            font-size: clamp(13px, 2.8vw, 16px);
            line-height: 1.3;
            letter-spacing: 0.05em;
            overflow-wrap: break-word;
        }

        .benefit-item {
            font-size: 15px;
        }

        .cta-magnet {
            width: min(100%, 340px);
        }
    }

    @media (max-width: 640px) {
        .left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }


        .banner-text {
            padding: 12px;
        }

        .banner-list {
            padding: 10px 12px;
        }

        .social-proof,
        .benefits-accordion,
        .cta-premium {
            border-radius: 16px;
        }

        .benefits-preview {
            min-height: 190px;
        }

        .osare-word {
            font-size: clamp(40px, 13vw, 72px);
        }

        .chaos-chip {
            font-size: 10px;
            padding: 6px 8px;
        }

        .cta-magnet {
            width: 100%;
            max-width: 100%;
        }
    }

    @media (max-width: 420px) {

        .back-to-top {
            right: 10px;
            bottom: 12px;
            min-height: 42px;
            min-width: 42px;
            padding: 0 10px;
            gap: 0;
        }

        .whatsapp-float {
            right: 10px;
            bottom: 62px;
            width: auto;
            height: auto;
        }

        .telegram-float {
            right: 10px;
            bottom: 16px;
            width: auto;
            height: auto;
        }

        .whatsapp-float-icon,
        .telegram-float-icon {
            width: 32px;
            height: 32px;
        }

        .back-to-top-text {
            display: none;
        }
    }

    /* Mobile hardening */
    @media (max-width: 900px) {
        .main {
            gap: 14px;
        }

        .sidebar > ul > li {
            font-size: 15px;
            padding: 10px;
        }

        .menu-link-btn,
        .menu-label,
        .submenu-link,
        .social-link {
            padding: 10px;
            gap: 12px;
        }

        .menu-label-text {
            gap: 12px;
        }

        .banner {
            padding: 18px;
            gap: 12px;
        }

        .banner h2 {
            margin-bottom: 16px;
            font-size: clamp(28px, 7.5vw, 38px);
        }

        .banner-list {
            width: 100%;
        }

        .siglas-banner2-row {
            margin-top: 10px;
        }

        .cta-premium {
            padding: 18px;
        }
    }

    @media (max-width: 640px) {
        .logo {
            gap: 6px;
        }

        .logo h2 {
            font-size: 30px;
        }

        .section-title-main {
            font-size: clamp(24px, 7vw, 30px);
            margin: 10px auto 18px;
        }

        .section-title-label {
            font-size: 14px;
            letter-spacing: 0.08em;
        }

        .banner-text {
            font-size: 14px;
            line-height: 1.55;
        }

        .banner-list {
            font-size: 14px;
            line-height: 1.45;
        }

        .container-services {
            gap: 8px;
            overflow: visible;
        }

        .container-services > div {
            border-right: 1px solid rgba(0, 0, 0, 0.14);
            border-radius: 12px;
        }

        .benefit-item {
            padding: 10px 12px;
            font-size: 14px;
        }

        .benefits-preview p {
            max-width: 100%;
            font-size: 14px;
            line-height: 1.5;
        }
    }

    @media (max-width: 480px) {
        .logo {
            gap: 4px;
        }

        .container {
            padding: 8px;
        }

        .logo h2 {
            font-size: 26px;
        }

        .banner h2 {
            font-size: clamp(24px, 9vw, 32px);
        }

        .sidebar > ul > li,
        .menu-link-btn,
        .menu-label,
        .submenu-link,
        .social-link {
            font-size: 13px;
        }

        .social-proof-title {
            letter-spacing: 0.03em;
            font-size: 12px;
        }

        .cta-premium p {
            font-size: 15px;
            line-height: 1.45;
        }
    }

    @media (max-width: 360px) {
        :root {
            --fixed-video-height: 52px;
        }

        .container {
            padding: 6px;
        }

        .header {
            gap: 8px;
        }

        .logo-inicial {
            width: 58px;
            height: 58px;
            margin-right: 0;
        }

        .logo h2 {
            font-size: 22px;
        }

        .home-topbar-brand .logo-title-wordmark {
            width: clamp(90px, 50vw, 116px);
        }

        .home-topbar-brand .logo-inicial {
            width: 48px;
            height: 48px;
        }


        .sidebar > ul > li,
        .menu-link-btn,
        .menu-label,
        .submenu-link,
        .social-link {
            font-size: 12px;
            padding: 8px;
            gap: 10px;
        }

        .imagenes {
            width: 24px;
            height: 24px;
        }

        .banner {
            padding: 14px;
            border-radius: 14px;
        }

        .banner h2 {
            font-size: clamp(22px, 9vw, 28px);
            margin-bottom: 12px;
        }

        .banner-text,
        .banner-list,
        .benefit-item,
        .benefits-preview p {
            font-size: 13px;
            line-height: 1.45;
        }

        .section-title-main {
            font-size: clamp(22px, 8vw, 26px);
            margin: 8px auto 14px;
        }

        .section-title-label {
            font-size: 12px;
            margin: 28px 0 12px;
        }

        .social-proof,
        .benefits-accordion,
        .cta-premium,
        .banner-siglas,
        .bannertwo {
            padding: 12px;
            border-radius: 14px;
        }

        .osare-sticky-scene {
            min-height: 240px;
        }

        .osare-word {
            font-size: clamp(34px, 12vw, 54px);
        }
    }

    @media (max-width: 320px) {
        .logo h2 {
            font-size: 20px;
        }


        .banner,
        .social-proof,
        .benefits-accordion,
        .cta-premium {
            padding: 10px;
        }

        .back-to-top {
            right: 8px;
            bottom: 10px;
            min-height: 40px;
            min-width: 40px;
        }

        .whatsapp-float {
            right: 8px;
            bottom: 56px;
            width: auto;
            height: auto;
        }

        .whatsapp-float-icon {
            width: 30px;
            height: 30px;
        }
    }

