/* ============================================================
   CHAIRMONKEY — Tema claro con acentos teal/azul
   ============================================================ */

/* ======================
   CSS VARIABLES
   ====================== */
:root {
    --bg-primary:      #f7f8fb;
    --bg-secondary:    #eef1f5;
    --bg-card:         #ffffff;
    --bg-card-hover:   #f3f5f9;
    --bg-elevated:     #ffffff;

    --text-primary:    #1a1f2e;
    --text-secondary:  #555e70;
    --text-muted:      #8e96a6;

    --accent-1:        #00b894;
    --accent-2:        #0098b8;
    --accent-3:        #006da0;

    --gradient-main:   linear-gradient(135deg, #00b894 0%, #0098b8 50%, #006da0 100%);
    --gradient-glow:   linear-gradient(135deg, rgba(0,184,148,.12) 0%, rgba(0,152,184,.06) 100%);

    --border:          rgba(0,0,0,.07);
    --border-hover:    rgba(0,184,148,.35);

    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  22px;
    --radius-xl:  32px;

    --shadow-card:  0 2px 12px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
    --shadow-glow:  0 0 40px rgba(0,184,148,.08);

    --font-display:  'DM Sans', sans-serif;
    --font-body:     'Outfit', sans-serif;

    --nav-height:     72px;
    --container-max:  1200px;
}


/* ======================
   RESET & BASE
   ====================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400; font-size: 16px;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.65; overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }
::selection { background: rgba(0,184,148,.2); color: #fff; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }


/* ======================
   LAYOUT UTILITIES
   ====================== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.center { text-align: center; }
.mw-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

.placeholder-fase {
    text-align: center; padding: 80px 0; font-size: .9rem; font-weight: 500;
    color: var(--text-muted); letter-spacing: .05em;
    border: 1px dashed rgba(0,0,0,.1); border-radius: var(--radius-md);
}


/* ======================
   SHARED TYPOGRAPHY
   ====================== */
.eyebrow {
    font-family: var(--font-display);
    font-size: .76rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .16em;
    color: var(--accent-1); margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800; line-height: 1.12;
    letter-spacing: -.03em; margin-bottom: 24px;
}

.body-text {
    font-size: 1.02rem; color: var(--text-secondary);
    line-height: 1.78; margin-bottom: 18px;
}
.body-text:last-child { margin-bottom: 0; }

.tag {
    display: inline-block; padding: 4px 13px;
    font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--accent-1); background: rgba(0,184,148,.08);
    border-radius: 100px; margin-bottom: 16px;
}

.card-link {
    display: inline-block; font-size: .9rem; font-weight: 600;
    color: var(--accent-1); transition: color .25s ease;
}
.card-link:hover { color: var(--accent-2); }


