/* Wollo Aliados (tienda.wpet.casa) — duplicado de front-empresas.css/
   front-nonprofit.css (mismo sistema de diseño "we-"), recoloreado a azul
   (#2563EB, marca de Tienda). Pedido de Carlos (2026-08-21): mismos
   componentes visuales de comida, pero página corta — sin
   funciones/iadn/ahorro/integraciones/precios/FAQ, solo hero, beneficios
   (plataforma), categorías (wt-*), cómo funciona (wt-*) y CTA final. */

.we-wrap {
    --we-bg: #F4F7FC;
    --we-card: #FFFFFF;
    --we-text: #101A33;
    --we-text-2: #4A5876;
    --we-azul-dark: #B9CEFB;
    --we-azul-mid: #CFE0FF;
    --we-azul-mid-2: #E4EDFF;
    --we-azul-accent: #2563EB;
    --we-azul-accent-2: #1E40AF;
    --we-pop: #E4EDFF;
    --we-pop-text: #101A33;
    --we-pop-text-2: #1E40AF;
    --we-border: #E3E9F5;
    --we-track: #CFE0FF;
    --we-muted: #6B7691;
    --we-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --we-ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    font-family: Archivo, system-ui, sans-serif;
    background: var(--we-bg);
    color: var(--we-text);
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    overflow-x: hidden;
}

.we-wrap * { box-sizing: border-box; }
.we-wrap img { max-width: 100%; display: block; }
.we-wrap a { color: var(--we-azul-accent-2); text-decoration: none; }
.we-wrap a:hover { color: var(--we-text); }
.we-wrap h1, .we-wrap h2 { letter-spacing: -.035em; margin: 0; }
.we-wrap h3 { letter-spacing: -.03em; margin: 0; }
.we-wrap p { margin: 0; }

.we-only-desktop { display: flex; }
a.we-only-desktop { display: inline-flex; }
.we-only-mobile { display: none !important; }

.we-pad { padding-left: 28px; padding-right: 28px; }

.we-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 32px !important;
    border-radius: 99px;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-family: Archivo, sans-serif;
    transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), opacity 160ms ease;
}
.we-btn:active { transform: scale(0.97); }
.we-btn-primary { background: #2562E9; color: #FFFFFF !important; border: 1.5px solid #2562E9; }
.we-btn-primary:hover { color: #FFFFFF !important; opacity: .88; }
.we-btn-primary span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    flex: 0 0 auto;
}

.we-kicker { font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--we-azul-accent-2); margin-bottom: 14px; }

.we-pulse-dot { width: 9px; height: 9px; border-radius: 99px; background: var(--we-azul-accent); display: block; animation: we-pulse 2s ease-in-out infinite; }
@keyframes we-pulse { 0%, 100% { opacity: .35; transform: scale(1); } 50% { opacity: 1; transform: scale(1.35); } }

/* Nav flotante */

.we-nav-floating-outer {
    position: fixed;
    top: 12px;
    left: 14px;
    right: 14px;
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-26px) scale(.92);
    transition: opacity 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 420ms cubic-bezier(0.23, 1, 0.32, 1);
}
.we-nav-floating-outer.is-visible { opacity: 1; transform: translate(0, 0) scale(1); pointer-events: auto; }

