/* Hero Section con Imagen de Fondo */
.hero-section-heroimg {
    position: relative;
    width: 100vw;
    min-height: 48vw;
    max-height: 480px;
    background-image: url('https://xnkegjuvorloyuryvevj.supabase.co/storage/v1/object/public/imagenes-publicas/1967Desarrollo/fo.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    box-shadow: 0 6px 32px 0 #01abff18;
    overflow: hidden;
}
.hero-section-heroimg .hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 3vw 2vw 3vw 2vw;
    background: rgba(1, 171, 255, 0.38);
    backdrop-filter: blur(2px);
    box-shadow: 0 2px 16px 0 #01abff13;
}
.hero-section-heroimg h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 0 0 0.7rem 0;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 18px #0186c7cc;
}
.hero-section-heroimg p {
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0 auto;
    max-width: 600px;
    text-shadow: 0 2px 18px #0186c799;
}
.hero-section-heroimg .hero-sub {
    display: block;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #fff;
    margin-top: 0.2em;
    text-shadow: 0 2px 18px #0186c7cc;
}
@media (max-width: 700px) {
    .hero-section-heroimg .hero-sub {
        font-size: 1.3rem;
    }
}
@media (max-width: 700px) {
    .hero-section-heroimg {
        min-height: 48vw;
        max-height: 330px;
    }
    .hero-section-heroimg h1 {
        font-size: 2.1rem;
    }
    .hero-section-heroimg p {
        font-size: 1.1rem;
    }
}