/* ======================
   BUTTONS
   ====================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 15px 34px;
    font-family: var(--font-body); font-size: .95rem; font-weight: 600;
    border-radius: 100px; border: none; cursor: pointer;
    transition: transform .25s ease, box-shadow .35s ease, opacity .25s ease, background .3s ease;
}

.btn-primary {
    color: #fff; background: var(--gradient-main);
    box-shadow: 0 4px 20px rgba(0,184,148,.22);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,184,148,.30), 0 0 0 1px rgba(0,184,148,.12);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
    color: var(--text-secondary); background: transparent;
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    color: var(--text-primary); border-color: rgba(0,0,0,.14);
    background: rgba(0,0,0,.02);
}

.btn-arrow { display: inline-block; transition: transform .25s ease; }
.btn-ghost:hover .btn-arrow { transform: translateX(4px); }

.btn-full { width: 100%; }


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-height); z-index: 1000;
    transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease;
}

.navbar.scrolled {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,.06);
}

.nav-container {
    max-width: var(--container-max); margin: 0 auto; padding: 0 24px;
    height: 100%; display: flex; align-items: center;
    justify-content: space-between; gap: 24px;
}

.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.12rem; letter-spacing: -.02em;
    z-index: 10; flex-shrink: 0;
}

.logo-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--gradient-main); color: #fff;
    font-size: .72rem; font-weight: 800;
    transition: transform .3s ease, box-shadow .3s ease;
}

.nav-logo:hover .logo-icon {
    transform: scale(1.06); box-shadow: 0 0 20px rgba(0,184,148,.20);
}

.nav-menu { display: flex; align-items: center; gap: 2px; }

.nav-link {
    display: flex; align-items: center; gap: 5px;
    padding: 8px 14px; font-size: .87rem; font-weight: 500;
    color: var(--text-secondary); border-radius: var(--radius-sm);
    transition: color .25s ease, background .25s ease;
    white-space: nowrap; position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary); background: rgba(0,0,0,.04);
}

.nav-link.active::after {
    content: ''; position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 2px; background: var(--gradient-main); border-radius: 2px;
}

.dropdown-arrow { transition: transform .3s ease; flex-shrink: 0; }
.nav-dropdown { position: relative; }

.dropdown-menu {
    position: absolute; top: calc(100% + 10px);
    left: 50%; transform: translateX(-50%) translateY(8px);
    min-width: 200px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 8px; opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    box-shadow: var(--shadow-card);
}

.dropdown-menu::before {
    content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu li a {
    display: block; padding: 10px 16px; font-size: .87rem; font-weight: 500;
    color: var(--text-secondary); border-radius: var(--radius-sm);
    transition: color .2s ease, background .2s ease;
}

.dropdown-menu li a:hover {
    color: var(--accent-1); background: rgba(0,184,148,.06);
}

.nav-cta {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 9px 24px; font-size: .87rem; font-weight: 600;
    color: #fff; background: var(--gradient-main);
    border-radius: 100px; flex-shrink: 0;
    transition: opacity .25s ease, transform .2s ease, box-shadow .3s ease;
}

.nav-cta:hover {
    opacity: .92; transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,184,148,.22);
}

.nav-toggle {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; padding: 8px; z-index: 1010;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--text-primary); border-radius: 2px;
    transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-overlay {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(30px) saturate(1.2);
    -webkit-backdrop-filter: blur(30px) saturate(1.2);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity .4s cubic-bezier(.4,0,.2,1), visibility .4s;
}

.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu { text-align: center; padding: 24px; width: 100%; max-width: 400px; }
.mobile-menu-list { margin-bottom: 48px; }

.mobile-link {
    display: block; padding: 14px 0;
    font-family: var(--font-display); font-size: 1.65rem; font-weight: 700;
    color: var(--text-secondary); letter-spacing: -.02em;
    transition: color .25s ease, transform .25s ease;
}

.mobile-link:hover { color: var(--text-primary); transform: translateX(6px); }
.mobile-link--cta { color: var(--accent-1); }
.mobile-link--cta:hover { color: var(--accent-2); }

.mobile-menu-divider { width: 40px; height: 1px; background: var(--border); margin: 16px auto; }

.mobile-overlay.open .mobile-link { animation: mobileSlideIn .4s ease-out both; }
.mobile-overlay.open .mobile-menu-list li:nth-child(1) .mobile-link { animation-delay: .05s; }
.mobile-overlay.open .mobile-menu-list li:nth-child(2) .mobile-link { animation-delay: .10s; }
.mobile-overlay.open .mobile-menu-list li:nth-child(3) .mobile-link { animation-delay: .15s; }
.mobile-overlay.open .mobile-menu-list li:nth-child(4) .mobile-link { animation-delay: .20s; }
.mobile-overlay.open .mobile-menu-list li:nth-child(5) .mobile-link { animation-delay: .25s; }
.mobile-overlay.open .mobile-menu-list li:nth-child(6) .mobile-link { animation-delay: .30s; }
.mobile-overlay.open .mobile-menu-list li:nth-child(7) .mobile-link { animation-delay: .32s; }
.mobile-overlay.open .mobile-menu-list li:nth-child(8) .mobile-link { animation-delay: .35s; }

@keyframes mobileSlideIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu-footer { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu-footer a { font-size: .88rem; color: var(--text-muted); transition: color .25s ease; }
.mobile-menu-footer a:hover { color: var(--accent-1); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center; padding: 140px 24px 60px; overflow: hidden;
}

.hero-canvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}

.hero-glow {
    position: absolute; inset: 0;
    background: radial-gradient(
        ellipse 70% 55% at 50% 30%,
        rgba(0,152,184,.07) 0%, rgba(0,184,148,.03) 40%, transparent 70%
    );
    pointer-events: none; z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 780px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px; font-size: .8rem; font-weight: 600; letter-spacing: .03em;
    color: var(--accent-1); background: rgba(0,184,148,.07);
    border: 1px solid rgba(0,184,148,.20); border-radius: 100px;
    margin-bottom: 36px;
    animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) both;
}

.badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent-1); box-shadow: 0 0 8px rgba(0,184,148,.4);
    animation: pulseDot 2.4s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .45; transform: scale(.75); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.8vw, 4.6rem);
    font-weight: 800; line-height: 1.06; letter-spacing: -.035em;
    margin-bottom: 26px;
    animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .12s both;
}

.hero-subtitle {
    font-size: 1.12rem; font-weight: 400; color: var(--text-secondary);
    line-height: 1.75; max-width: 600px; margin: 0 auto 42px;
    animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .24s both;
}

.hero-actions {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
    animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .36s both;
}

.hero-stats {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    gap: 52px; margin-top: 84px; padding-top: 44px;
    border-top: 1px solid var(--border);
    animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .5s both;
}

.stat-item { text-align: center; }

.stat-number {
    display: block; font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 800; line-height: 1;
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.stat-label { display: block; margin-top: 10px; font-size: .83rem; font-weight: 500; color: var(--text-muted); }
.stat-divider { width: 1px; height: 52px; background: var(--border); flex-shrink: 0; }

.hero-scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 2; opacity: .4;
    animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .7s both;
}

.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--accent-1), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: .4; transform: scaleY(1); }
    50%      { opacity: .8; transform: scaleY(1.15); }
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   LOGOS MARQUEE BAR
   ============================================================ */
