﻿/*!
Theme Name: Alta Comunicacion
Author: Agencia Rompecabeza Digital
Author URI: https://www.rompecabeza.cl/
Description: Tema personalizado para ALTA Comunicación.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: alta-comunicacion
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, rompecabeza
*//*# sourceMappingURL=style.css.map */

/* FUENTES */

@font-face {
    font-family: 'Axiforma';
    src: url('fonts/fonnts.com-Axiforma-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axiforma';
    src: url('fonts/fonnts.com-Axiforma_Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axiforma';
    src: url('fonts/fonnts.com-Axiforma_Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axiforma';
    src: url('fonts/fonnts.com-Axiforma_Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axiforma';
    src: url('fonts/fonnts.com-Axiforma-Heavy.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axiforma';
    src: url('fonts/fonnts.com-Axiforma-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Fuente Bebas Neue para el banner */
@font-face {
    font-family: 'Bebas Neue';
    src: url('fonts/BebasNeue.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* ============================================
   VARIABLES CSS - Colores principales
   ============================================ */

   :root {
    --rojo-principal: #E43E46;
    --negro-principal: #2F2F2F;
    --blanco-principal: #FCF5EA;
    --rojo-secundario: #EA3A61;
    --gris-principal: #7A7A7A;
}

/* ============================================
   RESET Y BASE
   ============================================ */

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

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Axiforma', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

body > * {
    flex-shrink: 0;
}

body > main,
body > .main-content {
    flex: 1;
}

body {
    padding-top: 80px;
}

.banner-alta .swiper-horizontal>.swiper-pagination-bullets, 
.banner-alta .swiper-pagination-bullets.swiper-pagination-horizontal, 
.banner-alta .swiper-pagination-custom, 
.banner-alta .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom,20px) !important;
}

/* ============================================
   HEADER ALTA - Estilos específicos del header
   ============================================ */

.header-alta {
    background-color: var(--rojo-principal);
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    overflow: visible;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-alta__container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    box-sizing: border-box;
    overflow: visible;
    position: relative;
}

/* Desktop: limitar ancho del contenido a 1200px */
@media screen and (min-width: 1025px) {
    .header-alta__container {
        max-width: 1300px;
    }
}

/* Logo */
.header-alta__logo {
    flex-shrink: 0;
    z-index: 1001;
}

.header-alta__logo-img {
    height: auto;
    max-height: 40px;
    width: auto;
    display: block;
}

/* Navegación */
.header-alta__nav {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
    position: relative;
    overflow: visible;
}

/* Botón hamburguesa (solo visible en mobile) */
.header-alta__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    position: relative;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
}

.header-alta__menu-toggle-icon {
    width: 24px;
    height: 2px;
    background-color: var(--blanco-principal);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-alta__menu-toggle-icon:nth-child(1) {
    top: 8px;
}

.header-alta__menu-toggle-icon:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.header-alta__menu-toggle-icon:nth-child(3) {
    bottom: 8px;
}

.header-alta__menu-toggle.active .header-alta__menu-toggle-icon:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.header-alta__menu-toggle.active .header-alta__menu-toggle-icon:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%);
}

.header-alta__menu-toggle.active .header-alta__menu-toggle-icon:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Botón cerrar (oculto, ya no se usa porque el hamburguesa se convierte en X) */
.header-alta__menu-close {
    display: none;
}

/* Contenedor del menú */
.header-alta__menu-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: flex-end;
    position: relative;
    overflow: visible;
}

/* Desktop: reducir separaciones */
@media screen and (min-width: 1025px) {
    .header-alta__menu-wrapper {
        gap: 30px;
    }
}

/* Lista del menú principal */
.header-alta__menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: visible;
}

/* Desktop: reducir separaciones entre items del menú */
@media screen and (min-width: 1025px) {
    .header-alta__menu {
        gap: 24px;
    }
}

.header-alta__menu-item {
    position: relative;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .header-alta__menu-item {
        overflow: visible;
    }
}

.header-alta__menu-link,
.header-alta__submenu-link {
    text-decoration: none;
    font-family: 'Axiforma', sans-serif;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    opacity: 1;
    color: var(--blanco-principal);
}

/* Efecto de gradiente solo en desktop */
@media screen and (min-width: 1025px) {
    .header-alta__menu-link,
    .header-alta__submenu-link {
        color: transparent;
        background-image: linear-gradient(
            to right,
            rgba(0,0,0,1) 50%,
            rgba(252,245,234,1) 50%
        );
        background-size: 200% 100%;
        background-position: 100% 0;
        -webkit-background-clip: text;
        background-clip: text;
        transition: background-position 0.35s ease;
    }
}

/* Desktop: reducir tamaño de fuente y separaciones */
@media screen and (min-width: 1025px) {
    .header-alta__menu-link {
        font-size: 15px;
        gap: 4px;
        padding: 6px 0;
    }
}

.header-alta__menu-link-text {
    display: inline-block;
    line-height: 1;
}

/* Hover con gradiente solo en desktop */
@media screen and (min-width: 1025px) {
    .header-alta__menu-link:hover,
    .header-alta__submenu-link:hover {
        background-position: 0 0;
    }
}

/* Items con submenú */
.menu-item-has-children .header-alta__menu-link {
    position: relative;
}

.header-alta__submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blanco-principal);
    transition: transform 0.3s ease;
    align-self: center;
    flex-shrink: 0;
}

.header-alta__submenu-toggle svg {
    width: 16px;
    height: 16px;
    padding-top: 5px;
}

.menu-item-has-children.active .header-alta__submenu-toggle {
    transform: rotate(180deg);
}

.menu-item-has-children:hover .header-alta__submenu-toggle {
    transform: rotate(180deg);
}
.menu-item-has-children:hover .header-alta__submenu-toggle svg {
    padding-top: -5px;
}

/* Submenús */
.header-alta__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--rojo-principal);
    list-style: none;
    margin: 0;
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    margin-top: 8px;
    overflow: visible;
}

