/**
 * Page Quienes Somos - AGROSOIL
 * Estilos para la página Quiénes Somos
 *
 * @package Agrosoil
 * @since 1.0.0
 */

/* ===== QUIÉNES SOMOS - PRO ANIMATIONS ===== */

/* === RESET TEMA PADRE === */
#featured-title { display: none !important; }
#main-content { padding: 0 !important; margin: 0 !important; }

/* === VARIABLES GLOBALES === */
:root {
    --qs-primary: var(--color-secondary, #39a6de);
    --qs-primary-dark: var(--color-secondary-dark, #2d8fc2);
    --qs-primary-light: var(--color-secondary-light, #5eb8e6);
    --qs-accent: var(--color-secondary-light, #5eb8e6);
    --qs-dark: var(--color-dark, #242e33);
    --qs-light: var(--color-bg-gray, #f6f7f0);
    --qs-bg-main: var(--color-bg-gray, #f6f7f0);
    --qs-text-color: var(--color-text-secondary, #555555);
    --qs-title-color: var(--color-text-primary, #1a1a2e);
    --qs-white: var(--color-bg-white, #ffffff);
    /* Azul theme */
    --qs-green: var(--color-secondary, #39a6de);
    --qs-green-dark: var(--color-secondary-dark, #2d8fc2);
    --qs-green-light: var(--color-secondary-light, #5eb8e6);
    --qs-green-accent: var(--color-secondary-light, #5eb8e6);
}

/* === FONT GLOBAL === */
body.page-template-quienes-somos,
body.page-template-quienes-somos * {
    font-family: var(--font-primary, 'Poppins', sans-serif);
}

/* Hero Section - Immersive */
.qs-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
    overflow: hidden;
}

/* No ::before gradient — black bg lets aurora blobs shine */

/* Aurora blobs */
.qs-aurora {
    position: absolute;
    inset: -40%;
    width: 180%;
    height: 180%;
    z-index: 1;
    filter: blur(80px);
    opacity: 0.6;
    will-change: transform;
}

.qs-aurora-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
}

.qs-ab-1 {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    top: 10%;
    left: 15%;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    color: rgba(0, 200, 255, 0.8);
    animation: auroraFloat1 20s ease-in-out infinite, auroraColor1 12s ease-in-out infinite;
}

.qs-ab-2 {
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    top: 30%;
    right: 10%;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    color: rgba(180, 80, 255, 0.7);
    animation: auroraFloat2 25s ease-in-out infinite, auroraColor2 15s ease-in-out infinite;
}

.qs-ab-3 {
    width: 35vw;
    height: 35vw;
    max-width: 450px;
    max-height: 450px;
    bottom: 10%;
    left: 30%;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    color: rgba(255, 80, 180, 0.6);
    animation: auroraFloat3 22s ease-in-out infinite, auroraColor3 18s ease-in-out infinite;
}

.qs-ab-4 {
    width: 30vw;
    height: 30vw;
    max-width: 400px;
    max-height: 400px;
    top: 5%;
    right: 30%;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    color: rgba(0, 255, 200, 0.5);
    animation: auroraFloat4 18s ease-in-out infinite, auroraColor4 10s ease-in-out infinite;
}

.qs-ab-5 {
    width: 45vw;
    height: 45vw;
    max-width: 550px;
    max-height: 550px;
    bottom: 20%;
    right: 15%;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    color: rgba(100, 120, 255, 0.5);
    animation: auroraFloat5 28s ease-in-out infinite, auroraColor5 20s ease-in-out infinite;
}

/* Mouse-following light spot */
.qs-aurora-light {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    color: rgba(200, 180, 255, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: auroraColorLight 8s ease-in-out infinite;
}

/* Color shift animations — AI palette: cyan, purple, pink, green, blue */
@keyframes auroraColor1 {
    0%, 100% { color: rgba(0, 200, 255, 0.8); }
    33% { color: rgba(160, 100, 255, 0.8); }
    66% { color: rgba(0, 255, 200, 0.7); }
}

@keyframes auroraColor2 {
    0%, 100% { color: rgba(180, 80, 255, 0.7); }
    33% { color: rgba(255, 80, 180, 0.7); }
    66% { color: rgba(0, 200, 255, 0.7); }
}

@keyframes auroraColor3 {
    0%, 100% { color: rgba(255, 80, 180, 0.6); }
    33% { color: rgba(0, 200, 255, 0.6); }
    66% { color: rgba(140, 80, 255, 0.6); }
}

@keyframes auroraColor4 {
    0%, 100% { color: rgba(0, 255, 200, 0.5); }
    33% { color: rgba(255, 100, 150, 0.5); }
    66% { color: rgba(80, 100, 255, 0.5); }
}

@keyframes auroraColor5 {
    0%, 100% { color: rgba(100, 120, 255, 0.5); }
    33% { color: rgba(0, 230, 180, 0.5); }
    66% { color: rgba(200, 80, 255, 0.5); }
}

@keyframes auroraColorLight {
    0%, 100% { color: rgba(200, 180, 255, 0.5); }
    25% { color: rgba(0, 230, 255, 0.5); }
    50% { color: rgba(255, 100, 200, 0.5); }
    75% { color: rgba(100, 255, 200, 0.5); }
}

@keyframes auroraFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(8%, -12%) scale(1.1); }
    50% { transform: translate(-5%, 8%) scale(0.95); }
    75% { transform: translate(12%, 5%) scale(1.05); }
}

@keyframes auroraFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-10%, 8%) scale(1.08); }
    50% { transform: translate(6%, -10%) scale(0.92); }
    75% { transform: translate(-8%, -5%) scale(1.12); }
}

@keyframes auroraFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10%, -8%) scale(1.1); }
    66% { transform: translate(-12%, 6%) scale(0.9); }
}

@keyframes auroraFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    30% { transform: translate(-6%, 10%) scale(1.15); }
    60% { transform: translate(8%, -6%) scale(0.88); }
}

@keyframes auroraFloat5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    20% { transform: translate(6%, 8%) scale(1.05); }
    50% { transform: translate(-10%, -6%) scale(1.12); }
    80% { transform: translate(4%, -8%) scale(0.95); }
}

.qs-hero-content {
    text-align: center;
    z-index: 2;
    padding: 40px;
    max-width: 1000px;
}

@media (max-width: 768px) {
    .qs-hero-content {
        padding: 20px 15px;
    }
    .qs-years-badge {
        padding: 18px 28px;
        gap: 14px;
    }
    .qs-years-badge .number {
        font-size: 2.8rem;
    }
    .qs-years-badge .text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .qs-years-badge {
        padding: 14px 22px;
        gap: 12px;
    }
    .qs-years-badge .number {
        font-size: 2.2rem;
    }
    .qs-years-badge .text {
        font-size: 0.85rem;
    }
}

/* Text reveal animation */
.qs-hero h1 {
    font-size: clamp(36px, 8vw, var(--font-size-h1, 48px));
    color: var(--qs-white) !important;
    margin-bottom: 25px;
    font-weight: var(--font-weight-extrabold, 800);
    line-height: 1.1;
    opacity: 0;
    transform: translateY(50px);
    animation: heroTextReveal 1s ease-out 0.3s forwards;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.qs-hero h1 .highlight {
    background: linear-gradient(135deg, var(--qs-accent), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes heroTextReveal {
    to { opacity: 1; transform: translateY(0); }
}

.qs-hero .tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #fff !important;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: heroTextReveal 1s ease-out 0.6s forwards;
    letter-spacing: 0.5px;
}

.qs-years-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 25px 50px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.2);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: badgeReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
@media (hover: hover) {
    .qs-years-badge {
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .qs-years-badge:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 35px 60px rgba(0,0,0,0.3);
    }
}

@keyframes badgeReveal {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.qs-years-badge .number {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    background: linear-gradient(135deg, #fff, var(--qs-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qs-years-badge .text {
    font-size: 1.1rem;
    color: #fff !important;
    text-align: left;
    line-height: 1.4;
}

/* Scroll indicator */
.qs-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: qsBounce 2s infinite;
    z-index: 10;
}

.qs-scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: rgba(255,255,255,0.5);
}

@keyframes qsBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== BADGE ESTILO HOME ===== */
.qs-badge {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 77, 110, 0.12);
    color: #1a4d6e;
    padding: 8px 20px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 20px;
}
.qs-badge svg {
    width: 18px;
    height: 18px;
}

/* ===== GALERÍA EDITORIAL — Composición overlapping ===== */
.qs-gallery {
    padding: 100px 5%;
    background: #f6f7f0;
    overflow-x: hidden;
}

.qs-gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Stack de imágenes — composición editorial */
.qs-gallery-stack {
    position: relative;
    min-height: 520px;
}

/* Frame base */
.qs-gallery-frame {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transition: transform 0.6s cubic-bezier(.16,1,.3,1), box-shadow 0.6s ease;
}

.qs-gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Main image — larger, tilted left */
.qs-gallery-main {
    width: 72%;
    height: 440px;
    top: 0;
    left: 0;
    transform: rotate(-2deg);
    z-index: 2;
    border: 4px solid #fff;
}

.qs-gallery-main:hover {
    transform: rotate(-2deg) translateY(-8px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* Accent image — smaller, tilted right, separated */
.qs-gallery-accent-img {
    width: 55%;
    height: 340px;
    bottom: -30px;
    right: -25px;
    transform: rotate(3deg);
    z-index: 3;
    border: 4px solid #fff;
}

.qs-gallery-accent-img:hover {
    transform: rotate(3deg) translateY(-8px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* Floating label on each image */
.qs-gallery-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #1a1d28;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.qs-gallery-label svg {
    color: var(--qs-primary, #39a6de);
}

/* Soft glow behind the stack */
.qs-gallery-stack::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 75%;
    background: radial-gradient(ellipse, rgba(57,166,222,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Decorative dots pattern — top-right */
.qs-gallery-dots {
    position: absolute;
    top: -20px;
    right: 25%;
    width: 100px;
    height: 100px;
    z-index: 1;
    opacity: 0.35;
    background-image: radial-gradient(circle, var(--qs-primary, #39a6de) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    animation: qsDotsFloat 6s ease-in-out infinite;
}

/* Second dots — bottom-left */
.qs-gallery-dots-bl {
    top: auto !important;
    right: auto !important;
    bottom: -10px;
    left: -15px;
    width: 70px !important;
    height: 70px !important;
    opacity: 0.22 !important;
    animation-delay: -3s !important;
}

@keyframes qsDotsFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Decorative ring — large */
.qs-gallery-ring {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(57,166,222,0.15);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: qsRingSpin 20s linear infinite;
}

/* Small ring — bottom area */
.qs-gallery-ring-sm {
    top: auto !important;
    right: auto !important;
    bottom: 20px;
    left: 20%;
    width: 60px !important;
    height: 60px !important;
    border-style: dashed !important;
    border-color: rgba(57,166,222,0.18) !important;
    animation-direction: reverse !important;
    animation-duration: 15s !important;
}

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

/* Decorative cross / plus */
.qs-gallery-cross {
    position: absolute;
    top: 40%;
    right: -10px;
    width: 20px;
    height: 20px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.25;
    animation: qsCrossPulse 4s ease-in-out infinite;
}

.qs-gallery-cross::before,
.qs-gallery-cross::after {
    content: '';
    position: absolute;
    background: var(--qs-primary, #39a6de);
    border-radius: 2px;
}

.qs-gallery-cross::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.qs-gallery-cross::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

@keyframes qsCrossPulse {
    0%, 100% { opacity: 0.25; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(1.3); }
}

/* Text side */
.qs-gallery-text {
    padding: 20px 0;
}

.qs-gallery-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(57,166,222,0.08);
    border: 1px solid rgba(57,166,222,0.15);
    border-radius: 100px;
    color: var(--qs-primary, #39a6de);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.qs-gallery-text h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--qs-title-color, #1a1a2e);
    line-height: 1.1;
    margin-bottom: 20px;
}

.qs-gallery-text h2 span {
    color: var(--qs-primary, #39a6de);
}

.qs-gallery-text > p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--qs-text-color, #555);
    line-height: 1.7;
}

/* Gallery responsive */
@media (max-width: 1024px) {
    .qs-gallery-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .qs-gallery-stack {
        min-height: 420px;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    .qs-gallery-text {
        text-align: center;
    }
    .qs-gallery-tag {
        margin-left: auto;
        margin-right: auto;
    }
    /* Decorations: pull inward so they don't overflow */
    .qs-gallery-ring {
        right: 0;
        top: -20px;
        width: 90px;
        height: 90px;
    }
    .qs-gallery-cross {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .qs-gallery {
        padding: 70px 5%;
    }
    .qs-gallery-stack {
        min-height: 360px;
    }
    .qs-gallery-main {
        height: 340px;
        width: 68%;
    }
    .qs-gallery-accent-img {
        height: 280px;
        width: 55%;
        right: 0;
    }
    /* Reduce decorations */
    .qs-gallery-ring {
        width: 70px;
        height: 70px;
        top: -15px;
    }
    .qs-gallery-ring-sm {
        width: 45px !important;
        height: 45px !important;
    }
    .qs-gallery-dots {
        width: 70px;
        height: 70px;
    }
    .qs-gallery-dots-bl {
        width: 50px !important;
        height: 50px !important;
    }
    .qs-gallery-cross {
        display: none;
    }
}

@media (max-width: 480px) {
    .qs-gallery-stack {
        min-height: 300px;
    }
    .qs-gallery-main {
        height: 280px;
        width: 72%;
        transform: rotate(-1deg);
    }
    .qs-gallery-accent-img {
        height: 220px;
        width: 55%;
        transform: rotate(2deg);
    }
    .qs-gallery-dots,
    .qs-gallery-ring,
    .qs-gallery-ring-sm,
    .qs-gallery-cross { display: none; }
}

/* ===== DARK IMMERSIVE INTRO ===== */
.qs-intro-dark {
    padding: 100px 5% 80px;
    background: linear-gradient(160deg, #071e2c 0%, #0f3348 40%, #0a2a3a 70%, #061a26 100%);
    position: relative;
    overflow-x: hidden;
}
.qs-intro-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(94, 184, 230, 0.07) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.qs-intro-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 20% 30%, rgba(57, 166, 222, 0.12), transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 70%, rgba(94, 184, 230, 0.08), transparent 50%);
    pointer-events: none;
}
.qs-intro-dark-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.qs-deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(94, 184, 230, 0.08);
}
.qs-deco-ring-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
    animation: decoSpin 40s linear infinite;
}
.qs-deco-ring-2 {
    width: 250px;
    height: 250px;
    bottom: 50px;
    left: -60px;
    border-style: dashed;
    animation: decoSpin 30s linear infinite reverse;
}
@keyframes decoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.qs-deco-molecule {
    position: absolute;
    top: 25%;
    right: 8%;
    width: 120px;
    height: 120px;
}
.qs-deco-molecule span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(94, 184, 230, 0.15);
    border-radius: 50%;
    animation: moleculeFloat 6s ease-in-out infinite;
}
.qs-deco-molecule span:nth-child(1) { top: 0; left: 50%; }
.qs-deco-molecule span:nth-child(2) { top: 35%; left: 95%; animation-delay: 0.5s; width: 6px; height: 6px; }
.qs-deco-molecule span:nth-child(3) { top: 80%; left: 80%; animation-delay: 1s; }
.qs-deco-molecule span:nth-child(4) { top: 80%; left: 20%; animation-delay: 1.5s; width: 6px; height: 6px; }
.qs-deco-molecule span:nth-child(5) { top: 35%; left: 5%; animation-delay: 2s; }
@keyframes moleculeFloat {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-8px); opacity: 1; }
}
.qs-intro-dark-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.qs-intro-dark-header {
    text-align: center;
    margin-bottom: 70px;
}
.qs-badge-dark {
    background: rgba(94, 184, 230, 0.1) !important;
    border: 1px solid rgba(94, 184, 230, 0.2) !important;
    color: #5eb8e6 !important;
}
.qs-badge-dark svg { stroke: #5eb8e6; }
.qs-intro-dark-header h2 {
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 28px;
    letter-spacing: -1px;
}
.qs-intro-dark-header h2 .highlight { color: #5eb8e6; }
.qs-intro-dark-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}
/* Pillars — glassmorphism cards */
.qs-intro-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 12px;
}
.qs-intro-pillar {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: default;
    display: flex;
    flex-direction: column;
}

/* Glass inner card */
.qs-pillar-inner {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 24px 32px;
    text-align: center;
    flex: 1;
}
@media (hover: hover) {
    .qs-pillar-inner {
        transition: background 0.5s ease, border-color 0.5s ease, transform 0.4s ease;
    }
    .qs-intro-pillar:hover .qs-pillar-inner {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-6px);
    }
}

/* Icon circle */
.qs-pillar-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.qs-pillar-icon-wrap svg {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.4s ease;
}
@media (hover: hover) {
    .qs-intro-pillar:nth-child(1):hover .qs-pillar-icon-wrap {
        background: rgba(0, 212, 255, 0.15);
        box-shadow: 0 0 24px rgba(0, 212, 255, 0.2);
    }
    .qs-intro-pillar:nth-child(1):hover .qs-pillar-icon-wrap svg { color: #00d4ff; }
    .qs-intro-pillar:nth-child(2):hover .qs-pillar-icon-wrap {
        background: rgba(180, 77, 255, 0.15);
        box-shadow: 0 0 24px rgba(180, 77, 255, 0.2);
    }
    .qs-intro-pillar:nth-child(2):hover .qs-pillar-icon-wrap svg { color: #b44dff; }
    .qs-intro-pillar:nth-child(3):hover .qs-pillar-icon-wrap {
        background: rgba(255, 77, 166, 0.15);
        box-shadow: 0 0 24px rgba(255, 77, 166, 0.2);
    }
    .qs-intro-pillar:nth-child(3):hover .qs-pillar-icon-wrap svg { color: #ff4da6; }
    .qs-intro-pillar:nth-child(4):hover .qs-pillar-icon-wrap {
        background: rgba(0, 230, 176, 0.15);
        box-shadow: 0 0 24px rgba(0, 230, 176, 0.2);
    }
    .qs-intro-pillar:nth-child(4):hover .qs-pillar-icon-wrap svg { color: #00e6b0; }
    .qs-intro-pillar:hover .qs-pillar-icon-wrap {
        transform: scale(1.1);
    }
}

/* Text */
.qs-pillar-inner h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.qs-pillar-inner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ===== STORY + VALUES SECTION ===== */
.qs-story-section {
    padding: 90px 5%;
    background: var(--qs-bg-main);
}
.qs-story-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}
.qs-intro-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--qs-primary);
    margin-bottom: 18px;
}
.qs-intro-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--qs-primary);
    display: inline-block;
    animation: tagPulse 2s ease-in-out infinite;
}
@keyframes tagPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}
.qs-story-narrative h3 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: var(--qs-title-color);
    margin-bottom: 32px;
    line-height: 1.2;
}
.qs-story-columns {
    column-count: 2;
    column-gap: 40px;
    margin-bottom: 28px;
}
.qs-story-columns p {
    color: var(--qs-text-color);
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 16px;
    break-inside: avoid;
}
.qs-story-emphasis {
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(57, 166, 222, 0.06), rgba(94, 184, 230, 0.03));
    border-left: 4px solid var(--qs-primary);
    border-radius: 0 16px 16px 0;
    font-weight: 500;
    font-size: 18px;
    color: var(--qs-title-color);
    line-height: 1.7;
}
.qs-intro-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.qs-values-dots { display: none; }
.qs-intro-value {
    background: #fff;
    padding: 28px 24px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(26, 77, 110, 0.06);
    position: relative;
    overflow: hidden;
}
.qs-intro-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--qs-primary), var(--qs-primary-light));
    opacity: 0;
}
@media (hover: hover) {
    .qs-intro-value {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .qs-intro-value::before {
        transition: opacity 0.3s ease;
    }
    .qs-intro-value:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(26, 77, 110, 0.14);
    }
    .qs-intro-value:hover::before { opacity: 1; }
}
.qs-intro-value-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1a4d6e, #2a6a8a);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(26, 77, 110, 0.25);
}
.qs-intro-value:nth-child(2) .qs-intro-value-icon { background: linear-gradient(135deg, #0d7377, #14a3a8); }
.qs-intro-value:nth-child(3) .qs-intro-value-icon { background: linear-gradient(135deg, #1a2744, #2d4a7a); }
.qs-intro-value:nth-child(4) .qs-intro-value-icon { background: linear-gradient(135deg, #2d6e1a, #4a9e2f); }
@media (hover: hover) {
    .qs-intro-value-icon { transition: transform 0.4s ease; }
    .qs-intro-value:hover .qs-intro-value-icon { transform: scale(1.08); }
}
.qs-intro-value-icon svg { width: 26px; height: 26px; color: #fff; }
.qs-intro-value h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--qs-title-color);
    margin-bottom: 6px;
}
.qs-intro-value p {
    font-size: 18px;
    color: var(--qs-text-color);
    line-height: 1.6;
}

/* ===== INTRO + STORY RESPONSIVE ===== */
@media (max-width: 900px) {
    .qs-intro-dark { padding: 70px 5% 60px; }
    .qs-intro-dark-header h2 { letter-spacing: 0; }
    .qs-intro-dark-lead { font-size: 17px; }
    .qs-intro-pillars { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .qs-deco-ring-1 { width: 250px; height: 250px; }
    .qs-deco-molecule { display: none; }
    .qs-story-section { padding: 60px 5%; }
    .qs-story-inner { grid-template-columns: 1fr; gap: 50px; }
    .qs-story-columns { column-count: 1; }
}
@media (max-width: 600px) {
    .qs-intro-dark { padding: 60px 4% 50px; }
    .qs-intro-dark-header { margin-bottom: 50px; }
    .qs-intro-pillars { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .qs-pillar-inner { padding: 28px 16px 24px; }
    .qs-pillar-inner h4 { font-size: 16px; }
    .qs-pillar-inner p { font-size: 13px; }
    .qs-pillar-icon-wrap { width: 48px; height: 48px; }
    .qs-pillar-icon-wrap svg { width: 24px; height: 24px; }
    /* Mobile: mostrar colores activos sin hover */
    .qs-pillar-inner { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.12); }
    .qs-intro-pillar:nth-child(1) .qs-pillar-icon-wrap { background: rgba(0, 212, 255, 0.15); box-shadow: 0 0 20px rgba(0, 212, 255, 0.15); }
    .qs-intro-pillar:nth-child(1) .qs-pillar-icon-wrap svg { color: #00d4ff; }
    .qs-intro-pillar:nth-child(2) .qs-pillar-icon-wrap { background: rgba(180, 77, 255, 0.15); box-shadow: 0 0 20px rgba(180, 77, 255, 0.15); }
    .qs-intro-pillar:nth-child(2) .qs-pillar-icon-wrap svg { color: #b44dff; }
    .qs-intro-pillar:nth-child(3) .qs-pillar-icon-wrap { background: rgba(255, 77, 166, 0.15); box-shadow: 0 0 20px rgba(255, 77, 166, 0.15); }
    .qs-intro-pillar:nth-child(3) .qs-pillar-icon-wrap svg { color: #ff4da6; }
    .qs-intro-pillar:nth-child(4) .qs-pillar-icon-wrap { background: rgba(0, 230, 176, 0.15); box-shadow: 0 0 20px rgba(0, 230, 176, 0.15); }
    .qs-intro-pillar:nth-child(4) .qs-pillar-icon-wrap svg { color: #00e6b0; }
    .qs-intro-values {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 4%;
        gap: 16px;
        padding: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .qs-intro-values::-webkit-scrollbar { display: none; }
    .qs-intro-value { flex: 0 0 75%; scroll-snap-align: start; }
    .qs-values-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }
    .qs-values-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        padding: 0;
        background: rgba(26, 77, 110, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }
    .qs-values-dot::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 44px;
        height: 44px;
    }
    .qs-values-dot.active {
        width: 24px;
        border-radius: 4px;
        background: #1a4d6e;
    }
}
/* ===== SERVICES SLIDER - PROFESSIONAL ===== */
.qs-services-slider-section {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, #0a2a3a 0%, #1a4d6e 50%, #0d3a54 100%);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.qs-services-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 10% 20%, rgba(57, 166, 222, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 90% 80%, rgba(94, 184, 217, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.qs-services-slider-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.qs-slider-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #5eb8e6;
    margin-bottom: 15px;
}

.qs-services-slider-header h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: var(--font-weight-extrabold, 800);
    color: var(--qs-white) !important;
    line-height: 1.1;
}

.qs-services-slider-header h2 .highlight {
    color: #5eb8e6;
}

/* Slider Container */
.qs-services-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.qs-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.qs-slider-track {
    position: relative;
    min-height: 450px;
}

/* Individual Slide */
.qs-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.qs-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.qs-slide.prev {
    opacity: 0;
    transform: translateX(-100px);
}

/* Slide Image */
.qs-slide-image {
    position: relative;
    overflow: hidden;
}

.qs-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.qs-slide.active .qs-slide-image img {
    transform: scale(1.05);
}

.qs-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 42, 58, 0.3) 0%, rgba(57, 166, 222, 0.1) 100%);
}

/* Slide Content */
.qs-slide-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 42, 58, 0.95) 0%, rgba(26, 77, 110, 0.9) 100%);
}

.qs-slide-number {
    font-size: 80px;
    font-weight: 900;
    color: rgba(57, 166, 222, 0.25);
    line-height: 1;
    margin-bottom: -30px;
    font-family: 'Manrope', sans-serif;
}

.qs-slide-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.qs-slide-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #fff !important;
    margin-bottom: 25px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Slide Features List */
.qs-slide-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.qs-slide-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.qs-slide-features .feature-icon {
    color: #5eb8e6;
    font-weight: 700;
}

/* Slide Button */
.qs-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #5eb8e6 0%, #2d8fc2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(57, 166, 222, 0.3);
}

.qs-slide-btn:hover {
    opacity: 0.85;
}

.qs-slide-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.qs-slide-btn:hover svg {
    transform: none;
}

/* Slider Navigation */
.qs-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.qs-slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qs-slider-arrow:hover {
    background: #5eb8e6;
    border-color: #5eb8e6;
    transform: scale(1.1);
}

.qs-slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
}