.logos-bar {
    padding: 28px 0;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: var(--bg-secondary); overflow: hidden;
}

.logos-track { display: flex; width: max-content; animation: marqueeScroll 22s linear infinite; }

.logos-slide { display: flex; gap: 56px; padding: 0 28px; align-items: center; }

.logo-item {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 800;
    color: var(--text-muted); white-space: nowrap;
    letter-spacing: .1em; text-transform: uppercase;
    opacity: .4; transition: opacity .3s ease; user-select: none;
}

.logo-item:hover { opacity: .8; }

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */
.section--about { background: var(--bg-primary); }

.about-grid {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 64px; align-items: start; margin-top: 8px;
}

.about-cards { display: flex; flex-direction: column; gap: 20px; }

.info-card {
    padding: 28px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-md);
    transition: border-color .35s ease, transform .35s ease, box-shadow .4s ease;
}

.info-card:hover {
    border-color: var(--border-hover); transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.info-card__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    background: rgba(0,184,148,.07); color: var(--accent-1); margin-bottom: 16px;
}

.info-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.info-card p { font-size: .9rem; color: var(--text-secondary); line-height: 1.65; }


/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.section--products { background: var(--bg-secondary); }

.process-bar {
    margin: 56px 0 0; padding: 52px 0; background: var(--bg-card);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}

.process-bar__title {
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
    text-align: center; margin-bottom: 44px;
}

.process-steps { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; }

.process-step { display: flex; align-items: flex-start; gap: 20px; padding: 20px 28px; max-width: 320px; }