.we-nav-floating {
    width: 100%;
    max-width: 1160px;
    background: #E4EDFF;
    border-radius: 30px;
    box-shadow: 0 22px 44px -26px rgba(16, 26, 51, .35);
    padding: 9px 10px 9px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.we-nav-logo { height: 28px; width: auto; flex: 0 0 auto; }
.we-nav-links { margin-left: auto; align-items: center; gap: 0; font-size: 15px; font-weight: 600; }
.we-nav-links a { color: var(--we-text); padding: 0 11px; white-space: nowrap; }
.we-nav-login { color: var(--we-azul-accent-2) !important; padding: 0 14px !important; }
.we-nav-cta { margin-left: auto; }

.we-burger { width: 42px; height: 42px; flex: 0 0 auto; align-items: center; justify-content: center; border: none; background: transparent; cursor: pointer; padding: 0; display: flex; flex-direction: column; }
.we-burger span { display: block; width: 22px; height: 2.5px; border-radius: 2px; background: var(--we-text); position: relative; transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1), opacity 160ms ease; }
.we-burger span + span { margin-top: 6px; }
.we-burger.is-open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.we-burger.is-open span:nth-child(2) { opacity: 0; }
.we-burger.is-open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.we-mobile-menu[hidden] { display: none; }
.we-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    max-width: 1160px;
    background: #E4EDFF;
    border-radius: 0 0 26px 26px;
    padding: 10px 8px 6px;
    font-size: 18px;
    font-weight: 600;
    animation: we-sheet 240ms cubic-bezier(0.23, 1, 0.32, 1) both;
}
.we-mobile-menu a { color: var(--we-text); padding: 11px 0; }
.we-mobile-menu .we-mobile-login { color: var(--we-azul-accent-2); }
/* Estructura compartida (padding, radios, svg) vive en front-shared.css —
   acá solo quedan los colores propios de esta marca. */
