/* Wollo para NonProfit (fundacion.wpet.casa) — duplicado de front-empresas.css
   (mismo sistema de diseño "we-"), recoloreado a rosa (#E8618A, el mismo
   rosa usado en la sección de adopción de wpet.casa) y adaptado: sin
   moneda/precios/simulador, nuevas secciones wn-* (hero kicker, demo,
   chips .gen, sin costo, requisitos). */

.we-wrap {
    --we-bg: #F6F4EE;
    --we-card: #FFFDF9;
    --we-text: #4A1029;
    --we-text-2: #8A5A68;
    --we-rosa-dark: #F6B8CD;
    --we-rosa-mid: #F8C6D6;
    --we-rosa-mid-2: #FAD6E2;
    --we-rosa-accent: #E8618A;
    --we-rosa-accent-2: #C23F68;
    --we-pop: #FDE7ED;
    --we-pop-text: #4A1029;
    --we-pop-text-2: #7F2249;
    --we-border: #F5DDE5;
    --we-track: #F3C7D6;
    --we-muted: #9C6B7A;
    --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-rosa-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: #FFFDF9; color: var(--we-rosa-accent) !important; border: 1.5px solid var(--we-rosa-accent); }
.we-btn-primary:hover { color: var(--we-rosa-accent) !important; opacity: .88; }
.we-btn-dark { background: var(--we-text); color: var(--we-bg) !important; }
.we-btn-dark:hover { color: var(--we-bg) !important; opacity: .9; }
.we-btn-outline-dark { border: 1.5px solid var(--we-text); color: var(--we-text) !important; background: transparent; }
.we-btn-outline-dark:hover { color: var(--we-text) !important; opacity: .75; }
.we-btn-outline-claro { border: 1.5px solid var(--we-rosa-accent-2); color: var(--we-text) !important; background: transparent; }
.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-rosa-accent-2); margin-bottom: 14px; }
.we-kicker-lime { color: var(--we-rosa-accent-2); }

.we-pulse-dot { width: 9px; height: 9px; border-radius: 99px; background: var(--we-rosa-accent); display: block; animation: we-pulse 2s ease-in-out infinite; }
.we-pulse-dot-lime { background: #F3B6C9; }
@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: #FDE7ED;
    border-radius: 30px;
    box-shadow: 0 22px 44px -26px rgba(74, 16, 41, .55);
    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-rosa-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: #FDE7ED;
    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-rosa-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-rosa-dark); }
.we-mobile-menu-dark a { color: var(--we-text); }
.we-mobile-menu-dark .we-mobile-login-lime { color: var(--we-rosa-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-rosa-dark); padding: 14px 14px 0; }

.we-header-notch { align-items: flex-end; gap: 0; }
.we-notch-tab { background: #FDE7ED; 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: #FDE7ED; flex: 0 0 auto; position: relative; overflow: hidden; }
.we-notch-corner span { position: absolute; inset: 0; background: var(--we-rosa-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-rosa-accent-2); }
.we-notch-nav .we-notch-login { color: var(--we-rosa-accent-2) !important; padding: 0 14px !important; }
.we-notch-nav .we-btn { margin-left: 10px; }
.we-notch-sep { width: 1px; height: 16px; background: rgba(74, 16, 41, .2); 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; padding: 0 0 16px; }
.we-mobile-menu-overlay { position: absolute; top: 100%; left: 0; right: 0; z-index: 50; }
.we-header-mobile-tab { background: #FDE7ED; 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: #FDE7ED; flex: 0 0 auto; position: relative; overflow: hidden; }
.we-header-mobile-corner span { position: absolute; inset: 0; background: var(--we-rosa-dark); border-bottom-left-radius: 22px; display: block; }
.we-header-mobile-cta { margin-left: auto; }

.we-shell { background: #FDE7ED; 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-rosa-accent); }
.we-words > span { position: absolute; left: 0; top: 0; opacity: 0; white-space: nowrap; animation: we-word 16.1s 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: #8A5A68; 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(35, 56, 30, .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: #FBE3EA; color: var(--we-rosa-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(74, 16, 41, .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(74, 16, 41, .55), rgba(74, 16, 41, 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(74, 16, 41, .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-rosa-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: #FDE7ED; 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-rosa-accent); color: #FFFDF9; 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: #9C6B7A; }
.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-rosa-accent-2); flex-wrap: wrap; }
.we-badge-dot { width: 5px; height: 5px; border-radius: 99px; background: rgba(74, 16, 41, .25); display: block; }
.we-badge-bar-mobile { align-items: center; gap: 12px; background: #FDE7ED; 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 */

.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-rosa-mid); border-radius: 24px; padding: 26px; }
.we-plataforma-kicker { font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--we-rosa-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); }

