/* AgendaZ Landing Page Styles */
/* Archivo: wwwroot/css/site_landings.css  — reemplaza o fusiona con el tuyo */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;1,300&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --blue: #1a56db; --blue-dark: #1340b0; --blue-light: #e8f0fd;
    --teal: #00b8c8; --teal-light: #e0f7fa;
    --orange: #f97316; --orange-light: #fff3e8;
    --p1: #1a56db; --p2: #1e6ef5; --p3: #5b9fff;
    --c1: #00b8c8; --c2: #00d4e8; --c3: #7ee8f5;
    --b1: #1a56db; --b2: #2563eb;
    --white: #fff; --off: #f4f7fe;
    --text-main: #111827; --text-mid: #374151; --text-soft: #6b7280;
    --border: #e5e7eb;
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito Sans', sans-serif; background: #ffffff; color: #111827; overflow-x: hidden; }

/* ===== ANIMATIONS ===== */
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }
@keyframes floatR { 0%,100% { transform: translateY(0) rotate(3deg) } 50% { transform: translateY(-10px) rotate(3deg) } }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: .6 } 100% { transform: scale(1.6); opacity: 0 } }
@keyframes slide-up { from { opacity: 0; transform: translateY(30px) } to { opacity: 1; transform: translateY(0) } }
@keyframes fade-in { from { opacity: 0 } to { opacity: 1 } }
@keyframes shimmer { 0% { background-position: -200% 0 } 100% { background-position: 200% 0 } }
@keyframes spin-slow { from { transform: rotate(0deg) } to { transform: rotate(360deg) } }
@keyframes blob { 0%,100% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40% } 50% { border-radius: 30% 60% 70% 40%/50% 60% 30% 60% } }
@keyframes ticker { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }
@keyframes check-draw { from { stroke-dashoffset: 40 } to { stroke-dashoffset: 0 } }

.anim-up { animation: slide-up .7s ease both; }
.anim-up-d1 { animation: slide-up .7s .1s ease both; }
.anim-up-d2 { animation: slide-up .7s .2s ease both; }
.anim-up-d3 { animation: slide-up .7s .3s ease both; }
.anim-up-d4 { animation: slide-up .7s .4s ease both; }

/* ===== LAYOUT ===== */
.wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAV ===== */
/* NOTA: Si ya tienes nav/header en tu _Layout.cshtml, elimina este bloque */

nav {
    top: 0;
    z-index: 9999 !important;
    background: #fff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
}

.nav-inner {
    height: 72px;
    display: flex;
    align-items: center;
}


.logo { display: flex; align-items: center; gap: 10px; }
.logo-img {
    display: flex; align-items: center; justify-content: center;
}
.logo-text { font-family: 'Nunito',sans-serif; font-size: 20px; font-weight: 900; color: var(--text-main); }
.nav-links { display: flex; align-items: center; gap: 4px;   margin-left: auto;}
.nav-a { color: var(--text-mid); text-decoration: none!important; font-size: 14px; font-weight: 600; padding: 8px 14px; border-radius: 8px; transition: .2s; }
.nav-a:hover { color: var(--blue); background: var(--blue-light); }

nav .wrap {
    max-width: 100%;
    padding-right: 16px; /* opcional */
} 
.nav-pill {
    background: var(--blue); color: #fff; border: none; padding: 10px 22px; border-radius: 8px;
    font-family: 'Nunito',sans-serif; font-size: 15px; font-weight: 700;
    cursor: pointer; transition: .2s; box-shadow: 0 2px 8px rgba(26,86,219,0.3);
}

.nav-pill-blanco {
    background: var(--white);
    color: var(--blue);
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Nunito',sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
    box-shadow: 0 2px 8px rgba(26,86,219,0.3);
}
.nav-pill:hover { background: var(--blue-dark); transform: translateY(-1px); }

.nav-login-wrapper {
    position: relative;
}

    /* Posicionar dropdown justo debajo del texto */
    .nav-login-wrapper .dropdown-menu {
        left: -70px !important;
        right: auto !important;
        top: 30% !important;
        margin-top: 0px !important;
        min-width: unset !important;
        width: auto !important;
        white-space: nowrap;
        padding: 6px 8px;
    }