.process-step__num {
    font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; line-height: 1; flex-shrink: 0;
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.process-step__body h4 { font-family: var(--font-display); font-size: .98rem; font-weight: 700; margin-bottom: 6px; }
.process-step__body p { font-size: .86rem; color: var(--text-secondary); line-height: 1.65; }

.process-connector {
    width: 48px; height: 2px; margin-top: 20px;
    background: var(--gradient-main); opacity: .25; flex-shrink: 0; align-self: center;
}

.products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }

.product-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: border-color .4s ease, transform .4s ease, box-shadow .45s ease;
}

.product-card:hover {
    border-color: var(--border-hover); transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,.08), var(--shadow-glow);
}

.product-card__visual {
    position: relative; height: 210px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    background: linear-gradient(180deg, rgba(0,184,148,.04) 0%, transparent 100%);
}

.product-card__visual--alt {
    background: linear-gradient(180deg, rgba(0,152,184,.04) 0%, transparent 100%);
}

.product-card__svg {
    position: relative; z-index: 2; color: var(--accent-1); opacity: .5;
    transition: opacity .4s ease, transform .4s ease;
}

.product-card:hover .product-card__svg { opacity: .75; transform: scale(1.08); }
.product-card__visual--alt .product-card__svg { color: var(--accent-2); }

.product-card__glow {
    position: absolute; width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,184,148,.08) 0%, transparent 70%); filter: blur(40px);
}

.product-card__glow--alt {
    background: radial-gradient(circle, rgba(0,152,184,.08) 0%, transparent 70%);
}

.product-card__info { padding: 32px; }

.product-card__info h3 {
    font-family: var(--font-display); font-size: 1.55rem;
    font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px;
}

.product-card__info p { font-size: .94rem; color: var(--text-secondary); line-height: 1.72; margin-bottom: 22px; }

.testimonial {
    max-width: 700px; margin: 80px auto 0; padding: 48px 44px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); text-align: center;
}

.testimonial__quote {
    font-family: var(--font-display); font-size: 5rem; line-height: 1;
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    opacity: .35; margin-bottom: -18px; user-select: none;
}

.testimonial__text { font-size: 1.12rem; font-style: italic; color: var(--text-primary); line-height: 1.72; margin-bottom: 30px; }

.testimonial__author { display: flex; align-items: center; justify-content: center; gap: 14px; }

.testimonial__avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-main);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: .82rem; flex-shrink: 0;
}

.testimonial__meta strong { display: block; font-size: .92rem; }
.testimonial__meta span { font-size: .8rem; color: var(--text-muted); }


/* ============================================================
   TEAM SECTION
   ============================================================ */
.section--team { background: var(--bg-primary); }

.team-subtitle {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
    color: var(--text-secondary); margin: 52px 0 26px;
    padding-bottom: 14px; border-bottom: 1px solid var(--border);
}

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.team-card {
    text-align: center; padding: 40px 24px 32px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md);
    transition: border-color .35s ease, transform .35s ease, box-shadow .4s ease;
}

.team-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.team-card__avatar { margin-bottom: 22px; }

.avatar-circle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 76px; height: 76px; border-radius: 50%;
    background: var(--gradient-main); color: #fff;
    font-family: var(--font-display); font-size: 1rem; font-weight: 800;
    box-shadow: 0 6px 20px rgba(0,184,148,.18);
    transition: transform .35s ease, box-shadow .35s ease;
}

.team-card:hover .avatar-circle { transform: scale(1.06); box-shadow: 0 10px 30px rgba(0,184,148,.25); }