/* Slider Dots */
.qs-slider-dots {
    display: flex;
    gap: 15px;
}

.qs-dot {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qs-dot span {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.qs-dot:hover {
    background: rgba(57, 166, 222, 0.2);
    border-color: rgba(57, 166, 222, 0.5);
}

.qs-dot:hover span {
    color: #5eb8e6;
}

.qs-dot.active {
    background: #5eb8e6;
    border-color: #5eb8e6;
}

.qs-dot.active span {
    color: #fff;
}

/* Progress Bar */
.qs-slider-progress {
    position: relative;
    margin-top: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.qs-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #5eb8e6, #5eb8d9);
    width: 25%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Services Slider Responsive */
@media (max-width: 1024px) {
    .qs-slide {
        grid-template-columns: 1fr;
    }

    .qs-slide-image {
        height: 250px;
    }

    .qs-slider-track {
        min-height: auto;
    }

    .qs-slide-content {
        padding: 35px;
    }

    .qs-slide-number {
        font-size: 60px;
        margin-bottom: -20px;
    }

    .qs-slide-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .qs-services-slider-section {
        margin-top: 50px;
        padding: 50px 20px;
        border-radius: 24px;
    }

    .qs-services-slider-header h2 {
        font-size: 28px;
    }

    .qs-slide {
        grid-template-columns: 1fr;
        grid-template-rows: 200px auto;
    }

    .qs-slider-track {
        min-height: auto;
    }

    .qs-slide-image {
        height: 200px;
    }

    .qs-slide-content {
        padding: 25px;
    }

    .qs-slide-content h3 {
        font-size: 22px;
    }

    .qs-slide-content p {
        font-size: 14px;
    }

    .qs-slide-number {
        font-size: 50px;
        margin-bottom: -15px;
    }

    .qs-slide-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .qs-slider-nav {
        gap: 15px;
    }

    .qs-slider-arrow {
        width: 40px;
        height: 40px;
    }

    .qs-dot {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .qs-dot span {
        font-size: 12px;
    }
}

/* Sections - General */
.qs-section {
    padding: 120px 5%;
    position: relative;
    overflow-x: hidden;
}

.qs-section-dark {
    background: var(--qs-dark);
    color: #fff;
    position: relative;
    overflow-x: hidden;
}

/* Títulos azules en secciones oscuras */
.qs-section-dark h2,
.qs-section-dark h3,
.qs-section-dark h4 {
    color: #5eb8e6 !important;
}

/* Animated background for dark sections */
.qs-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(57, 166, 222, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
    z-index: 0;
}

.qs-section-dark::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 70%, rgba(0, 229, 255, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 70% 30%, rgba(57, 166, 222, 0.08) 0%, transparent 30%);
    animation: bgRotate 20s linear infinite;
    z-index: 0;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes bgRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.qs-section-dark > * {
    position: relative;
    z-index: 1;
}

.qs-section-light {
    background: var(--qs-bg-main);
    text-align: center;
}

.qs-section-light .qs-badge {
    margin: 0 auto 20px;
}

/* ===== NUESTRA TRAYECTORIA - DISEÑO CREATIVO ===== */
.qs-history-section {
    padding: 80px 20px;
    background: #f6f7f0;
    position: relative;
    overflow-x: hidden;
}

/* Patrón sutil de fondo */
.qs-history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 85%, rgba(30, 64, 124, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 90% 15%, rgba(59, 130, 180, 0.06) 0%, transparent 30%);
    pointer-events: none;
}

.qs-history-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.qs-history-header {
    text-align: center;
    margin-bottom: 50px;
}

.qs-history-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #2d8fc2;
    margin-bottom: 18px;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: #2d8fc2;
    border-radius: 50%;
}

.qs-history-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 15px;
}

.qs-history-title br {
    display: block;
}

.qs-history-subtitle {
    font-size: 17px;
    color: #555555;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Bento Grid - Layout Asimétrico */
.qs-history-bento {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Card base */
.qs-bento-card {
    background: #1a4d6e;
    border-radius: 20px;
    padding: 32px;
    border: none;
    position: relative;
    overflow: hidden;
}

.qs-bento-card::before {
    display: none;
}

@media (hover: hover) {
    .qs-bento-card {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .qs-bento-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(26, 77, 110, 0.3);
    }
}

/* Card Main - Número grande */
.qs-bento-main {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(160deg, #0d3a54 0%, #1a4d6e 100%);
    min-height: 380px;
    padding: 40px;
}

.qs-bento-main::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.qs-bento-visual {
    flex-shrink: 0;
    text-align: left;
    margin-bottom: 20px;
}

.qs-bento-number {
    font-size: clamp(70px, 12vw, 100px);
    font-weight: 900;
    line-height: 0.9;
    color: #5eb8d9;
    position: relative;
    display: inline-block;
}

.qs-bento-number::after {
    display: none;
}

.qs-bento-number-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff !important;
    margin-top: 8px;
    display: block;
}

.qs-bento-content {
    position: relative;
    z-index: 2;
}

.qs-bento-main h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #5eb8e6 !important;
}

.qs-bento-main p {
    font-size: 15px;
    line-height: 1.7;
    color: #fff !important;
    margin-bottom: 20px;
}

.qs-bento-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.qs-bento-tags span {
    padding: 8px 16px;
    background: rgba(94, 184, 217, 0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #8fd4eb;
    transition: all 0.3s ease;
}

.qs-bento-tags span:hover {
    background: rgba(94, 184, 217, 0.25);
    transform: translateY(-2px);
}

/* Card Metodología - Vertical */
.qs-bento-method {
    display: flex;
    flex-direction: column;
    background: #2a6a8a;
}

.qs-bento-method:hover {
    box-shadow: 0 20px 40px rgba(42, 106, 138, 0.35);
}

.qs-bento-icon {
    width: 56px;
    height: 56px;
    background: #5eb8d9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.qs-bento-icon::before {
    display: none;
}

.qs-bento-icon svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    position: relative;
    z-index: 1;
}

.qs-bento-method h3,
.qs-bento-results h3 {
    font-size: 20px;
    font-weight: 700;
    color: #5eb8e6 !important;
    margin-bottom: 12px;
}

.qs-bento-method p,
.qs-bento-results p {
    font-size: 14px;
    color: #fff !important;
    line-height: 1.65;
    flex-grow: 1;
}

.qs-bento-arrow {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-left: auto;
    transition: all 0.3s ease;
}

.qs-bento-arrow:hover {
    background: rgba(94, 184, 217, 0.3);
    transform: rotate(-45deg);
}

.qs-bento-arrow svg {
    width: 22px;
    height: 22px;
    stroke: rgba(255, 255, 255, 0.7);
    transition: stroke 0.3s ease;
}

.qs-bento-arrow:hover svg {
    stroke: #fff;
}

/* Card Resultados */
.qs-bento-results {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    background: #3d8fb3;
}

.qs-bento-results:hover {
    box-shadow: 0 20px 40px rgba(61, 143, 179, 0.35);
}

.qs-bento-results .qs-bento-icon {
    margin-bottom: 20px;
}

/* Card Stats - Horizontal */
.qs-bento-stats {
    grid-column: span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 35px 30px;
    background: #0d3a54;
    border-radius: 20px;
    position: relative;
}

.qs-bento-stats::before {
    display: none;
}

.qs-mini-stat {
    text-align: center;
    padding: 0 45px;
    position: relative;
}

.qs-mini-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

.qs-mini-stat .stat-value {
    display: block;
    font-size: 38px;
    font-weight: 900;
    color: #5eb8d9;
    line-height: 1;
    margin-bottom: 8px;
}

.qs-mini-stat .stat-name {
    font-size: 12px;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .qs-history-section { padding: 70px 20px; }
    .qs-history-bento {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .qs-bento-main {
        grid-column: span 2;
        grid-row: span 1;
        min-height: auto;
    }
    .qs-bento-method { grid-column: span 1; }
    .qs-bento-results { grid-column: span 1; }
    .qs-bento-stats {
        grid-column: span 2;
        padding: 30px 25px;
    }
    .qs-mini-stat { padding: 0 30px; }
    .qs-mini-stat .stat-value { font-size: 32px; }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .qs-history-section { padding: 60px 16px; }
    .qs-history-header { margin-bottom: 35px; }
    .qs-history-label { font-size: 10px; letter-spacing: 2px; }
    .qs-history-title { font-size: 26px; }
    .qs-history-subtitle { font-size: 15px; }

    .qs-history-bento {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 4%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 14px;
        padding: 10px 0;
    }
    .qs-history-bento::-webkit-scrollbar { display: none; }
    .qs-bento-card {
        padding: 25px 20px;
        border-radius: 16px;
        flex: 0 0 80vw;
        min-width: 80vw;
        scroll-snap-align: start;
    }
    .qs-bento-main {
        grid-column: unset;
        grid-row: unset;
        min-height: auto;
        padding: 30px 22px;
    }
    .qs-bento-number { font-size: 60px; }
    .qs-bento-number-label { font-size: 14px; letter-spacing: 3px; }
    .qs-bento-main h3 { font-size: 22px; }
    .qs-bento-main p { font-size: 14px; }
    .qs-bento-tags { justify-content: flex-start; }

    .qs-bento-method,
    .qs-bento-results {
        grid-column: unset;
    }
    .qs-bento-icon { width: 50px; height: 50px; }
    .qs-bento-icon svg { width: 24px; height: 24px; }
    .qs-bento-method h3,
    .qs-bento-results h3 { font-size: 18px; }

    .qs-bento-stats {
        grid-column: unset;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 20px;
        padding: 25px 20px;
    }
    .qs-mini-stat {
        padding: 0;
        flex: 1 1 auto;
        min-width: 80px;
    }
    .qs-mini-stat:not(:last-child)::after {
        display: none;
    }
    .qs-mini-stat .stat-value { font-size: 28px; }
    .qs-mini-stat .stat-name { font-size: 10px; letter-spacing: 1px; }

    .qs-history-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }
    .qs-history-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        padding: 0;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }
    .qs-history-dot::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 44px;
        height: 44px;
    }
    .qs-history-dot.active {
        width: 24px;
        border-radius: 4px;
        background: #1a4d6e;
    }
}