.nav-login-arrow {
    margin-left: -15px;
}
.hover-blue:hover {
    color: var(--blue) !important;
    background: var(--blue-light) !important;
    border-radius: 8px;
    transition: .2s;
    margin-left: 5px;
    margin-right: 5px;
}


.nav-login {
    background: transparent !important;
    color: #1f2937 !important;
    padding: 8px 14px !important;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
}

    .nav-login:hover {
        color: var(--blue) !important;
        background: var(--blue-light) !important;
    }
 

.nav-login-group {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}


.nav-login-toggle {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    position: relative;
}

    /* flechita */
    .nav-login-toggle::after {
        content: "";
        border: solid #1f2937;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(45deg);
        margin-top: -2px;
    }

/* ===== HERO ===== */
.hero {
    min-height: 80vh; display: flex; align-items: center;
    background: linear-gradient(135deg,#f4f7fe 0%,#e8f0fd 50%,#e0f7fa 100%);
    position: relative; overflow: hidden;
}
.blob1,.blob2,.blob3 { position: absolute; border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; animation: blob 8s ease-in-out infinite; opacity: .08; pointer-events: none; }
.blob1 { width: 500px; height: 500px; top: -100px; right: -80px; background: linear-gradient(135deg,var(--blue),var(--teal)); animation-delay: 0s; }
.blob2 { width: 350px; height: 350px; bottom: -60px; left: -60px; background: linear-gradient(135deg,var(--teal),var(--blue)); animation-delay: -3s; }
.blob3 { width: 250px; height: 250px; top: 40%; right: 20%; background: var(--orange); animation-delay: -5s; opacity: .05; }
.hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(26,86,219,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(26,86,219,0.04) 1px,transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,black,transparent);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; padding: 80px 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid #e5e7eb;
    border-radius: 30px; padding: 7px 16px; margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); position: relative; }