.avatar-circle--alt1 { background: linear-gradient(135deg, #0098b8 0%, #006da0 100%); box-shadow: 0 6px 20px rgba(0,152,184,.18); }
.avatar-circle--alt2 { background: linear-gradient(135deg, #006da0 0%, #00b894 100%); box-shadow: 0 6px 20px rgba(0,109,160,.18); }

.team-card h4 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; margin-bottom: 6px; }

.team-card__role { display: block; font-size: .82rem; font-weight: 600; color: var(--accent-1); margin-bottom: 14px; }
.team-card__bio { font-size: .86rem; color: var(--text-muted); line-height: 1.6; }

.investors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }

.investor-chip {
    display: flex; align-items: center; gap: 14px; padding: 16px 20px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
    transition: border-color .3s ease, transform .3s ease;
}

.investor-chip:hover { border-color: var(--border-hover); transform: translateY(-2px); }

.investor-chip__avatar {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(0,184,148,.08); color: var(--accent-1);
    font-family: var(--font-display); font-size: .72rem; font-weight: 700; flex-shrink: 0;
}

.investor-chip__name { font-size: .9rem; font-weight: 500; line-height: 1.35; }


/* ============================================================
   ADVISORS SECTION
   ============================================================ */
.section--advisors { background: var(--bg-secondary); }

.advisors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }

.advisor-card {
    padding: 40px 28px 32px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-md); text-align: center;
    transition: border-color .35s ease, transform .35s ease, box-shadow .4s ease;
}

.advisor-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--shadow-glow); }

.advisor-card__photo {
    display: inline-flex; align-items: center; justify-content: center;
    width: 80px; height: 80px; border-radius: 50%;
    background: rgba(0,184,148,.05); color: var(--text-muted); margin-bottom: 22px;
    transition: background .3s ease;
}

.advisor-card:hover .advisor-card__photo { background: rgba(0,184,148,.09); }

.advisor-card h4 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; margin-bottom: 6px; }
.advisor-card__org { display: block; font-size: .8rem; font-weight: 600; color: var(--accent-2); margin-bottom: 14px; }
.advisor-card p { font-size: .88rem; color: var(--text-secondary); line-height: 1.65; }


/* ============================================================
   HERO MANIFESTO  (Punto 8)
   ============================================================ */
.hero-manifesto {
    font-size: 1.08rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 36px;
    animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .3s both;
}

.hero-manifesto strong {
    color: var(--text-primary);
    font-style: normal;
}


/* ============================================================
   LIMITATIONS GRID  (Punto 10)
   ============================================================ */
.limitations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 800px;
    margin: 48px auto 32px;
}

.limitation-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .92rem;
    color: var(--text-secondary);
    transition: border-color .3s ease;
}

.limitation-item:hover { border-color: #e05555; }

.limitation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(224,85,85,.08);
    color: #e05555;
    font-size: .85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.limitation-footer {
    margin-top: 12px;
    font-size: .94rem;
}

.body-text--emphasis {
    margin-top: 8px;
}


/* ============================================================
   SOLUTION / BENEFITS GRID  (Punto 11)
   ============================================================ */
.section--solution {
    background: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 800px;
    margin: 48px auto 32px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color .3s ease, transform .3s ease;
}

.benefit-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(0,184,148,.08);
    color: var(--accent-1);
    font-size: .82rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.benefit-item span {
    font-size: .84rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.solution-goal {
    margin-top: 12px;
}


/* ============================================================
   DEVELOPMENT SECTION  (Punto 12)
   ============================================================ */
.section--dev {
    background: var(--bg-secondary);
}

.dev-closing {
    margin-top: 40px;
}


/* ============================================================
   PHILOSOPHY SECTION  (Punto 13)
   ============================================================ */
.section--philosophy {
    background: var(--bg-primary);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 52px;
}

.principle-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color .35s ease, transform .35s ease, box-shadow .4s ease;
}

.principle-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.principle-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.principle-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.principle-card p {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}


/* ============================================================
   VISION SECTION  (Punto 14)
   ============================================================ */
.section--vision {
    background: var(--bg-secondary);
}

.vision-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.vision-goals {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vision-goal {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .94rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: border-color .3s ease, transform .3s ease;
}

.vision-goal:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.vision-goal svg { flex-shrink: 0; }


/* ============================================================
   STATUS SECTION  (Punto 15)
   ============================================================ */
.section--status {
    background: var(--bg-primary);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 48px 0 32px;
}

.status-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: border-color .35s ease, transform .35s ease, box-shadow .4s ease;
}

.status-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.status-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(0,184,148,.07);
    color: var(--accent-1);
    margin-bottom: 18px;
}