@media (min-width: 769px) {
    .qs-history-dots { display: none; }
}

/* Animated section titles */
.qs-section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
}

.qs-section-dark .qs-section-title {
    color: #5eb8e6 !important;
}

.qs-section-light .qs-section-title {
    color: var(--qs-title-color);
}

.qs-section-subtitle {
    text-align: center;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--qs-text-color);
    max-width: 750px;
    margin: 0 auto 70px;
    line-height: 1.7;
}

.qs-section-dark .qs-section-subtitle {
    color: rgba(255,255,255,0.7) !important;
    max-width: 700px;
    margin: 20px auto 60px;
}

/* Story Cards - 3D Effect */
.qs-story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1000px;
}

.qs-story-card {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.qs-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.qs-story-card:hover::before {
    left: 100%;
}

.qs-story-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--qs-primary), var(--qs-accent));
    border-radius: 30px 30px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.qs-story-card:hover::after {
    transform: scaleX(1);
}

.qs-story-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(57, 166, 222, 0.2);
}

.qs-story-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--qs-primary), var(--qs-primary-light));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(57, 166, 222, 0.35);
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 15px 40px rgba(57, 166, 222, 0.35); }
    50% { box-shadow: 0 20px 50px rgba(57, 166, 222, 0.5); }
}

.qs-story-card h3,
.qs-story-card h4 {
    font-size: 24px;
    color: var(--qs-title-color);
    margin-bottom: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.qs-story-card:hover h3,
.qs-story-card:hover h4 {
    color: var(--qs-primary);
}

.qs-story-card p {
    color: var(--qs-text-color);
    line-height: 1.7;
    font-size: 17px;
}

/* Story grid responsive (kept from stats media query) */
@media (max-width: 900px) {
    .qs-story-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 4%;
        gap: 30px;
        padding: 20px 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .qs-story-grid::-webkit-scrollbar {
        display: none;
    }
    .qs-story-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }
}