/* Paleta principal */
:root {
    --primary: #01abff;
    --primary-dark: #0186c7;
    --background: #f7fafd;
    --text: #222;
    --white: #fff;
}

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: linear-gradient(to bottom, #fff 0%, #f7fbfe 60%, #e6f6ff 100%);
    color: var(--text);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: rgba(255,255,255,0.85);
    color: var(--primary);
    box-shadow: 0 2px 16px 0 #01abff13;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(7px);
    border-bottom: 1.5px solid #e6f6ff;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.18rem 0 0.18rem 0;
    gap: 0.3rem;
    min-height: 48px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.logo {
    height: 35px;
    width: auto;
    margin-right: 0.5rem;
    background: transparent;
    border-radius: 7px;
    box-shadow: none;
    transition: filter 0.18s;
}
.company-name {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-right: 0.8rem;
    vertical-align: middle;
    white-space: nowrap;
    font-family: 'Montserrat', Arial, sans-serif;
}
nav {
    position: relative;
}
.nav-links {
    display: flex;
    gap: 0.12rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease, background-color 0.25s ease;
    padding: 0.2em 0.35em;
    border-radius: 3px;
    font-size: 0.85rem;
    position: relative;
    letter-spacing: 0;
}
.nav-links a::after {
    content: '';
    display: block;
    height: 1.5px;
    width: 100%;
    background: linear-gradient(90deg, #01abff 0%, #0186c7 100%);
    position: absolute;
    left: 0;
    bottom: -1px;
    opacity: 0;
    transform: translateY(2px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    border-radius: 1px;
}
.nav-links a:hover::after {
    opacity: 1;
    transform: translateY(0);
}
.nav-links a:hover {
    color: var(--primary-dark);
    background-color: rgba(255, 255, 255, 0.7);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }
    .nav-links {
        flex-direction: column;
        gap: 0.3rem;
        background: var(--white);
        position: absolute;
        top: 48px;
        right: 0;
        width: 180px;
        padding: 0.8rem;
        border-radius: 0 0 8px 8px;
        display: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        color: var(--primary);
        font-size: 0.9rem;
        padding: 0.3em 0.5em;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .nav-toggle {
        display: block;
        color: var(--primary);
        font-size: 1.6rem;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 2.7rem 0 1.5rem 0;
    border-radius: 0 0 24px 24px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 16px rgba(1,171,255,0.09);
    background: linear-gradient(120deg, #021c34 0%, #0186c7 60%, #01abff 100%);
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    opacity: 0.25;
    background-image:
        repeating-linear-gradient(120deg, #fff2 0 2px, transparent 2px 40px),
        repeating-linear-gradient(60deg, #fff1 0 1.5px, transparent 1.5px 36px),
        radial-gradient(circle at 80% 20%, #fff3 0 2px, transparent 2px 100%),
        radial-gradient(circle at 20% 80%, #fff2 0 1.5px, transparent 1.5px 100%);
    pointer-events: none;
    animation: hero-bg-move 18s linear infinite alternate;
}
@keyframes hero-bg-move {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 60px 60px, -40px -40px, 40px 80px, -30px 60px; }
}
.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 260px;
}
@media (max-width: 900px) {
    .hero-grid {
        flex-direction: column;
        gap: 1.7rem;
        padding: 0 1rem;
        min-height: 0;
    }
    .hero-text {
        text-align: center;
        align-items: center;
        padding-left: 0;
    }
    .hero-image-wrap {
        justify-content: center;
    }
    .hero-image-blur {
        max-width: 195px;
        margin: 0 auto;
    }
}
.hero-text {
    text-align: left;
    align-items: flex-start;
    justify-content: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-left: 0;
}
.hero-text h1 {
    font-size: 2.7rem;
    margin-bottom: 1rem;
}
.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 0;
}
.hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.hero-image-blur {
    max-width: 234px;
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 8px 48px 0 #01abff33;
    filter: blur(0px) drop-shadow(0 0 24px #01abff55);
    background: linear-gradient(135deg, #01abff 20%, #fff 100%);
    transition: filter 0.3s;
}
.hero-image-blur:hover {
    filter: blur(1.5px) drop-shadow(0 0 32px #01abff77);
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.7rem;
        padding: 0 1rem;
    }
    .hero-text {
        text-align: center;
        padding-left: 0;
    }
    .hero-image-wrap {
        justify-content: center;
    }
    .hero-image-blur {
        max-width: 150px;
        margin: 0 auto;
    }
}
.hero-section h1 {
    font-size: 2.7rem;
    margin-bottom: 1rem;
}
.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 0;
}
section {
    padding: 2.3rem 0 1.2rem 0;
    scroll-margin-top: 80px;
}

section h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem 2.5rem;
    justify-items: center;
    align-items: center;
    margin-top: 1.6rem;
    margin-bottom: 1.2rem;
}
.partner-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(1,171,255,0.10), 0 1.5px 8px rgba(0,0,0,0.03);
    padding: 1.1rem 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    min-height: 90px;
    transition: box-shadow 0.25s cubic-bezier(.4,2,.6,1), transform 0.22s cubic-bezier(.4,2,.6,1);
    cursor: pointer;
    position: relative;
}
.partner-card:hover {
    box-shadow: 0 8px 32px rgba(1,171,255,0.20), 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-7px) scale(1.045);
    z-index: 1;
}
.partner-card img {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
    background: transparent;
    border-radius: 6px;
    box-shadow: none;
    padding: 0;
    margin: 0;
    transition: filter 0.18s;
}
    .partners-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.2rem 2.5rem;
        justify-items: center;
        align-items: center;
        margin-top: 1.6rem;
        margin-bottom: 1.2rem;
    }
    .partner-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(1,171,255,0.10), 0 1.5px 8px rgba(0,0,0,0.03);
        padding: 1.1rem 2.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 140px;
        min-height: 90px;
        transition: box-shadow 0.25s cubic-bezier(.4,2,.6,1), transform 0.22s cubic-bezier(.4,2,.6,1);
        cursor: pointer;
        position: relative;
    }
    .partner-card:hover {
        box-shadow: 0 8px 32px rgba(1,171,255,0.20), 0 4px 20px rgba(0,0,0,0.08);
        transform: translateY(-7px) scale(1.045);
        z-index: 1;
    }
    .partner-card img {
        max-height: 60px;
        max-width: 140px;
        object-fit: contain;
        background: transparent;
        border-radius: 6px;
        box-shadow: none;
        padding: 0;
        margin: 0;
        transition: filter 0.18s;
    }
    .partner-card:hover img {
        filter: brightness(1.12) drop-shadow(0 2px 6px #01abff33);
    }

    @media (max-width: 700px) {
        .partners-logos {
            grid-template-columns: 1fr;
            gap: 1.2rem 0.5rem;
            justify-items: center;
            align-items: center;
        }
        .partner-card,
        .client-card {
            width: 80% !important;
            max-width: 280px !important;
            margin-left: auto !important;
            margin-right: auto !important;
            padding-left: 1rem !important;
            padding-right: 1rem !important;
            min-width: 0 !important;
        }
        .partners-list,
        .clients-list {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
        .partner-card {
            min-width: 90px;
            min-height: 50px;
            padding: 0.8rem 1.2rem;
        }
        .partner-card img {
            max-width: 100px;
            max-height: 40px;
        }
    }

.contact-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 32px #0186c71a, 0 2px 8px #01abff0c;
    padding: 2.2rem 2.1rem 1.7rem 2.1rem;
    max-width: 500px;
    width: 100%;
    margin: 2.2rem auto 0 auto;
    border: 1.5px solid #e6f6ff;
    transition: box-shadow 0.2s;
}
.contact-card:hover {
    box-shadow: 0 10px 38px #01abff22, 0 4px 12px #0186c722;
}

.contact-form {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form button,
.btn-enviar {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.contact-form input,
.contact-form textarea {
    padding: 0.82em 1em;
    border: 1.5px solid #e4eaf1;
    border-radius: 10px;
    background: #f7fafd;
    color: #222;
    font-size: 1.07rem;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
    box-shadow: 0 1px 2px #0186c70a;
    resize: none;
}
.campo-invalido {
    border: 2px solid #ff4d4d !important;
    background: #ffeaea !important;
    outline: none !important;
}
.mensaje-exito {
    background: #e7fbee;
    color: #198754;
    border: 1.5px solid #b7f3c6;
    border-radius: 6px;
    padding: 1em 1.2em;
    margin-top: 1.3em;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 2px 10px #19875411;
    display: none;
}
.contact-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.9em;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}
.contact-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 32px #0186c71a, 0 2px 8px #01abff0c;
    padding: 2.2rem 2.1rem 1.7rem 2.1rem;
    max-width: 500px;
    width: 100%;
    margin: 2.2rem auto 0 auto;
    border: 1.5px solid #e6f6ff;
    transition: box-shadow 0.2s;
}
.contact-card:hover {
    box-shadow: 0 10px 38px #01abff22, 0 4px 12px #0186c722;
}
.input-group {
    width: 100%;
    margin: 0 0 1.1rem 0;
    padding: 0;
    box-sizing: border-box;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.82em 1em;
    border: 1.5px solid #e4eaf1;
    border-radius: 10px;
    background: #f7fafd;
    color: #222;
    font-size: 1.07rem;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
    box-shadow: 0 1px 2px #0186c70a;
    resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #01abff;
    box-shadow: 0 0 0 2px #01abff33;
    background: #fff;
}
.contact-form textarea {
    min-height: 110px;
    max-height: 300px;
}
.btn-enviar {
    width: 100%;
    background: linear-gradient(90deg, #01abff 0%, #0186c7 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 0.95em 0;
    font-size: 1.08rem;
    letter-spacing: 0.03em;
    margin-top: 0.3em;
    cursor: pointer;
    box-shadow: 0 2px 10px #01abff18;
    transition: background 0.2s, box-shadow 0.18s, transform 0.12s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}
.btn-enviar:hover {
    background: linear-gradient(90deg, #0186c7 0%, #01abff 100%);
    box-shadow: 0 4px 18px #0186c71a;
    transform: translateY(-2px) scale(1.02);
}
.send-icon {
    font-size: 1.2em;
    margin-left: 0.1em;
}
.contact-feedback {
    margin-bottom: 1em;
    padding: 0.7em 1em;
    border-radius: 8px;
    font-size: 1.01rem;
    font-weight: 500;
    display: none;
}
.contact-feedback.success {
    background: #e7fbe7;
    color: #1a7a1a;
    border: 1.5px solid #4be24b;
    display: block;
    animation: fadeIn 0.5s;
}
.contact-feedback.error {
    background: #fff2f2;
    color: #c13b3b;
    border: 1.5px solid #ff7575;
    display: block;
    animation: fadeIn 0.5s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (max-width: 700px) {
    .contact-card {
        padding: 1.2rem 0.6rem 1.1rem 0.6rem;
    }
}
.footer-empresarial {
    background: #021c34;
    color: #fff;
    padding: 2.1rem 0 1.1rem 0;
    font-size: 1rem;
    margin-top: 2.5rem;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 -2px 12px #01abff0c;
}
.footer-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2.5rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.footer-logo {
    height: 44px;
    width: auto;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px #01abff11;
}
.footer-company {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #01abff;
    display: block;
}
.footer-claim {
    font-size: 0.98rem;
    color: #a6e2ff;
    font-weight: 500;
    margin-top: 0.08em;
}
.footer-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
}
.footer-link {
    color: #b6e6ff;
    text-decoration: none;
    font-size: 0.98rem;
    transition: color 0.18s;
    font-weight: 500;
    opacity: 0.92;
}
.footer-link:hover {
    color: #fff;
    opacity: 1;
    text-decoration: underline;
}
.footer-copy {
    width: 100%;
    text-align: center;
    font-size: 0.97rem;
    color: #7b9db7;
    margin-top: 0.7em;
    letter-spacing: 0.01em;
}
@media (max-width: 700px) {
    .footer-container {
        flex-direction: column;
        gap: 1.2rem;
        align-items: flex-start;
    }
    .footer-brand {
        flex-direction: row;
        gap: 0.7rem;
    }
    .footer-links {
        gap: 0.7rem;
        justify-content: flex-start;
    }
    .footer-copy {
        margin-top: 1.1em;
    }
}

.clientes-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 2.2rem auto 1.2rem auto;
    box-sizing: border-box;
    justify-items: stretch;
    align-items: stretch;
}

.cliente-logo-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(1,171,255,0.10), 0 1.5px 8px rgba(0,0,0,0.03);
    padding: 1.1rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    min-height: 90px;
    width: 100%;
    max-width: 300px;
    height: 216px;
    box-sizing: border-box;
    transition: box-shadow 0.25s cubic-bezier(.4,2,.6,1), transform 0.22s cubic-bezier(.4,2,.6,1);
    cursor: pointer;
    position: relative;
}

.cliente-logo-card:hover {
    box-shadow: 0 8px 32px rgba(1,171,255,0.20), 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-7px) scale(1.045);
    z-index: 1;
}
.cliente-nombre {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin-bottom: 0.3em;
    margin-top: 0.1em;
    line-height: 1.1;
}
.cliente-detalle {
    font-size: 0.92rem;
    color: #01abffb8;
    font-weight: 400;
    display: block;
    margin-top: 0.1em;
}
.cliente-logo-card img {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
    background: transparent;
    border-radius: 6px;
    box-shadow: none;
    padding: 0;
    margin: 0;
    transition: filter 0.18s;
    display: block;
}
.cliente-logo-card:hover img {
    filter: brightness(1.12) drop-shadow(0 2px 6px #01abff33);
}
.cliente-logo-card:hover img {
    filter: grayscale(0) contrast(1.2) drop-shadow(0 2px 8px #01abff22);
}
@media (max-width: 900px) {
    .clientes-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.2rem;
    }
}
@media (max-width: 600px) {
    .clientes-logos-grid {
        grid-template-columns: 1fr;
        gap: 1.3rem;
        justify-items: center;
        align-items: center;
    }
    .cliente-logo-card {
        min-height: 90px;
        height: auto;
        padding: 0.8rem 1.2rem;
        width: 80%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    .cliente-logo-card img {
        max-width: 120px;
        max-height: 45px;
    }
}

/* Estilos para la página de política de privacidad */
.privacy-section {
    padding: 2.5rem 0 3rem 0;
}

.privacy-section h1 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: 2.2rem;
    text-align: center;
}

.privacy-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(1,171,255,0.10), 0 2px 8px rgba(0,0,0,0.03);
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    text-align: right;
    font-size: 0.9rem;
}

.privacy-block {
    margin-bottom: 2rem;
}

.privacy-block h2 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-block p, .privacy-block ul {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-block ul {
    padding-left: 1.5rem;
}

.privacy-block li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 1.5rem 1.2rem;
    }
    
    .privacy-section h1 {
        font-size: 1.8rem;
    }
    
    .privacy-block h2 {
        font-size: 1.3rem;
    }
}


.clientes-list li {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(1,171,255,0.10), 0 1.5px 8px rgba(0,0,0,0.03);
    padding: 1.3em 2em 1.3em 2.8em;
    font-size: 1.14rem;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    min-height: 90px;
    min-width: 0;
    height: 100%;
    font-family: 'Segoe UI', Arial, sans-serif;
    transition: box-shadow 0.22s, transform 0.18s;
}

.clientes-list li::before {
    content: '\f007';
    font-family: 'Font Awesome 5 Free', 'Segoe UI Symbol', Arial, sans-serif;
    font-weight: 900;
    position: absolute;
    left: 1.1em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6em;
    color: #01abff44;
    opacity: 0.7;
    pointer-events: none;
}
.clientes-list li:hover {
    box-shadow: 0 10px 32px rgba(1,171,255,0.14);
    transform: translateY(-5px) scale(1.03);
}
.clientes-list li:hover {
    box-shadow: 0 6px 24px rgba(1,171,255,0.13);
    transform: translateY(-4px) scale(1.025);
}
.cliente-pais {
    color: var(--primary);
    font-size: 0.98em;
    margin-left: 0.5em;
    font-weight: 500;
}
@media (max-width: 700px) {
    .clientes-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 98vw;
    }
    .clientes-list li {
        font-size: 1rem;
        padding: 1em 1.5em 1em 2.2em;
    }
}