.status-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.status-card p {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.status-closing {
    margin-top: 12px;
}


/* ============================================================
   ENDORSEMENT / WORLD MAP SECTION  (Punto 7)
   ============================================================ */
.section--endorsement { background: var(--bg-primary); }

.worldmap {
    max-width: 860px;
    margin: 56px auto 0;
    text-align: center;
}

.worldmap__svg {
    width: 100%;
    height: auto;
}

.worldmap__label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    fill: var(--text-secondary);
}

.worldmap__caption {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 12px 24px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
}

.worldmap__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-1);
    box-shadow: 0 0 8px rgba(0,184,148,.4);
    flex-shrink: 0;
    animation: pulseDot 2.4s ease-in-out infinite;
}


/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.section--partners { background: var(--bg-secondary); }

.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }

.partner-card {
    padding: 36px 24px 30px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-md); text-align: center;
    transition: border-color .35s ease, transform .35s ease, box-shadow .4s ease;
}

.partner-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--shadow-glow); }

.partner-card__logo {
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
    letter-spacing: .06em; margin-bottom: 16px;
    background: var(--gradient-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.partner-card__logo--alt1 { background: linear-gradient(135deg, #0098b8 0%, #006da0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.partner-card__logo--alt2 { background: linear-gradient(135deg, #006da0 0%, #00b894 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.partner-card__logo--alt3 { background: linear-gradient(135deg, #00b894 0%, #006da0 80%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.partner-card p { font-size: .84rem; color: var(--text-secondary); line-height: 1.65; }


/* ============================================================
   INVESTORS SECTION  (Fase 5)
   ============================================================ */
.section--investors { background: var(--bg-primary); }

.inv-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 72px;
    align-items: start;
}

.inv-content .body-text { margin-bottom: 16px; }

.inv-cta-text {
    color: var(--text-primary) !important;
    margin-top: 8px !important;
    margin-bottom: 28px !important;
}

/* --- Timeline --- */
.timeline {
    position: relative;
    padding-left: 28px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--border) 0%, var(--accent-1) 100%);
    border-radius: 2px;
}

.timeline__item {
    position: relative;
    padding: 18px 0 18px 28px;
    border-bottom: 1px solid rgba(0,0,0,.05);
}

.timeline__item:last-child { border-bottom: none; }

/* Dot */
.timeline__item::before {
    content: '';
    position: absolute;
    left: -33px; top: 24px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--text-muted);
    z-index: 1;
    transition: all .3s ease;
}

.timeline__item--active::before {
    background: var(--accent-1);
    border-color: var(--accent-1);
    box-shadow: 0 0 14px rgba(0,184,148,.40);
}

.timeline__year {
    display: block;
    font-family: var(--font-display);
    font-size: .78rem; font-weight: 700;
    color: var(--accent-1);
    text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: 4px;
}

.timeline__event {
    font-size: .94rem; font-weight: 500;
    color: var(--text-secondary); line-height: 1.5;
}

.timeline__item--active .timeline__event { color: var(--text-primary); }

.timeline__item:hover::before {
    border-color: var(--accent-2);
    transform: scale(1.15);
}


/* ============================================================
   CTA BANNER  (Fase 5)
   ============================================================ */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    text-align: center;
}

.cta-banner__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 60% 80% at 50% 50%,
        rgba(0,184,148,.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 16px;
}

.cta-banner__text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 32px;
}


/* ============================================================
   CONTACT SECTION  (Fase 5)
   ============================================================ */
.section--contact { background: var(--bg-secondary); }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: start;
}

.contact-info .body-text { margin-bottom: 32px; }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-row__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(0,184,148,.07);
    color: var(--accent-1);
    flex-shrink: 0;
}