/* ===== CERTIFICACIONES v2 — Sección independiente ===== */
#qs-certs-v2 {
    padding: 110px 5%;
    background: #0f1419;
    text-align: center;
    position: relative;
    overflow-x: hidden;
}

#qs-certs-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 25% 40%, rgba(57,166,222,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 75% 60%, rgba(57,166,222,0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Header */
.qsc-header {
    max-width: 750px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.qsc-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(57,166,222,0.08);
    border: 1px solid rgba(57,166,222,0.18);
    border-radius: 100px;
    color: rgba(57,166,222,0.9);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

#qs-certs-v2 .qsc-header h2 {
    font-size: clamp(28px, 5vw, 42px) !important;
    font-weight: 800 !important;
    color: #fff !important;
    font-style: normal !important;
    margin-bottom: 12px;
    line-height: 1.1;
}

#qs-certs-v2 .qsc-header h2 span {
    color: #5eb8e6 !important;
}

#qs-certs-v2 .qsc-header > p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255,255,255,0.55) !important;
    line-height: 1.7;
}

/* Grid */
.qsc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Card */
.qsc-card {
    text-align: center;
    padding: 48px 32px 40px;
    background: rgba(57,166,222,0.03);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(57,166,222,0.08);
    border-radius: 24px;
}
@media (hover: hover) {
    .qsc-card {
        transition: all 0.5s cubic-bezier(.16,1,.3,1);
    }
    .qsc-card:hover {
        background: rgba(57,166,222,0.07);
        border-color: rgba(57,166,222,0.22);
        box-shadow: 0 20px 55px rgba(57,166,222,0.12);
        transform: translateY(-8px);
    }
}