.we-mobile-menu-dark { background: var(--we-azul-dark); }
.we-mobile-menu-dark a { color: var(--we-text); }
.we-mobile-menu-dark .we-mobile-login-lime { color: var(--we-azul-accent-2); }
@keyframes we-sheet { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Header integrado */

.we-header-band { background: var(--we-azul-dark); padding: 14px 14px 0; }

.we-header-notch { align-items: flex-end; gap: 0; }
.we-notch-tab { background: #E4EDFF; border-radius: 34px 34px 0 0; padding: 18px 34px 18px 28px; display: flex; align-items: center; flex: 0 0 auto; }
.we-notch-tab img { height: 36px; width: auto; }
.we-notch-corner { width: 34px; height: 34px; background: #E4EDFF; flex: 0 0 auto; position: relative; overflow: hidden; }
.we-notch-corner span { position: absolute; inset: 0; background: var(--we-azul-dark); border-bottom-left-radius: 34px; display: block; }
.we-notch-nav { flex: 1; display: flex; align-items: center; justify-content: flex-start; gap: 0; font-size: 15px; font-weight: 600; padding: 0 6px 24px; flex-wrap: nowrap; }
.we-notch-nav a { color: var(--we-text); padding: 0 11px; white-space: nowrap; }
.we-notch-nav a:hover { color: var(--we-azul-accent-2); }
.we-notch-nav .we-notch-login { color: var(--we-azul-accent-2) !important; padding: 0 14px !important; }
.we-notch-nav .we-btn { margin-left: 10px; }
.we-notch-sep { width: 1px; height: 16px; background: transparent; display: block; }
.we-notch-sep-push { margin-left: auto; }

.we-header-mobile-wrap { position: relative; }
.we-header-mobile { display: flex; align-items: flex-end; gap: 0; }
.we-mobile-menu-overlay { position: absolute; top: 100%; left: 0; right: 0; z-index: 50; }
.we-header-mobile-tab { background: #E4EDFF; border-radius: 22px 22px 0 0; padding: 4px 18px 4px 14px; display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.we-header-mobile-logo { height: 26px; width: auto; flex: 0 0 auto; }
.we-header-mobile-corner { width: 22px; height: 22px; background: #E4EDFF; flex: 0 0 auto; position: relative; overflow: hidden; }
.we-header-mobile-corner span { position: absolute; inset: 0; background: var(--we-azul-dark); border-bottom-left-radius: 22px; display: block; }
.we-header-mobile-cta { margin-left: auto; }

.we-shell { background: #E4EDFF; border-radius: 0 0 0 34px; padding: clamp(28px, 3.4vw, 52px) 16px clamp(30px, 3.4vw, 48px); }

.we-hero-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr)); gap: 34px; align-items: center; max-width: 1160px; margin: 0 auto; }

.we-hero-h1 { font-size: clamp(34px, 4.4vw, 60px); line-height: 1.03; font-weight: 800; color: var(--we-text); }
.we-words { position: relative; display: block; color: var(--we-azul-accent); }
.we-words > span { position: absolute; left: 0; top: 0; opacity: 0; white-space: nowrap; animation: we-word 11.5s linear infinite; }
.we-words > i { visibility: hidden; font-style: normal; }
@keyframes we-word { 0% { opacity: 0; transform: translateY(14px); } 2% { opacity: 1; transform: translateY(0); } 12.5% { opacity: 1; transform: translateY(0); } 15%, 100% { opacity: 0; transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) {
    .we-words > span { animation-name: we-word-fade; }
}
@keyframes we-word-fade { 0% { opacity: 0; } 2%, 12.5% { opacity: 1; } 15%, 100% { opacity: 0; } }

.we-hero-texto { font-size: 18px; line-height: 1.5; color: #4A5876; margin-top: 20px; max-width: 520px; }
.we-hero-texto em { font-style: normal; color: var(--we-text); font-weight: 600; }

.we-hero-cta-bar { display: flex; align-items: center; gap: 10px; background: var(--we-card); border-radius: 99px; padding: 10px; margin: 28px 0 0; max-width: 520px; flex-wrap: wrap; box-shadow: 0 18px 40px -30px rgba(16, 26, 51, .5); }
.we-hero-cta-secundaria { color: var(--we-text); padding: 14px 18px; font-size: 16px; font-weight: 600; }
.we-hero-cta-arrow { margin-left: auto; width: 46px; height: 46px; border-radius: 99px; background: #DCE8FF; color: var(--we-azul-accent-2); display: flex; align-items: center; justify-content: center; font-size: 19px; font-weight: 700; }

.we-hero-media-wrap { position: relative; z-index: 2; padding: 30px 10px 14px; }
.we-hero-media { position: relative; border-radius: 30px; overflow: hidden; height: clamp(330px, 40vw, 480px); transform: rotate(2.5deg); box-shadow: 0 34px 74px -34px rgba(16, 26, 51, .6); }
.we-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.we-hero-media-fade { position: absolute; inset: auto 0 0 0; height: 45%; background: linear-gradient(to top, rgba(16, 26, 51, .55), rgba(16, 26, 51, 0)); pointer-events: none; }
.we-hero-aviso { position: absolute; top: 0; right: -6px; max-width: 320px; background: var(--we-card); border-radius: 20px; padding: 16px 18px; box-shadow: 0 24px 46px -26px rgba(16, 26, 51, .5); }
.we-hero-aviso-top { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.we-hero-aviso-tipo { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--we-azul-accent-2); }
.we-hero-aviso-hace { margin-left: auto; font-size: 12px; font-weight: 600; color: #9A9C8C; }
.we-hero-aviso-texto { font-size: 15px; line-height: 1.4; font-weight: 600; color: var(--we-pop-text); }

.we-badge-bar { align-items: flex-start; gap: 0; flex-direction: row-reverse; }
.we-badge-bar-left { background: #E4EDFF; border-radius: 0 0 34px 34px; padding: 18px 30px 20px 28px; display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.we-badge-numero { width: 42px; height: 42px; border-radius: 99px; background: var(--we-azul-accent); color: #FFFFFF; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; flex: 0 0 auto; }
.we-badge-titulo { font-size: 15px; font-weight: 700; color: var(--we-text); }
.we-badge-sub { font-size: 14px; color: #6B7691; }
.we-badge-bar-right { flex: 1; display: flex; align-items: center; justify-content: flex-start; gap: 18px; padding: 18px 20px 0; font-size: 15px; font-weight: 600; color: var(--we-azul-accent-2); flex-wrap: wrap; }
.we-badge-dot { width: 5px; height: 5px; border-radius: 99px; background: rgba(16, 26, 51, .25); display: block; }
.we-badge-bar-mobile { align-items: center; gap: 12px; background: #E4EDFF; border-radius: 0 0 30px 30px; padding: 16px 20px; width: 50%; margin-left: auto; }
.we-badge-bar-mobile .we-badge-numero { width: 38px; height: 38px; font-size: 17px; }

/* Plataforma (beneficios) */

.we-plataforma { max-width: 1200px; margin: 0 auto; padding-top: 62px; padding-bottom: 64px; color: var(--we-text); }
.we-plataforma h2 { font-size: clamp(28px, 3.8vw, 44px); line-height: 1.06; font-weight: 800; max-width: 860px; }
.we-plataforma-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 16px; margin-top: 40px; }
.we-plataforma-card { background: var(--we-azul-mid); border-radius: 24px; padding: 26px; }
.we-plataforma-kicker { font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--we-azul-accent-2); }
.we-plataforma-card-titulo { font-size: 22px; font-weight: 700; margin: 12px 0 8px; }
.we-plataforma-card p { font-size: 16px; line-height: 1.5; color: var(--we-text-2); }

/* Aliados: categorías + cómo funciona */

.wt-hero-kicker { margin-bottom: 18px; }
.wt-hero-kicker-titulo { font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--we-azul-accent-2); }
.wt-hero-kicker p { font-size: 15px; color: #6B7691; margin-top: 6px; max-width: 42ch; }

.wt-categorias-section { max-width: 900px; margin: 0 auto; padding-top: 8px; padding-bottom: 56px; text-align: center; }
.wt-categorias-section h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; }
.wt-categorias-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; }
.wt-chip { padding: 11px 20px; border-radius: 99px; font-size: 15px; font-weight: 700; background: var(--we-azul-mid); color: var(--we-azul-accent-2); }

.wt-como-funciona-section { max-width: 1080px; margin: 0 auto; padding-bottom: 64px; text-align: center; }
.wt-como-funciona-section h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; }
.wt-pasos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 18px; margin-top: 40px; text-align: left; }
.wt-paso { background: var(--we-card); border: 1px solid var(--we-border); border-radius: 24px; padding: 28px; }
.wt-paso-numero { width: 38px; height: 38px; border-radius: 99px; background: var(--we-azul-accent); color: #FFFFFF; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; margin-bottom: 16px; }
.wt-paso-titulo { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.wt-paso p { font-size: 15px; line-height: 1.5; color: var(--we-text-2); }

/* CTA final */

.we-cta-final-section { background: var(--we-azul-dark); padding: 18px 14px 14px; margin: 40px 0 0; }
.we-cta-final-card { position: relative; overflow: hidden; background: var(--we-azul-mid); border-radius: 38px; padding: clamp(34px, 4.4vw, 64px); }
.we-cta-final-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: clamp(28px, 3.4vw, 52px); align-items: center; max-width: 1160px; margin: 0 auto; }
.we-cta-final-titulo-lime { font-size: clamp(32px, 4.6vw, 58px); line-height: 1; font-weight: 800; color: var(--we-azul-accent-2); }
.we-cta-final-titulo-claro { font-size: clamp(26px, 3.2vw, 40px); line-height: 1.06; font-weight: 800; margin-top: 10px; color: var(--we-text); }
.we-cta-final-grid > div:first-child > p { font-size: 17px; line-height: 1.5; color: var(--we-text-2); margin: 18px 0 30px; max-width: 470px; }
.we-cta-final-botones { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.we-cta-final-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: 12px; }
.we-cta-final-stat { background: #E4EDFF; border-radius: 22px; padding: 22px 20px; }
.we-cta-final-stat-valor { font-size: 30px; font-weight: 800; color: var(--we-text); }
.we-cta-final-stat-texto { font-size: 14px; line-height: 1.4; color: #4A5876; font-weight: 600; margin-top: 6px; }
.we-cta-final-stat-destacado { background: var(--we-pop); }
.we-cta-final-stat-destacado .we-cta-final-stat-valor { color: var(--we-pop-text); }
.we-cta-final-stat-destacado .we-cta-final-stat-texto { color: var(--we-pop-text-2); }

/* Footer */

.we-footer { background: var(--we-azul-dark); color: var(--we-text); padding: 64px 28px 26px; }
.we-footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 44px 32px; }
.we-footer-col-cta { max-width: 460px; }
.we-footer-col-cta h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1; font-weight: 800; color: var(--we-azul-accent-2); }
.we-footer-col-cta p { font-size: clamp(20px, 2.4vw, 28px); line-height: 1.12; font-weight: 700; margin: 10px 0 26px; }
.we-footer-titulo { font-size: 17px; font-weight: 800; margin-bottom: 14px; }
.we-footer-contacto { display: flex; flex-direction: column; gap: 8px; }
.we-footer-contacto a, .we-footer-legal a { color: var(--we-text); font-size: 15px; }
.we-footer-legal { display: flex; flex-direction: column; gap: 8px; }
.we-footer-redes-bottom { display: flex; align-items: center; justify-content: center; gap: 14px; }
.we-footer-redes-bottom a, .we-footer-red-proximamente-bottom { display: flex; color: var(--we-text); }
.we-footer-red-proximamente-bottom { opacity: .4; cursor: default; }
.we-footer-bottom-wrap { max-width: 1200px; margin: 0 auto; }
.we-footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; margin-top: 44px; padding-top: 24px; }
.we-footer-bottom .we-footer-copy:last-child { text-align: right; }
.we-footer-logo { height: 30px; width: auto; margin-bottom: 18px; }
.we-footer-copy { font-size: 13px; color: var(--we-text-2); }
@media (max-width: 640px) {
    .we-footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 14px; }
    .we-footer-bottom .we-footer-copy:last-child { text-align: center; }
}

/* Animaciones: scroll reveal (una sola vez, front-aliados.js) */

[data-we-reveal], [data-we-reveal-load] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms var(--we-ease-out), transform 600ms var(--we-ease-out);
}
[data-we-reveal].is-visible, [data-we-reveal-load].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-we-reveal-group] > [data-we-reveal]:nth-child(2) { transition-delay: 60ms; }
[data-we-reveal-group] > [data-we-reveal]:nth-child(3) { transition-delay: 120ms; }
[data-we-reveal-group] > [data-we-reveal]:nth-child(4) { transition-delay: 180ms; }

.we-hero-h1[data-we-reveal-load] { transition-delay: 0ms; }
.we-hero-texto[data-we-reveal-load] { transition-delay: 90ms; }
.we-hero-cta-bar[data-we-reveal-load] { transition-delay: 170ms; }
.we-hero-media-wrap[data-we-reveal-load] { transition-delay: 220ms; }
.we-badge-bar[data-we-reveal-load], .we-badge-bar-mobile[data-we-reveal-load] { transition-delay: 280ms; }

@media (hover: hover) and (pointer: fine) {
    .we-plataforma-card, .wt-paso, .we-cta-final-stat {
        transition: transform 200ms var(--we-ease-out), box-shadow 200ms var(--we-ease-out);
    }
    .we-plataforma-card:hover, .wt-paso:hover { transform: translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
    [data-we-reveal], [data-we-reveal-load] { transform: none; transition: opacity 300ms ease; }
    .we-plataforma-card:hover, .wt-paso:hover { transform: none; }
}

/* Contador de las stats finales */
.we-cta-final-stat-valor[data-we-count] { font-variant-numeric: tabular-nums; }

/* Responsive */

@media (max-width: 1060px) {
    .we-only-desktop { display: none !important; }
    .we-only-mobile { display: flex !important; }
}

@media (max-width: 640px) {
    .we-pad { padding-left: 18px !important; padding-right: 18px !important; }
}