/* Funciones (carrusel) */

.we-funciones { padding: 56px 0 24px; }
.we-funciones-header { max-width: 1200px; margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.we-funciones-header h2 { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.04; font-weight: 800; max-width: 640px; }
.we-funciones-controles { display: flex; align-items: center; gap: 14px; }
.we-funciones-hint { font-size: 14px; font-weight: 600; color: var(--we-muted); }
.we-funciones-controles button { width: 46px; height: 46px; border-radius: 99px; border: 1.5px solid var(--we-text); background: transparent; color: var(--we-text); font-size: 18px; font-weight: 700; cursor: pointer; font-family: Archivo, sans-serif; }
#we-rail-next { background: var(--we-text); color: var(--we-bg); }

.we-rail { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 34px 28px; cursor: grab; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.we-rail:active { cursor: grabbing; }
.we-rail::-webkit-scrollbar { height: 6px; }
.we-rail::-webkit-scrollbar-track { background: #F5DDE5; border-radius: 99px; }
.we-rail::-webkit-scrollbar-thumb { background: var(--we-rosa-accent); border-radius: 99px; }

.we-rail-card { scroll-snap-align: center; flex: 0 0 auto; width: min(92vw, 1080px); background: var(--we-card); border: 1px solid var(--we-border); border-radius: 26px; overflow: hidden; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); user-select: none; transition: transform 250ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 250ms cubic-bezier(0.23, 1, 0.32, 1); }
@media (hover: hover) and (pointer: fine) {
    .we-rail-card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -28px rgba(74, 16, 41, .35); }
}
.we-rail-media { position: relative; width: 100%; aspect-ratio: 4 / 3; max-height: 42vh; align-self: start; background: #FCE9EF; }
.we-rail-media img { width: 100%; height: 100%; object-fit: cover; }
.we-rail-texto { padding: clamp(20px, 2.6vw, 36px); display: flex; flex-direction: column; justify-content: center; }
.we-rail-numero { font-size: 13px; font-weight: 800; letter-spacing: .12em; color: var(--we-rosa-accent); }
.we-rail-texto h3 { font-size: clamp(22px, 2.6vw, 32px); line-height: 1.08; font-weight: 800; margin: 10px 0 8px; }
.we-rail-texto p { font-size: 16px; line-height: 1.45; color: #8A5A68; max-width: 46ch; }

.we-rail-dots { max-width: 1200px; margin: 0 auto; display: flex; gap: 8px; }
.we-rail-dots button { width: 10px; height: 10px; border-radius: 99px; border: none; padding: 0; cursor: pointer; background: var(--we-track); transition: width .25s ease, background .25s ease; }
.we-rail-dots button.is-active { width: 32px; background: var(--we-rosa-accent); }

/* IADN */

.we-iadn-section { background: var(--we-bg); padding: 18px 14px; margin: 40px 0 0; }
.we-iadn-card { position: relative; overflow: hidden; background: var(--we-pop); border-radius: 38px; padding: clamp(30px, 4vw, 60px); }
.we-iadn-blob-1 { position: absolute; top: -60px; left: -40px; width: 260px; height: 120px; border: 34px solid var(--we-rosa-dark); border-radius: 99px; opacity: .14; transform: rotate(-18deg); pointer-events: none; }
.we-iadn-blob-2 { position: absolute; bottom: -70px; right: 34%; width: 300px; height: 140px; border: 34px solid #FFFDF7; border-radius: 99px; opacity: .5; transform: rotate(12deg); pointer-events: none; }
.we-iadn-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: clamp(30px, 4vw, 56px); align-items: center; max-width: 1160px; margin: 0 auto; }
.we-iadn-kicker { font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #7F2249; }
.we-iadn-grid h2 { font-size: clamp(36px, 5vw, 64px); line-height: .98; font-weight: 800; margin: 16px 0 0; color: var(--we-pop-text); }
.we-iadn-grid > div:first-child > p { font-size: 18px; line-height: 1.5; color: #7F2249; margin: 20px 0 0; max-width: 460px; }
.we-iadn-media-wrap { position: relative; padding: 0 0 40px; }
.we-iadn-media { position: relative; border-radius: 30px; overflow: hidden; height: clamp(360px, 46vw, 520px); transform: rotate(2.5deg); box-shadow: 0 34px 70px -34px rgba(74, 16, 41, .55); }
.we-iadn-media img { width: 100%; height: 100%; object-fit: cover; }
.we-iadn-card-flotante { position: absolute; right: -8px; bottom: 0; max-width: 330px; background: var(--we-card); border-radius: 22px; padding: 20px 22px; box-shadow: 0 26px 50px -26px rgba(74, 16, 41, .5); }
.we-iadn-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.we-iadn-avatar { width: 30px; height: 30px; border-radius: 99px; background: var(--we-rosa-accent); color: var(--we-pop-text); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; }
.we-iadn-nombre { font-size: 14px; font-weight: 700; color: var(--we-text); }
.we-iadn-badge { margin-left: auto; background: var(--we-pop); color: var(--we-pop-text-2); border-radius: 99px; padding: 4px 10px; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.we-iadn-respuesta { font-size: 18px; line-height: 1.35; font-weight: 700; color: var(--we-pop-text); }
.we-iadn-fuente { font-size: 13px; line-height: 1.45; color: #9C6B7A; margin-top: 10px; }

/* Ahorro */

.we-ahorro-section { max-width: 1200px; margin: 0 auto; padding-top: 80px; padding-bottom: 40px; }
.we-ahorro-header { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.we-ahorro-header h2 { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.05; font-weight: 800; }
.we-ahorro-header p { font-size: 18px; color: #8A5A68; margin-top: 16px; }
.we-ahorro-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)); gap: 20px; align-items: stretch; }
.we-ahorro-form { background: var(--we-card); border: 1px solid var(--we-border); border-radius: 28px; padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 30px; }
.we-ahorro-presets { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 130px), 1fr)); gap: 10px; }
.we-ahorro-presets button { text-align: left; padding: 16px 18px; border-radius: 18px; cursor: pointer; font-family: Archivo, sans-serif; border: 1.5px solid var(--we-border); background: var(--we-bg); color: var(--we-text); }
.we-ahorro-presets button.is-active { border-color: var(--we-rosa-accent); background: #FBE3EA; }
.we-preset-label { font-size: 16px; font-weight: 700; display: block; }
.we-preset-sub { font-size: 13px; font-weight: 600; color: #9C6B7A; }
.we-ahorro-presets button.is-active .we-preset-sub { color: var(--we-rosa-accent-2); }
.we-ahorro-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.we-ahorro-row span:first-child { font-size: 16px; font-weight: 600; }
.we-ahorro-mascotas-val { font-size: 26px; font-weight: 800; color: var(--we-text); }
.we-ahorro-row-personas { margin-top: 18px; align-items: center; }
.we-ahorro-personas-control { display: flex; align-items: center; gap: 6px; }
.we-ahorro-personas-control button { width: 44px; height: 44px; border-radius: 99px; border: 1.5px solid var(--we-track); background: var(--we-bg); font-size: 22px; font-weight: 700; color: var(--we-text); cursor: pointer; font-family: Archivo, sans-serif; line-height: 1; }
#we-ahorro-personas-val { min-width: 46px; text-align: center; font-size: 26px; font-weight: 800; color: var(--we-text); }
.we-ahorro-nota { font-size: 13px; color: #9C6B7A; line-height: 1.5; margin-top: auto; }

.we-ahorro-resultado { background: var(--we-rosa-dark); border-radius: 28px; padding: clamp(26px, 3vw, 38px); color: var(--we-text); display: flex; flex-direction: column; }
.we-ahorro-cards { display: flex; flex-direction: column; gap: 12px; margin: 0; flex: 1; }
.we-ahorro-mini-card { background: var(--we-rosa-mid); border-radius: 18px; padding: 20px 22px; display: flex; align-items: center; gap: 18px; }
.we-ahorro-mini-card span:first-child { font-size: 34px; font-weight: 800; min-width: 92px; }
.we-ahorro-mini-card span:last-child { font-size: 15px; color: var(--we-text-2); line-height: 1.4; }
.we-ahorro-cta { display: flex; text-align: center; justify-content: center; margin-top: 24px; }

input[type=range] { -webkit-appearance: none; appearance: none; height: 34px; background: transparent; width: 100%; }
input[type=range]::-webkit-slider-runnable-track { height: 6px; border-radius: 99px; background: var(--we-track); }
input[type=range].we-fill::-webkit-slider-runnable-track { background: transparent; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; margin-top: -10px; border-radius: 99px; background: var(--we-rosa-accent); border: 4px solid var(--we-bg); box-shadow: 0 2px 8px rgba(0, 0, 0, .25); cursor: grab; }
input[type=range]::-moz-range-track { height: 6px; border-radius: 99px; background: var(--we-track); }
input[type=range]::-moz-range-thumb { width: 26px; height: 26px; border-radius: 99px; background: var(--we-rosa-accent); border: 4px solid var(--we-bg); box-shadow: 0 2px 8px rgba(0, 0, 0, .25); cursor: grab; }

/* NonProfit: hero kicker, demo, .gen chips, sin costo, requisitos, impacto */

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

.wn-demo-section { max-width: 1200px; margin: 0 auto; padding-top: 8px; padding-bottom: 56px; }
.wn-demo-card { background: var(--we-rosa-dark); border-radius: 32px; padding: clamp(28px, 3.6vw, 48px); color: var(--we-text); text-align: center; }
.wn-demo-card h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; margin: 8px 0; }
.wn-demo-card > p { font-size: 17px; color: var(--we-text-2); max-width: 560px; margin: 0 auto 28px; }
.wn-demo-stat { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--we-rosa-accent-2); }
.wn-demo-stat-sub { font-size: 15px; color: var(--we-text-2); margin-top: 6px; }

.wn-iadn-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; }
.wn-iadn-chip { padding: 10px 16px; border-radius: 99px; font-size: 14px; font-weight: 600; border: 1.5px solid rgba(255, 253, 247, .3); background: rgba(255, 253, 247, .12); color: var(--we-pop-text-2); }

.wn-sin-costo-section, .wn-requisitos-section { max-width: 900px; margin: 0 auto; padding-top: 56px; padding-bottom: 8px; }
.wn-sin-costo-card, .wn-requisitos-card { background: var(--we-card); border: 1px solid var(--we-border); border-radius: 32px; padding: clamp(28px, 3.6vw, 48px); text-align: center; }
.wn-sin-costo-card h2, .wn-requisitos-card h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; margin-bottom: 14px; }
.wn-sin-costo-card > p, .wn-requisitos-card > p { font-size: 17px; line-height: 1.5; color: #8A5A68; max-width: 640px; margin: 0 auto; }
.wn-sin-costo-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 12px; margin: 32px 0; text-align: left; }
.wn-sin-costo-items div { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--we-text); }
.wn-sin-costo-items span { width: 22px; height: 22px; border-radius: 99px; background: var(--we-pop); color: var(--we-pop-text-2); font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.wn-sin-costo-card .we-btn { margin-top: 8px; }

.wn-requisito-item { display: flex; align-items: center; justify-content: center; gap: 14px; background: var(--we-pop); border-radius: 20px; padding: 20px 26px; margin: 28px 0 18px; font-size: 17px; font-weight: 700; color: var(--we-pop-text); }
.wn-requisito-check { width: 30px; height: 30px; border-radius: 99px; background: var(--we-rosa-accent); color: #FFFDF7; font-size: 15px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.wn-requisito-nota { font-size: 14px !important; color: #9C6B7A !important; }

.wn-impacto-titulo { font-size: clamp(30px, 3.6vw, 42px); font-weight: 800; line-height: 1.05; margin: 8px 0 24px; }
.wn-impacto-ciudad-input { width: 100%; border: 1px solid var(--we-border); border-radius: 14px; padding: 14px 16px; background: var(--we-bg); font-family: Archivo, sans-serif; font-size: 16px; font-weight: 600; color: var(--we-text); outline: none; }

/* FAQ */

.we-faq-section { max-width: 900px; margin: 0 auto; padding-top: 64px; padding-bottom: 64px; }
.we-faq-section h2 { font-size: clamp(28px, 3.8vw, 40px); font-weight: 800; margin-bottom: 28px; text-align: center; }
.we-faq-item { border-bottom: 1px solid var(--we-border); padding: 8px 0; }
.we-faq-item summary { cursor: pointer; padding: 14px 0; display: flex; align-items: center; gap: 20px; font-size: 19px; font-weight: 700; list-style: none; }
.we-faq-item summary::-webkit-details-marker { display: none; }
.we-faq-item summary::after { content: "+"; margin-left: auto; font-size: 26px; font-weight: 400; color: var(--we-rosa-accent); }
.we-faq-item p { font-size: 17px; line-height: 1.6; color: #8A5A68; margin: 0 0 24px; max-width: 720px; }

/* CTA final */

.we-cta-final-section { background: var(--we-rosa-dark); padding: 18px 14px 14px; margin: 40px 0 0; }
.we-cta-final-card { position: relative; overflow: hidden; background: var(--we-rosa-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-rosa-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: #FDE7ED; 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: #8A5A68; 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-rosa-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-rosa-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-titulo-mt { margin-top: 30px; }
.we-footer-contacto { display: flex; flex-direction: column; gap: 8px; margin-bottom: 30px; }
.we-footer-contacto a, .we-footer-legal a { color: var(--we-rosa-accent-2); font-size: 15px; }
.we-footer-redes { display: flex; flex-direction: column; gap: 10px; }
.we-footer-redes a { color: var(--we-rosa-accent-2); font-size: 15px; display: flex; align-items: center; gap: 12px; }
.we-footer-red-icono { width: 26px; height: 26px; border-radius: 8px; background: var(--we-rosa-accent); display: flex; align-items: center; justify-content: center; color: #FFFDF9; flex: 0 0 auto; }
.we-footer-red-proximamente { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #C98BA0; cursor: default; }
.we-footer-legal { display: flex; flex-direction: column; gap: 8px; }
.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-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-rosa-accent-2); }
.we-footer-red-proximamente-bottom { opacity: .45; cursor: default; }
.we-footer-logo { height: 30px; width: auto; margin-bottom: 18px; }
.we-footer-copy { font-size: 13px; color: var(--we-text); }
@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: fires once via IntersectionObserver (front-empresas.js), marketing-only, never re-triggers.
   data-we-reveal-load is the same effect but fired immediately on page load (front-empresas.js), for
   above-the-fold content — IntersectionObserver is unreliable right at the fold's edge. */
[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; }

/* Hero: cascada de arriba hacia abajo al cargar la página */
.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; }

/* Hover lift: cards the user scans, not cards they operate all day. */
@media (hover: hover) and (pointer: fine) {
    .we-plataforma-card,
    .we-ahorro-mini-card,
    .we-cta-final-stat {
        transition: transform 200ms var(--we-ease-out), box-shadow 200ms var(--we-ease-out);
    }
    .we-plataforma-card:hover { transform: translateY(-3px); }
}

/* Botones de selección (presets, dots): feedback de presión */
.we-ahorro-presets button,
.we-rail-dots button,
#wn-impacto-menos, #wn-impacto-mas {
    transition: transform 140ms var(--we-ease-out), background 160ms var(--we-ease-out), color 160ms var(--we-ease-out), border-color 160ms var(--we-ease-out);
}
.we-ahorro-presets button:active,
#wn-impacto-menos:active, #wn-impacto-mas:active {
    transform: scale(0.96);
}

/* FAQ: acordeón animado (grid-rows en vez de display:none nativo de <details>) */
.we-faq-content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 250ms var(--we-ease-out);
}
.we-faq-item[open] .we-faq-content { grid-template-rows: 1fr; }
.we-faq-content > p {
    overflow: hidden;
    opacity: 0;
    transition: opacity 150ms var(--we-ease-out);
}
.we-faq-item[open] .we-faq-content > p {
    opacity: 1;
    transition-delay: 90ms;
}
.we-faq-item summary::after {
    display: inline-block;
    transition: transform 200ms var(--we-ease-out);
}
.we-faq-item[open] summary::after { content: "+"; transform: rotate(45deg); }

/* Contador de las stats finales: solo el número anima, una vez, al entrar en vista */
.we-cta-final-stat-valor[data-we-count] { font-variant-numeric: tabular-nums; }

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

/* Responsive */

@media (max-width: 1060px) {
    .we-only-desktop { display: none !important; }
    .we-only-mobile { display: flex !important; }
    .we-rail { scroll-snap-type: x mandatory; }
}

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

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