/* Blue glass icon */
.qsc-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin: 0 auto 24px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.18);
    background: linear-gradient(145deg, rgba(57,166,222,0.9), rgba(45,143,194,1));
    box-shadow: 0 8px 28px rgba(57,166,222,0.35), inset 0 -2px 8px rgba(0,0,0,0.12), inset 0 2px 8px rgba(255,255,255,0.2);
    animation: qscGlow 4s ease-in-out infinite;
}

.qsc-card:nth-child(2) .qsc-icon { animation-delay: .6s; }
.qsc-card:nth-child(3) .qsc-icon { animation-delay: 1.2s; }

.qsc-icon::after {
    content: "";
    position: absolute;
    top: 6%; left: 12%;
    width: 76%; height: 38%;
    background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, transparent 100%);
    border-radius: 14px 14px 50% 50%;
    pointer-events: none;
}

.qsc-icon svg {
    width: 100%; height: 100%;
    stroke: #fff;
    position: relative;
    z-index: 1;
}

@keyframes qscGlow {
    0%, 100% { box-shadow: 0 8px 28px rgba(57,166,222,0.35), inset 0 -2px 8px rgba(0,0,0,0.12), inset 0 2px 8px rgba(255,255,255,0.2); }
    50% { box-shadow: 0 14px 40px rgba(57,166,222,0.5), inset 0 -2px 8px rgba(0,0,0,0.12), inset 0 2px 8px rgba(255,255,255,0.2); }
}