.contact-row strong {
    display: block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.contact-row span { font-size: .94rem; color: var(--text-primary); }

.contact-row a {
    font-size: .94rem;
    color: var(--text-primary);
    transition: color .25s ease;
}

.contact-row a:hover { color: var(--accent-1); }

/* --- Form --- */
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: .84rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: .94rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color .3s ease, box-shadow .3s ease;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(0,184,148,.12);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238b95a8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-group select option { background: var(--bg-card); color: var(--text-primary); }

.form-response {
    text-align: center;
    font-size: .88rem;
    min-height: 24px;
    margin-top: 4px;
}

.form-response.success { color: var(--accent-1); }
.form-response.error { color: #ff6b6b; }


/* ============================================================
   FOOTER  (Fase 5)
   ============================================================ */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-brand p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-col a {
    font-size: .88rem;
    color: var(--text-secondary);
    transition: color .25s ease;
}

.footer-col a:hover { color: var(--accent-1); }

.footer-address {
    font-size: .84rem;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: .8rem;
    color: var(--text-muted);
}

.footer-bottom__links a {
    color: var(--text-muted);
    transition: color .25s ease;
}

.footer-bottom__links a:hover { color: var(--accent-1); }


/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
    opacity: 0; transform: translateY(32px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1),
                transform .7s cubic-bezier(.16,1,.3,1);
}

[data-reveal].revealed { opacity: 1; transform: translateY(0); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .nav-menu, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .products-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .advisors-grid { grid-template-columns: 1fr 1fr; }
    .partners-grid { grid-template-columns: 1fr 1fr; }
    .principles-grid { grid-template-columns: 1fr 1fr; }
    .status-grid { grid-template-columns: 1fr 1fr; }
    .vision-layout { grid-template-columns: 1fr; gap: 48px; }
    .inv-layout { grid-template-columns: 1fr; gap: 48px; }
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }
    .section { padding: 80px 0; }
    .container { padding: 0 20px; }

    .hero { padding: 120px 20px 80px; min-height: calc(100vh - 40px); }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-actions .btn { width: 100%; max-width: 300px; }
    .hero-stats { flex-direction: column; gap: 28px; margin-top: 56px; padding-top: 36px; }
    .stat-divider { width: 48px; height: 1px; }
    .hero-scroll-hint { display: none; }

    .process-steps { flex-direction: column; align-items: center; }
    .process-connector { width: 2px; height: 28px; margin: 0; }
    .process-step { max-width: 100%; padding: 16px 20px; }

    .testimonial { padding: 32px 22px; }
    .testimonial__text { font-size: 1rem; }

    .team-grid { grid-template-columns: 1fr; gap: 18px; }
    .advisors-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr 1fr; }
    .investors-grid { grid-template-columns: 1fr; }
    .limitations-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .principles-grid { grid-template-columns: 1fr; }
    .status-grid { grid-template-columns: 1fr; }

    .contact-form-wrap { padding: 28px 20px; }

    .worldmap__caption {
        font-size: .82rem;
        padding: 10px 18px;
        border-radius: var(--radius-md);
    }

    .worldmap__label { font-size: 9px; }
    .cta-banner { padding: 72px 0; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
    .partners-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
    .hero-title { font-size: 2.2rem; }
    .hero-badge { font-size: .72rem; padding: 6px 14px; }
    .section-title { font-size: 1.7rem; }
}


/* ============================================================
   ACCESSIBILITY — Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .logos-track { animation: none; }
    .hero-canvas { display: none; }
}


/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .navbar, .mobile-overlay, .hero-canvas, .hero-glow,
    .hero-scroll-hint, .logos-bar, .cta-banner, .nav-toggle { display: none; }

    body { background: #fff; color: #111; }
    .section { padding: 32px 0; }
    .gradient-text { -webkit-text-fill-color: #006da0; }
    a { color: #006da0; }
}