/* Mantener submenú abierto cuando el mouse está sobre él (solo desktop) */
@media screen and (min-width: 1025px) {
    .menu-item-has-children:hover .header-alta__submenu,
    .header-alta__submenu:hover {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}

.menu-item-has-children.active .header-alta__submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.header-alta__submenu-item {
    margin: 0;
}

/* Desktop: reducir tamaño de fuente y padding del submenú */
@media screen and (min-width: 1025px) {
    .header-alta__submenu-link {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Botón CTA */
.header-alta__cta {
    background-color: var(--blanco-principal);
    color: var(--negro-principal);
    text-decoration: none;
    font-family: 'Axiforma', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 5px 16px 8px 16px;
    border-radius: 43px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Desktop: reducir tamaño de fuente, padding y gap del CTA */
@media screen and (min-width: 1025px) {
    .header-alta__cta {
        font-size: 14px;
        gap: 6px;
    }
}

.header-alta__cta:hover {
    background-color: var(--negro-principal);
    color: var(--blanco-principal);
    transform: translateY(-1px);
}

.header-alta__cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
    line-height: 0;
    margin-top: 4px;
}

.header-alta__cta-icon svg {
    width: 35px;
    height: 35px;
    display: block;
    transition: all 0.3s ease;
}

.header-alta__cta-icon svg circle {
    fill: var(--negro-principal);
    transition: fill 0.3s ease;
}

.header-alta__cta-icon svg path {
    fill: var(--blanco-principal);
    transition: fill 0.3s ease;
    transform-origin: center;
}

/* Hover: fondo negro, texto blanco, ícono con fondo blanco y flecha roja */
.header-alta__cta:hover .header-alta__cta-icon svg {
    width: 30px;
    height: 30px;
}

.header-alta__cta:hover .header-alta__cta-icon svg circle {
    fill: var(--blanco-principal);
}

.header-alta__cta:hover .header-alta__cta-icon svg path {
    fill: var(--rojo-principal);
    animation: arrowBounce 1s ease-in-out infinite;
}

/* Animación para que solo la flecha se mueva diagonalmente hacia arriba a la derecha */
@keyframes arrowBounce {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(3px, -3px);
    }
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */

@media screen and (max-width: 1024px) {
    .header-alta__menu-toggle {
        display: flex;
    }
    
    .header-alta__menu-wrapper {
        position: fixed;     
        top: 80px;          
        left: 0;
        right: 0;
        width: 100vw;
        max-height: 0;
        background-color: var(--rojo-principal);
        flex-direction: column;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        z-index: 1001;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
        overflow-anchor: none;
    }
    
    .header-alta__menu-wrapper.active {
        max-height: calc(100vh - 80px);
        padding: 16px;
        overflow-y: auto;
        box-sizing: border-box;
    }
    
    .header-alta__menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }
    
    .header-alta__menu-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: static;
    }
    
    .menu-item-has-children {
        position: static;
        display: flex;
        flex-direction: column;
    }
    
    .header-alta__menu-link {
        width: 100%;
        padding: 12px 0;
        justify-content: space-between;
        color: var(--blanco-principal);
        font-size: 15px;
    }
    
    /* En mobile, solo cambiar font-weight cuando el item está activo/seleccionado */
    .header-alta__menu-item.active .header-alta__menu-link,
    .header-alta__menu-item.current-menu-item .header-alta__menu-link,
    .header-alta__submenu-item.active .header-alta__submenu-link,
    .header-alta__submenu-item.current-menu-item .header-alta__submenu-link {
        font-weight: 700;
    }
        
    .header-alta__submenu {
        position: static !important;   /* ← CLAVE */
        width: 100% !important;
        max-height: 0;
        overflow: hidden;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        margin: 0 !important;
        padding: 0 !important;
        transition: max-height 0.25s ease;
        background-color: var(--rojo-principal);
        list-style: none;
        overflow-anchor: none;
    }

    .menu-item-has-children.active .header-alta__submenu {
        max-height: 320px; 
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .header-alta__submenu-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        padding: 0;
    }
    
    .header-alta__submenu-link {
        padding: 12px 16px;
        display: block;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        font-size: 14px;
    }
    
    /* CTA en mobile */
    .header-alta__cta {
        justify-content: center;
    }
    

}

/* Asegurar que el body no haga scroll cuando el menú está abierto en mobile */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   FOOTER ALTA - Estilos específicos del footer
   ============================================ */

.footer-alta {
    background-color: var(--rojo-principal);
    width: 100%;
    max-width: 100%;
    position: relative;
    margin-top: auto;
    padding: 40px 0 0;
    overflow-x: hidden;
}

.footer-alta__container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px 0 20px;
    position: relative;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Desktop: limitar ancho del contenido a 1300px */
@media screen and (min-width: 1025px) {
    .footer-alta__container {
        max-width: 1300px;
    }
}

/* Texto de fondo CONECTAMOS */
.footer-alta__background-text {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    font-family: 'Axiforma', sans-serif;
    font-size: 120px;
    font-style: normal;
    font-weight: 700;
    line-height: 120px;
    letter-spacing: -6px;
    text-transform: uppercase;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
}

/* Desktop: texto CONECTAMOS ajustado dinámicamente al ancho del hr */
@media screen and (min-width: 1025px) {
    .footer-alta__background-text {
        font-size: clamp(100px, 12vw, 160px);
        line-height: clamp(100px, 12vw, 160px);
        letter-spacing: clamp(-6px, -0.6vw, -8px);
        top: auto;
        bottom: 100px; /* Posicionado justo encima del hr */
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        left: 50%;
        transform: translateX(-50%);
        padding: 0 20px;
        box-sizing: border-box;
        overflow: visible;
        white-space: nowrap;
        text-overflow: clip;
    }
}

/* Mobile: ajustar tamaño para que no se corte */
@media screen and (max-width: 1024px) {
    .footer-alta__background-text {
        font-size: clamp(50px, 15vw, 80px);
        line-height: clamp(50px, 15vw, 80px);
        letter-spacing: clamp(-2px, -0.5vw, -4px);
        white-space: normal;
        word-break: keep-all;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
}

/* Contenido del footer */
.footer-alta__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Desktop: layout horizontal */
@media screen and (min-width: 1025px) {
    .footer-alta__content {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        gap: 40px 100px;
        padding-bottom: 30px;
    }
}

/* Logo */
.footer-alta__logo {
    order: 1;
    text-align: center;
}

@media screen and (min-width: 1025px) {
    .footer-alta__logo {
        grid-column: 1;
        grid-row: 1;
        align-self: start;
        text-align: left;
        padding-top: 10px;
    }
}

.footer-alta__logo a {
    display: inline-block;
}

.footer-alta__logo-img {
    height: auto;
    max-height: 40px;
    width: auto;
    display: block;
    margin: 0 auto;
}

@media screen and (min-width: 1025px) {
    .footer-alta__logo-img {
        max-height: 70px;
        margin: 20px;
    }
}

/* Contenedor de menús (EXPLORA y PRESENCIA REGIONAL) */
.footer-alta__menus-wrapper {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media screen and (min-width: 1025px) {
    .footer-alta__menus-wrapper {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: row;
        gap: 80px;
        justify-content: flex-end;
        align-items: flex-start;
    }
}

/* Redes sociales */
.footer-alta__social {
    order: 2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media screen and (min-width: 1025px) {
    .footer-alta__social {
        display: none; /* Ocultar las redes sociales de arriba en desktop */
    }
}

/* Redes sociales en la parte inferior (solo desktop) */
.footer-alta__social--bottom {
    display: none;
}

@media screen and (min-width: 1025px) {
    .footer-alta__social--bottom {
        display: block;
        text-align: left;
    }
}

.footer-alta__section-title {
    color: rgba(255, 255, 255, 0.60);
    font-family: 'Axiforma', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 15px;
    letter-spacing: 4.488px;
    margin: 0;
    white-space: nowrap;
}

@media screen and (min-width: 1025px) {
    .footer-alta__section-title {
        font-size: 13px;
        margin-bottom: 16px;
    }
}

/* En mobile, cuando está dentro de .footer-alta__social, no tiene margin-bottom */
.footer-alta__social .footer-alta__section-title {
    margin-bottom: 0;
}

.footer-alta__social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

@media screen and (min-width: 1025px) {
    .footer-alta__social-icons {
        justify-content: flex-start;
    }
}

.footer-alta__social-icon {
    width: 32px;
    height: 32px;
    border-radius: 16777200px;
    background: rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.footer-alta__social-icon:hover {
    background: rgba(255, 255, 255, 0.20);
}

.footer-alta__social-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

@media screen and (min-width: 1025px) {
    .footer-alta__social-icons {
        gap: 12px;
    }
    
    .footer-alta__social-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer-alta__social-icon img {
        width: 18px;
        height: 18px;
    }
}

/* Menú EXPLORA */
.footer-alta__explore {
    order: 1;
}

@media screen and (min-width: 1025px) {
    .footer-alta__explore {
        order: 0;
    }
}

.footer-alta__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-alta__menu-item {
    margin: 0 0 8px 0;
}

.footer-alta__menu-link {
    color: var(--blanco-principal);
    text-decoration: none;
    font-family: 'Axiforma', sans-serif;
    font-size: 14px;
    font-weight: 400;
    display: block;
    transition: opacity 0.3s ease;
    position: relative;
    padding-left: 14px;
    opacity: 0.8;
}

@media screen and (min-width: 1025px) {
    .footer-alta__menu-link {
        font-size: 15px;
        padding-left: 16px;
    }
    
    .footer-alta__menu-item {
        margin-bottom: 10px;
    }
}

.footer-alta__menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--blanco-principal);
    border-radius: 50%;
    opacity: 0.6;
}

.footer-alta__menu-link:hover {
    opacity: 1.2;
}

/* Presencia Regional */
.footer-alta__regional {
    order: 2;
}

@media screen and (min-width: 1025px) {
    .footer-alta__regional {
        order: 0;
    }
}

.footer-alta__countries {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media screen and (min-width: 1025px) {

    .footer-alta__countries {
        grid-template-columns: repeat(2, minmax(200px, 256px));
        gap: 44px;
        justify-content: flex-end;
    }
}

/* Tablet: ajustar países para que no se recorten */
@media screen and (min-width: 1025px) and (max-width: 1400px) {
    .footer-alta__countries {
        grid-template-columns: repeat(2, minmax(180px, 220px));
        gap: 16px;
    }
    
    .footer-alta__menus-wrapper {
        gap: 40px;
    }
    
    .footer-alta__content {
        gap: 40px 60px;
    }
}

.footer-alta__country {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-alta__country-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media screen and (min-width: 1025px) {
    .footer-alta__country-header {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
}

.footer-alta__country-flag {
    width: 32px;
    height: 24px;
    margin-bottom: 4px;
    flex-shrink: 0;
}

@media screen and (min-width: 1025px) {
    .footer-alta__country-flag {
        margin-bottom: 0;
        margin-top: 0;
    }
}

.footer-alta__country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.footer-alta__country-name {
    color: var(--blanco-principal);
    font-family: 'Axiforma', sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    flex-shrink: 0;
}

@media screen and (min-width: 1025px) {
    .footer-alta__country-name {
        white-space: nowrap;
        margin: 0;
    }
}

.footer-alta__country-address,
.footer-alta__country-email {
    color: var(--blanco-principal);
    text-decoration: none;
    font-family: 'Axiforma', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    transition: opacity 0.3s ease;
    display: block;
}

@media screen and (min-width: 1025px) {
    .footer-alta__country-name {
        font-size: 13px;
    }
    
    .footer-alta__country-address,
    .footer-alta__country-email {
        font-size: 13px;
    }
}

.footer-alta__country-address:hover,
.footer-alta__country-email:hover {
    opacity: 0.8;
}

/* Wrapper inferior (copyright + enlaces legales + RRSS) */
.footer-alta__bottom-wrapper {
    order: 8;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (min-width: 1025px) {
    .footer-alta__bottom-wrapper {
        grid-column: 1 / -1;
        grid-row: 3;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
}

/* Enlaces legales */
.footer-alta__legal {
    order: 5;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Enlaces legales duplicados para desktop */
.footer-alta__legal--desktop {
    display: none;
}

@media screen and (min-width: 1025px) {
    .footer-alta__legal {
        display: none; /* Ocultar enlaces legales de arriba en desktop */
    }
    
    .footer-alta__legal--desktop {
        display: flex;
        order: 0;
    }
}

/* Contenedor derecho inferior (enlaces legales + RRSS) */
.footer-alta__bottom-right {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 1025px) {
    .footer-alta__bottom-right {
        order: 0;
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
}

@media screen and (min-width: 1025px) {
    .footer-alta__social--bottom {
        order: 1;
    }
    
    .footer-alta__social--bottom .footer-alta__section-title {
        display: none;
    }
    
    .footer-alta__social--bottom .footer-alta__social-icons {
        margin: 0;
    }
}

.footer-alta__legal-link {
    color: var(--blanco-principal);
    text-decoration: none;
    font-family: 'Axiforma', sans-serif;
    font-size: 12px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

@media screen and (min-width: 1025px) {
    .footer-alta__legal-link {
        font-size: 13px;
    }
}

.footer-alta__legal-link:hover {
    opacity: 0.8;
}

.footer-alta__legal-separator {
    color: var(--blanco-principal);
    opacity: 0.5;
}

/* Línea divisoria */
.footer-alta__divider {
    order: 6;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

@media screen and (min-width: 1025px) {
    .footer-alta__divider {
        grid-column: 1 / -1;
        grid-row: 2;
        margin: 20px 0;
    }
}

/* Copyright */
.footer-alta__copyright {
    order: 7;
    padding: 0;
}

@media screen and (min-width: 1025px) {
    .footer-alta__copyright {
        order: 0;
    }
}

.footer-alta__copyright p {
    color: var(--blanco-principal);
    font-family: 'Axiforma', sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
}

@media screen and (min-width: 1025px) {
    .footer-alta__copyright p {
        font-size: 13px;
    }
}

/* ============================================
   RESPONSIVE - Mobile Footer
   ============================================ */

@media screen and (max-width: 1024px) {
    .footer-alta {
        padding: 30px 0 0;
        overflow-x: hidden; /* Prevenir scroll horizontal */
    }
    
    .footer-alta__container {
        overflow-x: hidden; /* Prevenir scroll horizontal */
    }
    
    .footer-alta__background-text {
        top: auto;
        bottom: 120px; /* Subido para quedar sobre el hr */
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        overflow: hidden;
        font-size: clamp(45px, 12vw, 70px) !important;
        line-height: clamp(45px, 12vw, 70px) !important;
        letter-spacing: clamp(-1px, -0.3vw, -3px) !important;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .footer-alta__content {
        padding-bottom: 20px;
    }
    
    .footer-alta__logo-img {
        max-height: 45px;
    }
    
    .footer-alta__social--bottom {
        display: none; /* Ocultar RRSS de abajo en mobile */
    }
    
    .footer-alta__bottom-wrapper {
        padding-bottom: 20px;
    }
    
    /* Asegurar que los elementos estén alineados a la izquierda excepto logo y RRSS */
    .footer-alta__menus-wrapper,
    .footer-alta__explore,
    .footer-alta__regional,
    .footer-alta__legal,
    .footer-alta__copyright {
        text-align: left;
    }
}

/* ============================================
   BANNER ALTA - Estilos del banner principal
   ============================================ */

.banner-alta {
    position: relative;
    width: 100%;
    background-color: var(--negro-principal);
    min-height: 500px;
    overflow: hidden;
    cursor: grab;
}

/* Fondo con imagen/gif (comentado hasta tener el archivo) */
.banner-alta__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.banner-alta__background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.banner-alta__swiper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.banner-alta__slide {
    min-height: 500px;
    display: flex;
    align-items: center;
}

.banner-alta__container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 20px 60px;
    box-sizing: border-box;
}

.banner-alta__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.banner-alta__text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    order: 1;
}

.banner-alta__title {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 400;
    line-height: 1;
    display: block;
}

.banner-alta__title-word {
    display: inline;
    margin-right: 8px;
    line-height: 0.9;
}

.banner-alta__title-word:last-child {
    margin-right: 0;
}

.banner-alta__title-break {
    display: block;
    height: 0;
    line-height: 0;
}

.banner-alta__title-word--red {
    color: var(--rojo-principal);
}

.banner-alta__title-word--white {
    color: var(--blanco-principal);
}

.banner-alta__description {
    margin: 0;
    font-family: 'Axiforma', sans-serif;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--blanco-principal);
    max-width: 600px;
}

.banner-alta__cta {
    background-color: var(--blanco-principal);
    color: var(--negro-principal);
    text-decoration: none;
    font-family: 'Axiforma', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 6px 16px 10px 16px;
    border-radius: 43px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    width: fit-content;
    order: 3;
}

.banner-alta__cta:hover {
    background-color: var(--rojo-principal);
    color: var(--blanco-principal);
    transform: translateY(-1px);
}

.banner-alta__cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
    margin-top: 4px;
    line-height: 0;
}

.banner-alta__cta-icon svg {
    width: 35px;
    height: 35px;
    display: block;
    transition: all 0.3s ease;
}

.banner-alta__cta-icon svg circle {
    fill: var(--negro-principal);
    transition: fill 0.3s ease;
}

.banner-alta__cta-icon svg path {
    fill: var(--blanco-principal);
    transition: fill 0.3s ease;
    transform-origin: center;
}

.banner-alta__cta:hover .banner-alta__cta-icon svg circle {
    fill: var(--blanco-principal);
}

.banner-alta__cta:hover .banner-alta__cta-icon svg path {
    fill: var(--rojo-principal);
    animation: arrowBounce 1s ease-in-out infinite;
}

.banner-alta__image-wrapper {
    width: 100%;
    max-width: 600px;
    order: 2;
    position: relative;
    overflow: visible;
}

.banner-alta__image-star {
    position: absolute;
    top: -88px;
    right: -58px;
    width: 32%;
    max-width: 140px;
    min-width: 70px;
    height: auto;
    z-index: 1;
    animation: bannerStarSpin 12s linear infinite;
    transform-origin: center;
}

.banner-alta__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border: 7.02px solid var(--gris-principal);
    position: relative;
    z-index: 2;
}

@keyframes bannerStarSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Navegación: flechas (solo desktop) */
.banner-alta__navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    display: none;
}

.banner-alta__nav-button {
    position: absolute;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 52px;
    height: 29px;
    pointer-events: all;
    transition: opacity 0.3s ease;
}

.banner-alta__nav-button:hover {
    opacity: 0.7;
}

.banner-alta__nav-button--prev {
    left: 20px;
}

.banner-alta__nav-button--next {
    right: 20px;
}

.banner-alta__nav-button svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Paginación: dots */
.banner-alta__pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.banner-alta__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 2px solid var(--blanco-principal);
    opacity: 0.6;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.banner-alta__pagination .swiper-pagination-bullet-active {
    width: 28px;
    height: 10px;
    background: var(--blanco-principal);
    border: 2px solid var(--blanco-principal);
    opacity: 1;
    border-radius: 999px;
}

/* Desktop: layout horizontal */
@media screen and (min-width: 670px) {
    
    .banner-alta__container {
        padding: 100px 20px 80px;
        position: relative;
        margin: auto;
    }
    
    .banner-alta__content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        position: relative;
    }
    
    .banner-alta__text {
        max-width: 100%;
        position: relative;
        z-index: 3;
        overflow: visible;
    }
    
    .banner-alta__cta {
        margin-top: 8px;
        z-index: 3;
    }
    
    .banner-alta__image-wrapper {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 48%;
        max-width: none;
        margin-top: 0;
        z-index: 2;
        pointer-events: none;
    }
    
    .banner-alta__title {
        font-size: clamp(42px, 8vw, 100px);
        width: auto;
        max-width: none;
        white-space: normal;
    }

    .banner-alta__title-word:nth-child(2)::after {
        content: "\A";
        white-space: pre;
    }

    .banner-alta__description {
        max-width: 520px;
    }
    
    .banner-alta__description {
        font-size: 20px;
    }
}

/* Mobile: layout vertical */
@media screen and (max-width: 669px) {
    .banner-alta {
        min-height: auto;
    }
    
    .banner-alta__slide {
        min-height: auto;
        overflow: hidden;
    }
    
    .banner-alta__container {
        padding: 60px 20px 40px;
    }
    
    .banner-alta__content {
        gap: 30px;
    }
    
    .banner-alta__text {
        order: 1 !important;
    }
    
    .banner-alta__image-wrapper {
        order: 2 !important;
        position: static;
        width: 100%;
        transform: none;
        overflow: hidden;
    }

    .banner-alta__image-star {
        top: 202px;
        right: -6px;
        width: 26%;
        max-width: 80px;
        min-width: 46px;
    }
    
    .banner-alta__cta {
        order: 3 !important;
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .banner-alta__pagination {
        bottom: 20px;
    }
}
@media screen and (max-width: 1439px) {
    .banner-alta__navigation {
        display: none;
    }
}

@media screen and (min-width: 1440px) {
    .banner-alta__navigation {
        display: block;
    }
}

@media screen and (min-width: 670px) and (max-width: 1070px) {
    .banner-alta {
        min-height: 400px;
    }
    
    .banner-alta__slide {
        min-height: 400px;
    }
}

@media screen and (min-width: 670px) and (max-width: 1417px) {

    .banner-alta__image-star {
        top: -50px;
        right: -10px;
        width: 26%;
        max-width: 90px;
        min-width: 56px;
    }
}

@media screen and (min-width: 1070px) {
    .banner-alta {
        min-height: 700px;
    }
    
    .banner-alta__slide {
        min-height: 700px;
    }

    .banner-alta__container {
        padding: 150px 20px 80px;
    }

    .banner-alta__cta {
        margin-top: 40px;
    }
}

/* ============================================
   SERVICIOS - Sección Home
   ============================================ */

.services-alta {
    position: relative;
    background-image: url('images/paper-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--blanco-principal);
    padding: 80px 0 120px;
    overflow: hidden;
}

.services-alta__background-text {
    position: absolute;
    bottom: -8rem;
    left: 4rem;
    padding-bottom: 2rem;
    width: 100%;
    text-align: left;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 14vw, 200px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--rojo-principal);
    opacity: 0.9;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.services-alta__corner {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    animation: servicesCornerPulse 2s ease-in-out infinite;
}

.services-alta__corner--top-left {
    top: 128px;
    left: 0;
}

.services-alta__corner--bottom-right {
    right: 25px;
    bottom: 58px;
}

.services-alta__corner svg {
    display: block;
    width: 100%;
    height: auto;
}

.services-alta__corner--top-left svg {
    width: clamp(90px, 12vw, 171px);
}

.services-alta__corner--bottom-right svg {
    width: clamp(70px, 9vw, 124px);
}

@keyframes servicesCornerPulse {
    0%, 100% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1);
    }
}

.services-alta__container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.services-alta__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 6rem;
}

.services-alta__eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
}

.services-alta__description {
    margin: 0;
    max-width: 430px;
    font-size: 14px;
    line-height: 1.5;
}

.services-alta__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.services-alta__card {
    --services-card-pad: 16px;
    background-color: var(--negro-principal);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: var(--services-card-pad);
    padding-bottom: 18px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.services-alta__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 30px;
}

.services-alta__card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    border-radius: 24px;
    border: 1px solid var(--gris-principal);
    text-align: center;
    font-family: "Bebas Neue";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    margin: calc(-1.1 * var(--services-card-pad)) 0 0 calc(-1 * var(--services-card-pad));
}

.services-alta__card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
    margin-top: -20px;
}

.services-alta__card-arrow svg {
    width: 40px;
    height: 40px;
    display: block;
}

.services-alta__card-arrow svg circle {
    fill: #FFFFFF;
}

.services-alta__card-arrow svg path {
    fill: var(--negro-principal);
    transition: fill 0.3s ease;
    transform-origin: center;
}

.services-alta__card-body {
    display: grid;
    gap: 8px;
    margin-top: auto;
    flex: 1;
    align-content: end;
}

.services-alta__card-title {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 19.34px;
    font-weight: 500;
    word-break: break-word;
}

.services-alta__card-list {
    margin: 0;
    padding-left: 18px;
    font-size: 12px;
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    transform: translateY(8px);
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.services-alta__card-list:empty {
    display: none;
}

.services-alta__card-list li {
    list-style: none;
    position: relative;
    word-break: break-word;
}

.services-alta__card-list li::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid var(--blanco-principal);
}

.services-alta__card:hover,
.services-alta__card:focus-visible,
.services-alta__card:active {
    background-color: var(--rojo-secundario);
    border-color: var(--rojo-secundario);
}

.services-alta__card:hover .services-alta__card-number,
.services-alta__card:focus-visible .services-alta__card-number,
.services-alta__card:active .services-alta__card-number {
    border: 1px solid var(--blanco-principal);
}

.services-alta__card:hover .services-alta__card-list,
.services-alta__card:focus-visible .services-alta__card-list,
.services-alta__card:active .services-alta__card-list {
    opacity: 1;
    max-height: 180px;
    transform: translateY(0);
}

.services-alta__card:hover .services-alta__card-arrow svg path,
.services-alta__card:focus-visible .services-alta__card-arrow svg path,
.services-alta__card:active .services-alta__card-arrow svg path {
    fill: var(--rojo-secundario);
    animation: arrowBounce 1s ease-in-out infinite;
}

@media screen and (min-width: 700px) {
    .services-alta__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (min-width: 980px) {
    .services-alta__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media screen and (min-width: 1200px) {
    .services-alta__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media screen and (max-width: 900px) {
    .services-alta__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-alta__description {
        max-width: 100%;
    }
}

@media screen and (max-width: 669px) {
    .services-alta {
        padding: 60px 0 100px;
    }

    .services-alta__background-text {
        bottom: -10px;
        font-size: clamp(64px, 18vw, 140px);
        padding-bottom: 0;
        left: 1rem;
    }

    .services-alta__eyebrow {
        letter-spacing: 0.2em;
    }

    .services-alta__card {
        min-height: 240px;
        --services-card-pad: 14px;
        padding-bottom: 16px;
    }

    .services-alta__card-list {
        opacity: 1;
        transform: none;
        font-size: 12px;
        max-height: none;
        pointer-events: auto;
    }

    .services-alta__card-title {
        font-size: 15px;
        letter-spacing: 0.18em;
    }

    .services-alta__card-body {
        gap: 8px;
    }

    .services-alta__card-number {
        font-size: 24px;
    }
    .services-alta__card-arrow {
        margin-top: -5px;
        margin-right: -5px;
    }
    .services-alta__card-arrow svg {
        width: 30px;
        height: 30px;
    }
    .services-alta__card-arrow svg circle {
        width: 30px;
        height: 30px;
    }
    .services-alta__corner--top-left {
        top: 205px;
        left: -30px;
    }
    
    .services-alta__corner--bottom-right {
        right: -10px;
        bottom: 128px;
    }
}

@media (min-width: 670px) and (max-width: 900px) {

    .services-alta__background-text {
        bottom: -6rem;
        left: 2rem;
    }
    .services-alta__corner--top-left {
        top: 198px;
        left: -35px;
    }
    .services-alta__corner--bottom-right {
        right: 15px;
        bottom: 78px;
    }

}

/* ============================================
   CLIENTES - Sección Home
   ============================================ */

.clients-alta .swiper-horizontal>.swiper-pagination-bullets, 
.clients-alta .swiper-pagination-bullets.swiper-pagination-horizontal, 
.clients-alta .swiper-pagination-custom, 
.clients-alta .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom,5px) !important;
}

.clients-alta {
    background-color: var(--blanco-principal);
    color: var(--negro-principal);
    position: relative;
    padding: 70px 20px 40px 20px;
    overflow: hidden;
}

.clients-alta .swiper {
    padding-left: 5rem;
    padding-right: 5rem;
}

.clients-alta .swiper-wrapper {
    padding-bottom: 3rem;
    gap: 10px;
}

.clients-alta__container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.clients-alta__corner {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    animation: servicesCornerPulse 2s ease-in-out infinite;
}

.clients-alta__corner--top-left {
    top: 0;
    left: 10px;
}

.clients-alta__corner svg {
    display: block;
    width: clamp(50px, 10vw, 100px);
    height: auto;
}

.clients-alta__header {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 24px;
    overflow: hidden;
}

.clients-alta__intro {
    max-width: 360px;
}

.clients-alta__title {
    margin: 0 0 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.clients-alta__description {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.clients-alta__background-text {
    flex: 1;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(120px, 11vw, 280px);
    line-height: 214.5px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--negro-principal);
    line-height: 0.9;
    letter-spacing: 0.02em;
    text-align: right;
    white-space: nowrap;
    pointer-events: none;
    transform: translate(68px, 38px);
    max-width: 92%;
}

.clients-alta__carousel {
    position: relative;
    padding: 28px 10px 0 0;
}

.clients-alta__swiper {
    width: 100%;
}

.clients-alta__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
}

.clients-alta__slide img {
    max-height: 44px;
    width: auto;
    max-width: 140px;
    display: block;
    object-fit: contain;
}

.clients-alta__navigation {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.clients-alta__nav-button {
    position: absolute;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 52px;
    height: 29px;
    pointer-events: all;
    transition: opacity 0.3s ease;
}

.clients-alta__nav-button:hover {
    opacity: 0.7;
}

.clients-alta__nav-button--prev {
    left: 0;
}

.clients-alta__nav-button--next {
    right: 0;
}

.clients-alta__nav-button svg {
    width: 100%;
    height: 100%;
    display: block;
}

.clients-alta__pagination {
    position: static;
    margin-top: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.clients-alta__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 2px solid var(--negro-principal);
    opacity: 0.6;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.clients-alta__pagination .swiper-pagination-bullet-active {
    width: 28px;
    height: 10px;
    background: var(--negro-principal);
    border: 2px solid var(--negro-principal);
    opacity: 1;
    border-radius: 999px;
}

@media screen and (max-width: 1024px) {
    .clients-alta__navigation {
        display: none;
    }
}

@media screen and (max-width: 669px) {
    .clients-alta {
        padding: 60px 0 40px;
    }
    .clients-alta .swiper-wrapper {
        gap: 20px;
    }

    .clients-alta__header {
        flex-direction: column;
        gap: 18px;
    }

    .clients-alta__background-text {
        order: 2;
        text-align: left;
        transform: translate(14px, 12px);
        max-width: 88%;
    }

    .clients-alta__carousel {
        padding: 8px 0 0;
    }

    .clients-alta__slide img {
        max-height: 36px;
        max-width: 120px;
    }
    .clients-alta .swiper {
        padding-left: 0; 
        padding-right: 0;
    }
}