@media (hover: hover) {
    .qsc-icon {
        transition: transform .4s ease, filter .4s ease;
    }
    .qsc-card:hover .qsc-icon {
        transform: scale(1.1);
        filter: brightness(1.1);
        animation-play-state: paused;
    }
}

/* Card text */
#qs-certs-v2 .qsc-card h4 {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    font-style: normal !important;
    margin-bottom: 8px;
}

#qs-certs-v2 .qsc-card p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65) !important;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    #qs-certs-v2 { padding: 80px 4%; }
    .qsc-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
}

/* ===== MISSION/VISION - INTERACTIVE BENTO GRID ===== */
.qs-mv-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 40px;
    overflow: hidden;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.12),
        0 20px 60px rgba(26, 77, 110, 0.1);
}

@media (max-width: 900px) {
    .qs-mv-container {
        grid-template-columns: 1fr;
        border-radius: 30px;
    }
}

/* Mission Panel - Left Side */
.qs-mv-panel {
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s ease;
}

.qs-mv-panel.mission {
    background: linear-gradient(145deg, #0d3a54 0%, #1a4d6e 100%);
    color: #fff;
}

.qs-mv-panel.vision {
    background: #fff;
}

/* Decorative Pattern - Mission */
.qs-mv-panel.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(94, 184, 217, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(143, 212, 235, 0.15) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Animated floating elements */
.qs-mv-panel.mission::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 184, 217, 0.25) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation: floatOrb 8s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -30px) scale(1.1); }
}