.badge-dot::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; background: var(--teal); animation: pulse-ring 1.5s ease-out infinite; }
.badge-txt { font-size: 12px; font-weight: 700; color: #374151; letter-spacing: .06em; text-transform: uppercase; }
h1.hero-h {
    font-family: 'Nunito',sans-serif;
    font-size: clamp(34px,4.5vw,54px);
    font-weight: 900; line-height: 1.08; letter-spacing: -1.5px;
    margin-bottom: 20px; color: #111827;
}
h1.hero-h .line2 {
    background: linear-gradient(135deg,var(--blue),var(--teal));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 17px; color: #6b7280; line-height: 1.7; margin-bottom: 32px; font-weight: 400; max-width: 460px; }
.hero-sub strong { color: #111827; font-weight: 700; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-glow {
    background: var(--blue); color: #fff; border: none; padding: 14px 32px; border-radius: 8px;
    font-family: 'Nunito',sans-serif; font-size: 16px; font-weight: 800;
    cursor: pointer; transition: .3s;
    box-shadow: 0 4px 16px rgba(26,86,219,0.35);
    position: relative; overflow: hidden;
}
.btn-glow::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg,transparent 30%,rgba(255,255,255,0.15),transparent 70%);
    background-size: 200% 100%; animation: shimmer 2.5s infinite;
}
.btn-glow:hover { transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 8px 24px rgba(26,86,219,0.45); }
.btn-ghost {
    background: #fff; color: var(--blue); border: 1.5px solid var(--blue);
    padding: 14px 28px; border-radius: 8px;
    font-family: 'Nunito',sans-serif; font-size: 16px; font-weight: 700;
    cursor: pointer; transition: .2s;
}
.btn-ghost:hover { background: var(--blue-light); }
.trust-bar { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #6b7280; font-weight: 600; }
.trust-icon { font-size: 14px; color: var(--teal); }
.trust-sep { width: 4px; height: 4px; border-radius: 50%; background: #e5e7eb; }

/* Hero right — phone mockup */
.hero-right { display: flex; justify-content: center; position: relative; }
.phone-wrap { position: relative; width: 280px; }
.phone-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 340px; height: 340px;
    background: radial-gradient(circle,rgba(26,86,219,0.12) 0%,transparent 70%);
    pointer-events: none;
}
.phone {
    width: 260px; background: #ffffff; border: 1px solid #e5e7eb;
    border-radius: 16px; padding: 24px 20px;
    animation: float 5s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.phone-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.phone-logo { font-family: 'Nunito',sans-serif; font-size: 14px; font-weight: 900; color: #111827; }
.phone-logo span { color: var(--blue); }
.phone-dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; }
.phone-card { background: #f4f7fe; border: 1px solid #e5e7eb; border-radius: 12px; padding: 14px; margin-bottom: 10px; }
.pc-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #9ca3af; margin-bottom: 6px; }
.pc-val { font-family: 'Nunito',sans-serif; font-size: 22px; font-weight: 900; color: #111827; }
.pc-sub { font-size: 11px; color: #9ca3af; margin-top: 2px; }
.phone-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.phone-mini { background: #f4f7fe; border-radius: 10px; padding: 12px; text-align: center; }
.pm-n { font-family: 'Nunito',sans-serif; font-size: 18px; font-weight: 900; color: var(--blue); }
.pm-l { font-size: 10px; color: #9ca3af; margin-top: 2px; }
.phone-btn { width: 100%; background: var(--blue); border: none; color: #fff; padding: 11px; border-radius: 8px; font-family: 'Nunito',sans-serif; font-size: 13px; font-weight: 800; cursor: pointer; }
.float-badge { position: absolute; background: rgba(255,255,255,0.95); border-radius: 14px; padding: 10px 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 8px; }
.fb-1 { top: 10px; right: -50px; animation: floatR 4s ease-in-out infinite; }
.fb-2 { bottom: 60px; left: -55px; animation: floatR 5s 1s ease-in-out infinite; }
.fb-icon { font-size: 18px; }
.fb-text { font-size: 11px; font-weight: 700; color: #111827; line-height: 1.3; }
.fb-text span { display: block; font-weight: 400; color: #666; font-size: 10px; }

/* ===== TICKER ===== */
.ticker { overflow: hidden; background: #f4f7fe; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; padding: 14px 0; }
.ticker-track { display: flex; gap: 0; width: max-content; animation: ticker 22s linear infinite; }
.ticker-item { display: flex; align-items: center; gap: 10px; padding: 0 32px; font-size: 13px; font-weight: 700; color: #6b7280; white-space: nowrap; }
.ticker-item .ti-dot { color: var(--teal); }

/* ===== SECTION BASE ===== */
.sec { padding: 90px 0; }
.sec-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--blue); margin-bottom: 12px; }
.sec-h { font-family: 'Nunito',sans-serif; font-size: clamp(26px,3.5vw,40px); font-weight: 900; letter-spacing: -.8px; margin-bottom: 16px; line-height: 1.15; color: #111827; }
.sec-p { font-size: 16px; color: #6b7280; line-height: 1.7; font-weight: 300; max-width: 520px; }
.center { text-align: center; }
.center .sec-p { margin: 0 auto; }

/* ===== PROFILE CARDS ===== */
.profiles-sec { background: linear-gradient(180deg,#ffffff 0%,#f4f7fe 50%,#ffffff 100%); }
.profiles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }
.profile-card { border-radius: 28px; overflow: hidden; position: relative; }
.pc-pro { background: linear-gradient(160deg,#6a20c8 0%,#4a60d8 50%,#20a8d0 100%); }
.pc-space { background: linear-gradient(160deg,#0a40b4 0%,#1068d8 50%,#00b8d8 100%); }
.pc-inner { padding: 36px 32px; position: relative; z-index: 2; }
.pc-badge-row { display: flex; gap: 10px; align-items: center; margin-bottom: 24px; }
.tag-sw,.tag-mk {
    background: rgba(255,255,255,0.95); color: #222; font-family: 'Nunito',sans-serif;
    font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
    padding: 7px 18px; border-radius: 24px; box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.pc-question { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 600; }
.pc-h { font-family: 'Nunito',sans-serif; font-size: clamp(20px,2.5vw,26px); font-weight: 900; line-height: 1.25; margin-bottom: 8px; color: #fff; }
.pc-tagline { font-size: 22px; font-weight: 900; font-family: 'Nunito',sans-serif; color: rgba(255,255,255,0.95); margin-bottom: 20px; line-height: 1.3; }
.pc-tagline em { font-style: normal; color: var(--c2); }
.pc-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pci { display: flex; align-items: flex-start; gap: 10px; }
.pci-check { width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.pci-check svg { width: 12px; height: 12px; }
.pci-text { font-size: 13.5px; color: rgba(255,255,255,0.88); line-height: 1.5; }
.pci-text strong { color: #fff; }
.pc-cta {
    width: 100%; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,0.4); color: #fff; padding: 14px; border-radius: 14px;
    font-family: 'Nunito',sans-serif; font-size: 15px; font-weight: 800; cursor: pointer; transition: .2s;
}
.pc-cta:hover { background: rgba(255,255,255,0.3); }
.pc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.pc-stat { background: rgba(255,255,255,0.15); border-radius: 10px; padding: 12px 14px; }
.ps-n { font-family: 'Nunito',sans-serif; font-size: 22px; font-weight: 900; color: #fff; }
.ps-l { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.pc-quote { background: rgba(0,0,0,0.2); border-left: 3px solid var(--c2); border-radius: 0 10px 10px 0; padding: 14px 16px; margin-bottom: 20px; font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.95); line-height: 1.4; }
.pc-quote em { font-style: normal; color: var(--c2); }

/* ===== ECOSYSTEM ===== */
.eco-sec { background: #f4f7fe; }
.eco-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.eco-visual { position: relative; height: 380px; }
.eco-node { position: absolute; background: rgba(255,255,255,0.9); border: 1px solid rgba(0,26,77,0.12); border-radius: 20px; padding: 18px 20px; width: 160px; backdrop-filter: blur(10px); transition: .3s; box-shadow: 0 4px 20px rgba(0,26,77,0.08); }
.eco-node:hover { background: #fff; transform: scale(1.04); box-shadow: 0 8px 30px rgba(0,26,77,0.15); }
.en-top { top: 0; left: 50%; transform: translateX(-50%); }
.en-bl { bottom: 20px; left: 0; }
.en-br { bottom: 20px; right: 0; }
.en-icon { font-size: 22px; margin-bottom: 6px; }
.en-name { font-family: 'Nunito',sans-serif; font-size: 13px; font-weight: 800; margin-bottom: 4px; color: #111827; }
.en-tag { font-size: 11px; color: rgba(0,26,77,0.55); line-height: 1.4; }
.eco-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.eco-gem {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 64px; height: 64px; border-radius: 16px;
    background: linear-gradient(135deg,var(--p1),var(--b1));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Nunito',sans-serif; font-size: 16px; font-weight: 900; color: #fff;
    box-shadow: 0 0 0 8px rgba(123,63,228,0.15),0 0 0 16px rgba(123,63,228,0.07);
    z-index: 5;
}
.eco-gem::after { content: ''; position: absolute; inset: -20px; border-radius: 50%; background: radial-gradient(circle,rgba(0,201,228,0.15) 0%,transparent 70%); animation: pulse-ring 2s ease-out infinite; }

/* ===== FEATURES ===== */
.features-sec { background: linear-gradient(180deg,#f4f7fe,#ffffff); }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 50px; }
.feat-card { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 20px; padding: 28px 24px; transition: .3s; position: relative; overflow: hidden; }
.feat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--blue),var(--teal)); opacity: 0; transition: .3s; }
.feat-card:hover { background: #f4f7fe; border-color: var(--blue); transform: translateY(-4px); }
.feat-card:hover::before { opacity: 1; }
.fc-icon { width: 48px; height: 48px; border-radius: 14px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.fc-p { background: var(--blue-light); }
.fc-c { background: var(--teal-light); }
.fc-b { background: var(--orange-light); }
.fc-h { font-family: 'Nunito',sans-serif; font-size: 16px; font-weight: 800; margin-bottom: 8px; color: #111827; }
.fc-p-txt { font-size: 13.5px; color: #6b7280; line-height: 1.6; }

/* ===== IMPACT ===== */
.impact-sec { background: linear-gradient(135deg,#1340b0 0%,#1a56db 60%,#0e7ab0 100%); padding: 80px 0; }
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; margin-top: 50px; }
.impact-item { background: rgba(255,255,255,0.06); padding: 36px 24px; text-align: center; transition: .2s; }
.impact-item:hover { background: rgba(255,255,255,0.12); }
.ii-num { font-family: 'Nunito',sans-serif; font-size: 42px; font-weight: 900; background: linear-gradient(135deg,#fff,#7ee8ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; }
.ii-lbl { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 6px; }
.ii-sub { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ===== QUOTE ===== */
.quote-sec { background: #f4f7fe; padding: 70px 0; }
.quote-box { max-width: 700px; margin: 0 auto; text-align: center; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 50px 48px; position: relative; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.q-mark { font-family: 'Nunito',sans-serif; font-size: 100px; font-weight: 900; color: rgba(26,86,219,0.12); line-height: 1; position: absolute; top: -10px; left: 32px; }
.q-text { font-family: 'Nunito',sans-serif; font-size: 22px; font-weight: 800; line-height: 1.5; margin-bottom: 20px; position: relative; color: #111827; }
.q-text em { font-style: normal; color: var(--blue); }
.q-sub { font-size: 14px; color: #9ca3af; }

/* ===== CTA FINAL ===== */
.cta-sec { background: linear-gradient(135deg,#1340b0 0%,#1a56db 50%,#0e7ab0 100%); padding: 100px 0; position: relative; overflow: hidden; }
.cta-blobs { position: absolute; inset: 0; pointer-events: none; }
.cb1 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle,rgba(123,63,228,0.25),transparent); top: -100px; left: -100px; }
.cb2 { position: absolute; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle,rgba(0,201,228,0.2),transparent); bottom: -80px; right: -80px; }
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta-h { font-family: 'Nunito',sans-serif; font-size: clamp(30px,4.5vw,50px); font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; line-height: 1.1; color: #fff; }
.cta-h em { font-style: normal; background: linear-gradient(135deg,var(--c2),var(--p3)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 14px; line-height: 1.65; font-weight: 300; }
.cta-offer { display: inline-block; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: 24px; padding: 8px 22px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 36px; }
.cta-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-email { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3); border-radius: 14px; padding: 16px 22px; font-size: 15px; color: #fff; font-family: 'Nunito Sans',sans-serif; width: 300px; outline: none; transition: .2s; }
.cta-email::placeholder { color: rgba(255,255,255,0.45); }
.cta-email:focus { border-color: rgba(0,26,77,0.7); background: rgba(255,255,255,0.22); }
.cta-submit { background: #ffffff; color: var(--blue); border: none; padding: 14px 28px; border-radius: 8px; font-family: 'Nunito',sans-serif; font-size: 15px; font-weight: 800; cursor: pointer; transition: .2s; white-space: nowrap; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.cta-submit:hover { transform: translateY(-2px); background: #f4f7fe; }
.cta-contact { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.cta-contact a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; font-weight: 600; transition: .2s; display: flex; align-items: center; gap: 6px; }
.cta-contact a:hover { color: #fff; }

/* ===== FOOTER ===== */
/* NOTA: Si tienes footer en _Layout.cshtml, elimina este bloque */
footer { background: #f4f7fe; border-top: 1px solid #e5e7eb; padding: 32px 0; }
.foot-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.foot-logo { font-family: 'Nunito',sans-serif; font-size: 20px; font-weight: 900; color: #111827; }
.foot-mid { font-size: 13px; color: #9ca3af; }
.foot-links { display: flex; gap: 20px; }
.foot-links a { font-size: 13px; color: rgba(0,26,77,0.45); text-decoration: none; transition: .2s; }
.foot-links a:hover { color: #111827; }



/* Modal info */
.modal-fixed {
    position: fixed;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    width: 155px;
    background: white;
    padding: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 1000;
    text-align: center;
    font-size: 0.75rem !important;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: center;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}
.modal-footer a {
    color: #311B92;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
    margin-bottom: 5px;
}

            .contact-icons a {
                text-decoration: none;
            }

            .contact-icons img {
                width: 40px;
                height: 40px;
            }



button {
    border: none;
    outline: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

    button:focus {
        outline: none;
    }

i {
    border: none;
    outline: none;
}

.modal-fixed.hidden {
    display: none;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
    margin-bottom: 5px;
}



/* ===== RESPONSIVE ===== */
@media (max-width: 760px) {
    .hero-inner,.profiles-grid,.eco-inner,.feat-grid { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .float-badge,.fb-1,.fb-2 { display: none; }
}