/* Panel Header */
.qs-mv-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.qs-mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.qs-mv-panel.mission .qs-mv-icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.qs-mv-panel.vision .qs-mv-icon {
    background: linear-gradient(145deg, #1a4d6e, #0d3a54);
    box-shadow: 0 15px 40px rgba(26, 77, 110, 0.3);
}

.qs-mv-icon svg {
    width: 40px;
    height: 40px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.qs-mv-panel.mission .qs-mv-icon svg {
    color: #fff;
}

.qs-mv-panel.vision .qs-mv-icon svg {
    color: #fff;
}

/* Number Badge */
.qs-mv-number {
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 1;
}

.qs-mv-panel.mission .qs-mv-number {
    color: rgba(255, 255, 255, 0.06);
}

.qs-mv-panel.vision .qs-mv-number {
    color: rgba(26, 77, 110, 0.08);
}

/* Title */
.qs-mv-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.qs-mv-panel.mission .qs-mv-title {
    color: #5eb8e6 !important;
}

.qs-mv-panel.vision .qs-mv-title {
    color: var(--qs-green);
}

.qs-mv-heading {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.qs-mv-panel.mission .qs-mv-heading {
    color: #5eb8e6 !important;
}

.qs-mv-panel.vision .qs-mv-heading {
    color: var(--qs-title-color);
}

/* Divider Line */
.qs-mv-divider {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    margin: 25px 0;
    position: relative;
    z-index: 2;
}

.qs-mv-panel.mission .qs-mv-divider {
    background: linear-gradient(90deg, var(--qs-green-light), var(--qs-green-accent));
}

.qs-mv-panel.vision .qs-mv-divider {
    background: linear-gradient(90deg, var(--qs-green), var(--qs-green-light));
}

/* Description */
.qs-mv-text {
    font-size: 17px;
    line-height: 1.9;
    position: relative;
    z-index: 2;
    margin: 0;
}

.qs-mv-panel.mission .qs-mv-text {
    color: #fff !important;
}

.qs-mv-panel.vision .qs-mv-text {
    color: var(--qs-text-color);
}

/* Decorative dots - Vision */
.qs-mv-panel.vision::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(var(--qs-green-accent) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.5;
}

.qs-mv-panel.vision::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(var(--qs-green-accent) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.5;
}

/* Hover Effects */
.qs-mv-panel:hover .qs-mv-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 20px 50px rgba(26, 77, 110, 0.35);
}

.qs-mv-panel:hover .qs-mv-icon svg {
    transform: scale(1.1);
}

.qs-mv-panel.mission:hover .qs-mv-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.qs-mv-divider {
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.qs-mv-panel:hover .qs-mv-divider {
    width: 100px;
}

/* Center Connector */
.qs-mv-connector {
    display: none;
}

@media (min-width: 901px) {
    .qs-mv-connector {
        display: flex;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        width: 70px;
        height: 70px;
        background: #fff;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .qs-mv-connector svg {
        width: 30px;
        height: 30px;
        color: var(--qs-green);
    }

    .qs-mv-container {
        position: relative;
    }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .qs-mv-panel {
        padding: 45px 30px;
        min-height: 380px;
    }

    .qs-mv-heading {
        font-size: 28px;
    }

    .qs-mv-number {
        font-size: 70px;
        top: 20px;
        right: 25px;
    }

    .qs-mv-icon {
        width: 65px;
        height: 65px;
    }

    .qs-mv-icon svg {
        width: 32px;
        height: 32px;
    }
}

/* Allies - Ultra Modern Marquee Style */
.qs-allies-container {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
}

.qs-allies {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    align-items: center;
}

.qs-ally {
    padding: 40px 60px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

/* Animated gradient border */
.qs-ally::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(135deg, var(--qs-green), var(--qs-green-accent), var(--qs-green-light), var(--qs-green));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientBorder 4s ease infinite;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.qs-ally:hover::before {
    opacity: 1;
}

/* Shine effect */
.qs-ally::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.qs-ally:hover::after {
    transform: translateX(100%);
}

.qs-ally:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 80px rgba(57, 166, 222, 0.2);
}

.qs-ally-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.qs-ally img {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.5s ease;
}

.qs-ally:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.qs-ally-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--qs-title-color);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.qs-ally:hover .qs-ally-name {
    opacity: 1;
    transform: translateY(0);
}

/* Trust badge */
.qs-allies-badge {
    text-align: center;
    margin-top: 50px;
    padding: 20px 40px;
    background: linear-gradient(135deg, rgba(57, 166, 222, 0.1), rgba(57, 166, 222, 0.1));
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--qs-text-color);
}

.qs-allies-badge-icon {
    font-size: 20px;
}

/* ===== ALIADOS PRO CARDS ===== */
.qs-allies-container-pro {
    max-width: 1100px;
    margin: 60px auto 0;
}

.qs-allies-pro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.qs-ally-pro {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 45px 35px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
}

.qs-ally-pro-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--qs-primary), var(--qs-accent), var(--qs-primary-light));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.qs-ally-pro:hover .qs-ally-pro-glow {
    transform: scaleX(1);
    animation: glowMove 2s linear infinite;
}

@keyframes glowMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.qs-ally-pro:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(57, 166, 222, 0.2);
    border-color: rgba(57, 166, 222, 0.15);
}

.qs-ally-pro-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.qs-ally-pro-logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 8px 8px 20px rgba(0,0,0,0.06), -8px -8px 20px rgba(255,255,255,0.8);
    transition: all 0.4s ease;
}

.qs-ally-pro:hover .qs-ally-pro-logo {
    transform: scale(1.08);
    box-shadow: 10px 10px 25px rgba(0,0,0,0.08), -10px -10px 25px rgba(255,255,255,0.9);
}

.qs-ally-pro-logo img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.qs-ally-pro:hover .qs-ally-pro-logo img {
    transform: scale(1.1);
}

.qs-ally-pro-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--qs-title-color);
    margin: 0 0 8px;
}

.qs-ally-pro-tagline {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--qs-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.qs-ally-pro-desc {
    font-size: 16px;
    color: var(--qs-text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.qs-ally-pro-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.qs-ally-pro-tags span {
    background: linear-gradient(135deg, rgba(57, 166, 222, 0.1), rgba(57, 166, 222, 0.1));
    color: #2d8fc2;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.qs-ally-pro-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--qs-primary), var(--qs-primary-dark));
    color: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(57, 166, 222, 0.3);
}

.qs-ally-pro-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.qs-ally-pro:hover .qs-ally-pro-link {
    box-shadow: 0 12px 30px rgba(57, 166, 222, 0.4);
}

.qs-ally-pro:hover .qs-ally-pro-link svg {
    transform: translateX(4px);
}

.qs-allies-pro-footer {
    text-align: center;
    margin-top: 50px;
}

.qs-allies-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, rgba(57, 166, 222, 0.1), rgba(57, 166, 222, 0.1));
    border-radius: 60px;
    margin-bottom: 25px;
}

.qs-allies-pro-badge svg {
    color: #5eb8e6;
    flex-shrink: 0;
}

.qs-allies-pro-badge span {
    font-size: 15px;
    color: var(--qs-text-color);
    font-weight: 500;
}

.qs-allies-pro-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    color: #5eb8e6;
    border: 2px solid #5eb8e6;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.qs-allies-pro-cta:hover {
    background: #5eb8e6;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(57, 166, 222, 0.3);
}

.qs-allies-pro-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.qs-allies-pro-cta:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .qs-allies-pro {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 4%;
        gap: 30px;
        padding: 20px 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .qs-allies-pro::-webkit-scrollbar {
        display: none;
    }
    .qs-ally-pro {
        flex: 0 0 85%;
        scroll-snap-align: start;
        padding: 35px 25px;
    }
}


/* ===== NUESTRA EXPERIENCIA - Timeline Section ===== */
.qs-experience {
    background: var(--qs-bg-main);
    position: relative;
}

.qs-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

/* Central line */
.qs-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--qs-primary), var(--qs-accent), var(--qs-primary-light));
    transform: translateX(-50%);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .qs-timeline::before {
        left: 30px;
    }
}

.qs-timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 60px;
}

.qs-timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

@media (max-width: 768px) {
    .qs-timeline-item,
    .qs-timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
    }
}

/* Timeline dot */
.qs-timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 30px;
    width: 24px;
    height: 24px;
    background: var(--qs-primary);
    border: 4px solid #fff;
    border-radius: 22px;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(57, 166, 222, 0.2), 0 5px 20px rgba(57, 166, 222, 0.3);
    z-index: 2;
    transition: all 0.4s ease;
}

.qs-timeline-item:hover::before {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 0 8px rgba(57, 166, 222, 0.2), 0 10px 30px rgba(57, 166, 222, 0.4);
}

@media (max-width: 768px) {
    .qs-timeline-item::before,
    .qs-timeline-item:nth-child(even)::before {
        left: 30px;
    }
}

.qs-timeline-content {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    max-width: 450px;
    margin-right: 50px;
    position: relative;
    transition: all 0.4s ease;
}

.qs-timeline-item:nth-child(even) .qs-timeline-content {
    margin-right: 0;
    margin-left: 50px;
}

@media (max-width: 768px) {
    .qs-timeline-content,
    .qs-timeline-item:nth-child(even) .qs-timeline-content {
        margin: 0;
        max-width: 100%;
    }
}

.qs-timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(57, 166, 222, 0.15);
}

/* Arrow pointer */
.qs-timeline-content::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 30px;
    border: 15px solid transparent;
    border-left-color: #fff;
}

.qs-timeline-item:nth-child(even) .qs-timeline-content::before {
    right: auto;
    left: -15px;
    border-left-color: transparent;
    border-right-color: #fff;
}

@media (max-width: 768px) {
    .qs-timeline-content::before,
    .qs-timeline-item:nth-child(even) .qs-timeline-content::before {
        left: -15px;
        right: auto;
        border-left-color: transparent;
        border-right-color: #fff;
    }
}

.qs-timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--qs-primary), var(--qs-primary-light));
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.qs-timeline-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--qs-title-color);
    margin-bottom: 15px;
}

.qs-timeline-content p {
    color: var(--qs-text-color);
    line-height: 1.7;
    font-size: 17px;
}

.qs-timeline-icon {
    position: absolute;
    top: -25px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--qs-accent), var(--qs-primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
}

.qs-timeline-item:nth-child(even) .qs-timeline-icon {
    right: auto;
    left: 30px;
}

/* Services preview in experience */
.qs-exp-services {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.qs-exp-service-tag {
    padding: 12px 16px;
    background: rgba(57, 166, 222, 0.08);
    color: var(--qs-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.qs-exp-service-tag:hover {
    background: var(--qs-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* CTA Final - Epic version */
/* ===== POLÍTICA DEL SISTEMA INTEGRADO - PREMIUM ===== */
.qs-policy {
    background: linear-gradient(135deg, #1a4d6e 0%, #0d3a54 50%, #0a2a3a 100%);
    padding: 120px 20px;
    position: relative;
    overflow-x: hidden;
}

.qs-policy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 229, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(57, 166, 222, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.qs-policy-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.qs-policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.qs-policy-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.qs-policy-badge svg {
    width: 20px;
    height: 20px;
    color: #5eb8e6;
}

.qs-policy-badge span {
    font-size: 13px;
    font-weight: 600;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qs-policy-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #5eb8e6 !important;
    margin: 0 0 15px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.qs-policy-subtitle {
    font-size: 1.1rem;
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 1px;
}

.qs-policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Asegurar títulos azules en tarjetas de políticas */
.qs-policy-grid h4,
.qs-policy-card h4 {
    color: #5eb8e6 !important;
}

.qs-policy-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.qs-policy-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5eb8e6, #39a6de, #5eb8e6);
    background-size: 200% 100%;
    opacity: 0;
}

@media (hover: hover) {
    .qs-policy-card {
        transition: all 0.4s ease;
    }
    .qs-policy-card::before {
        transition: opacity 0.4s ease;
    }
    .qs-policy-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    }
    .qs-policy-card:hover::before {
        opacity: 1;
        animation: gradientMove 2s linear infinite;
    }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.qs-policy-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5eb8e6, #39a6de);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(57, 166, 222, 0.3);
}

.qs-policy-card-icon svg {
    width: 35px;
    height: 35px;
    color: #fff;
}

.qs-policy-card-title,
.qs-policy-card h4.qs-policy-card-title,
h4.qs-policy-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #5eb8e6 !important;
    margin-bottom: 15px;
}

.qs-policy-card-text {
    color: #fff !important;
    font-size: 16px;
    line-height: 1.7;
}

.qs-policy-footer {
    margin-top: 50px;
    text-align: center;
}

.qs-policy-certs {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.qs-policy-cert {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.qs-policy-cert svg {
    width: 24px;
    height: 24px;
    color: #5eb8e6;
}

.qs-policy-cert span {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

@media (max-width: 900px) {
    .qs-policy-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 4%;
        gap: 25px;
        padding: 20px 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .qs-policy-grid::-webkit-scrollbar {
        display: none;
    }
    .qs-policy-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .qs-policy {
        padding: 80px 15px;
    }
    .qs-policy-card {
        padding: 30px 25px;
    }
    .qs-policy-certs {
        gap: 15px;
    }
    .qs-policy-cert {
        padding: 12px 20px;
    }
}

.qs-cta {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--qs-primary), var(--qs-primary-dark));
    color: #fff;
    position: relative;
    overflow-x: hidden;
}

.qs-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(0, 229, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.qs-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.qs-cta h2,
.qs-cta-heading {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 25px;
    font-weight: 800;
    color: #fff !important;
    line-height: 1.1;
}

.qs-cta p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #fff !important;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.qs-cta-btn {
    display: inline-block;
    padding: 22px 50px;
    background: #fff;
    color: #5eb8e6;
    font-weight: 700;
    font-size: 16px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.qs-cta-btn:hover {
    opacity: 0.85;
}

/* Ocultar contenido original de Elementor en página Quiénes Somos */
.elementor-page-2379 #featured-title,
.page-id-2379 #featured-title {
    display: none !important;
}
.elementor-page-2379 .site-main,
.page-id-2379 .site-main {
    padding: 0 !important;
    margin: 0 !important;
}
.elementor-page-2379 .site-main > article,
.page-id-2379 .site-main > article {
    padding: 0 !important;
    margin: 0 !important;
}
.elementor-page-2379 .entry-content > .elementor,
.page-id-2379 .entry-content > .elementor {
    display: none !important;
}
#qs-storytelling {
    display: block !important;
    position: relative;
    z-index: 10;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    max-width: none !important;
}

/* Hacer que los contenedores padre no limiten el ancho */
.elementor-page-2379 #content-wrap,
.elementor-page-2379 #site-content,
.elementor-page-2379 #inner-content,
.elementor-page-2379 .page-content {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.elementor-page-2379 #content-wrap.agrios-container {
    max-width: none !important;
    padding: 0 !important;
}
