:root {
    --primary: #1e3a8a;
    /* Deep Blue */
    --primary-light: #3b82f6;
    --accent: #f59e0b;
    /* Amber/Gold */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-light: #ffffff;
    --dark-bg: #0f172a;

    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
/* mas angosto */
/* .container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
} */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: clamp(24px, 4vw, 60px);
    padding-right: clamp(24px, 4vw, 60px);
}

.text-gradient {
    /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); */
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-color {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--white);
}

.center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

.btn-text {
    color: var(--text-light);
    font-weight: 500;
}

.btn-text:hover {
    color: var(--primary);
}

.ticker-full {
    width: 100%;
    margin-top: 80px;
    background: #ffffff;
    overflow: hidden;
    border-top: none;
    border-bottom: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.ticker-full iframe {
    display: block;
    width: 100%;
    height: 46px;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.193);
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-menu {
    margin: 10px 0 0 0;
    display: flex;
    align-items: center;
    gap: 1rem;

}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark);
    gap: 0.5rem;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.8rem;
}

.logo-accent {
    color: var(--primary);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

/* links nav */
.nav-list a {
    position: relative;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

/* hover */
.nav-list a:hover {
    color: var(--primary);
}

/* ACTIVE */
.nav-list a.active {
    color: var(--primary);
    font-weight: 700;
}

/* línea abajo */
.nav-list a.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            var(--primary),
            var(--primary-light));
}

.nav-link {
    font-weight: 500;
    color: var(--text-light);
}

.nav-link:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    /* margin-top: 80px; */
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
}

/* Hero 100% Gorostiaga – pantalla completa */
.hero-gorostiaga {
    min-height: calc(100vh - 80px);
    position: relative;
    background:
        radial-gradient(ellipse 70% 60% at 80% 30%, rgba(59, 130, 246, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(30, 58, 138, 0.08) 0%, transparent 55%),
        linear-gradient(160deg, #f0f6ff 0%, #ffffff 60%, #f8faff 100%);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-centered {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.hero-centered h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 1.2rem;
    line-height: 1.75;
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 2.5rem !important;
}

.hero-centered .hero-btns {
    justify-content: center;
}


.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);

}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #dbeafe;
    color: var(--primary);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-bg-circle {
    width: 450px;
    height: 450px;
    background-color: #eff6ff;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
}

.visual-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    min-width: 220px;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    left: 10%;
    animation-delay: 2s;
}

.descargas-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 30px;
    gap: 30px;
}

.plataforma-msj {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: row; */
}

.texto-plataforma {
    width: 100%;
}

.msj-celular {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.inviu-celular {
    margin-bottom: -2px;
}

.inviu-msj {
    position: absolute;
    /* left: 10px;*/
    top: 4.2em;
    z-index: 2;
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
}

.blurred-box__list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.blurred-box__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: #dbe7ff;
    font-size: 15px;
    line-height: 1.5;
}

.blurred-box__list svg {
    min-width: 20px;

    color: #3b82f6;

    margin-top: 2px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #dbeafe;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.icon-box.warning {
    background-color: #fef3c7;
    color: var(--accent);
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.card-text strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #eff6ff;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Investments */
.investments-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.check-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.check-list i {
    color: var(--primary);
    background-color: #dbeafe;
    padding: 0.25rem;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #060c1c 0%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.cta-box {
    position: relative;
    z-index: 1;
    background: transparent;
    border-radius: 0;
    padding: 4rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    gap: 2rem;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin: 1.5rem 0;
    line-height: 1.8;
}

.footer-logo {
    color: var(--white);
}

.footer-logo .logo-accent {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    /* color: var(--white);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading); */

    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col ul li {
    /*margin-bottom: 1rem;*/
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: .25s ease;
}

.footer-col ul li a:hover {
    /* color: var(--white); */
    color: #fff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 1001;
    transition: var(--transition);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/*
.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-list a {
    font-size: 1.2rem;
    font-weight: 600;
}
*/
.mobile-nav-list li a {
    display: block;
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-weight: 600;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-list li .mobile-cta {
    color: white;
}

.mobile-nav-list li a:hover {
    color: var(--primary);
}

.mobile-cta {
    justify-content: center;
    margin-top: 1rem;
}


/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    color: #FFF;
}
/* =========================
   CHATBOT FLOAT
========================= */

.chatbot-float{
    position:fixed;

    bottom:95px;
    right:20px;

    width:62px;
    height:62px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #1e3a8a
        );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:26px;

    box-shadow:
        0 10px 30px rgba(30,58,138,.35),
        0 0 0 6px rgba(59,130,246,.08);

    z-index:10001;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

    overflow:hidden;
}

/* Glow animado */
.chatbot-float::before{
    content:"";

    position:absolute;
    inset:-20%;

    background:
        radial-gradient(
            circle,
            rgba(96,165,250,.35),
            transparent 70%
        );

    animation:chatbotPulse 3s infinite;
}
.chatbot-float img{
    width:44px;
    height:44px;

    object-fit:contain;

    position:relative;
    z-index:2;
}
@keyframes chatbotPulse{
    0%{
        transform:scale(.8);
        opacity:.4;
    }

    50%{
        transform:scale(1.1);
        opacity:.8;
    }

    100%{
        transform:scale(.8);
        opacity:.4;
    }
}

.chatbot-float i{
    position:relative;
    z-index:2;
}

.chatbot-float:hover{
    transform:
        translateY(-4px)
        scale(1.06);

    color:#fff;

    box-shadow:
        0 14px 40px rgba(30,58,138,.45),
        0 0 0 8px rgba(59,130,246,.12);
}

/* Badge AI */

.chatbot-badge{
    position:absolute;

    top:2px;
    right:6px;

    background:#38bdf8;

    color:#fff;

    font-size:8px;
    font-weight:700;

    padding:4px 6px;

    border-radius:999px;

    z-index:3;

    box-shadow:0 4px 12px rgba(56,189,248,.35);
}
/* ── CAPTACIÓN DE LEADS (REPORTES) ── */
/* ── CAPTACIÓN DE LEADS (PREMIUM FINANZAS) ── */
.lead-magnet-banner {
    background: #0f172a; /* Fondo oscuro premium */
    border-left: 5px solid var(--accent); /* Detalle dorado corporativo */
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--shadow-lg);
}

.lead-magnet-content h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lead-magnet-content h4 i {
    color: var(--accent); /* Icono en dorado */
}

.lead-magnet-content p {
    color: #94a3b8; /* Gris claro para lectura óptima */
    font-size: 0.95rem;
    margin: 0;
    max-width: 500px;
    line-height: 1.6;
}

/*.lead-magnet-form {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 550px; // Un poco más ancho para los dos campos 
}*/
.lead-magnet-form {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:16px;
    align-items:center;
}
.lead-btn-submit{
    grid-column:1 / -1;
    justify-self:center;
    min-width:220px;
}
.lead-input {
    flex: 1;
    padding: 12px 16px;
    background: #1e293b; /* Fondo interno oscuro para los inputs */
    border: 1px solid #334155;
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.lead-input::placeholder {
    color: #64748b;
}

.lead-input:focus {
    border-color: var(--primary-light);
    background: #1e293b;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.lead-btn {
    white-space: nowrap;
    border-radius: 8px;
    background-color: var(--primary-light);
    border: none;
    font-weight: 600;
    padding: 12px 24px;
}

.lead-btn:hover {
    background-color: #2563eb;
}
.lead-magnet-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 550px;
}
.form-feedback{
    display:none;
    margin-top:15px;
    padding:14px 18px;
    border-radius:10px;
    font-size:14px;
    font-weight:500;
}

.form-feedback.success{
    background:#ecfdf5;
    color:#166534;
    border:1px solid #bbf7d0;
}

.form-feedback.error{
    background:#fef2f2;
    color:#991b1b;
    border:1px solid #fecaca;
}

.form-feedback {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.4s ease;
}

.feedback-success {
    background: rgba(6, 190, 99, 0.1);
    border: 1px solid rgba(6, 190, 99, 0.2);
    color: #06be63; /* Verde éxito */
}
/* 
.feedback-error {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #ef4444; 
} */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* botones más chicos  */
.header-actions .btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

.header-actions .btn-primary {
    padding: 0.45rem 1rem;
}


/*  RosVal Dropdown */
.rosval-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.rosval-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 34px;
    padding: 1.1rem 0.9rem;
    font-size: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary);
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.rosval-btn .rosval-logo {
    height: 28px;
    width: auto;
    display: block;
}

.rosval-btn i.arrow {
    font-size: 0.65rem;
    color: var(--primary);
    transition: transform 0.25s ease;
}

.rosval-dropdown:hover .rosval-btn,
.rosval-dropdown.open .rosval-btn {
    background-color: var(--primary);
    color: var(--white);
}

.rosval-dropdown:hover .rosval-btn i.arrow,
.rosval-dropdown.open .rosval-btn i.arrow {
    transform: rotate(180deg);
}

.rosval-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 2000;
}

.rosval-dropdown:hover .rosval-menu,
.rosval-dropdown.open .rosval-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rosval-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

.rosval-menu a:last-child {
    border-bottom: none;
}

.rosval-menu a:hover {
    background-color: #eff6ff;
    color: #1e3a8a;
}

.rosval-menu a i {
    font-size: 0.9rem;
    color: #3b82f6;
    width: 16px;
    text-align: center;
}

.rosval-label {
    font-size: 0.65rem;
    color: #64748b;
    padding: 0.5rem 1.2rem 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #f1f5f9;
}

/* Transición  */
.rosval-logo {
    transition: opacity 0.25s ease;
}

/* hover */
.rosval-dropdown:hover .rosval-logo,
.rosval-dropdown.open .rosval-logo {
    content: url("images/rosario_valores_blanco.png");
}
/* ── Nav dropdown ── */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.nav-arrow {
    font-size: 0.7rem;
    transition: transform 0.25s;
}
.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}
.nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    min-width: 200px;
    padding: 10px 0 0.5rem 0;
    list-style: none;
    z-index: 999;
}
.nav-dropdown:hover .nav-submenu {
    display: block;
}
.nav-submenu li a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #1e293b;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.nav-submenu li a:hover {
    background: #f1f5f9;
    color: #1d4ed8;
}

/*finanzas*/
/* ── SECCIÓN REPORTES ── */
.reportes-section {
    background: #ffffff;
}

/* Perfil economista */
.economista-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    margin-bottom: 56px;
    box-shadow: 0 4px 24px rgba(30, 58, 138, 0.07);
}

.titulos-pagina {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;

}

.economista-foto {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #dbeafe;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.15);
}

.economista-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.economista-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: #eff6ff;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 12px;
}

.economista-info h2 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.economista-titulo {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.economista-desc {
    font-size: 1rem;
    color: #475569;
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 16px;
}

.economista-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.economista-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e3a8a;
    background: #dbeafe;
    padding: 5px 12px;
    border-radius: 99px;
}

/* Header reportes */
.reportes-header {
    margin-bottom: 32px;
}

.reportes-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.reportes-header p {
    font-size: 0.95rem;
    color: #64748b;
}

/* Grid de reportes */
.reportes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.reporte-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.reporte-card:hover {
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.1);
    transform: translateY(-3px);
    border-color: #bfdbfe;
}

.reporte-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reporte-icono {
    width: 44px;
    height: 44px;
    background: #fee2e2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #dc2626;
    flex-shrink: 0;
}

.reporte-fecha {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.reporte-titulo {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
}

.reporte-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.btn-reporte {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: auto;
}

.btn-reporte:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    color: #fff;
}

/* plataforma*/
.inviu-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fenix-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logos-plataformas {
    width: 42px;
    height: auto;
    object-fit: contain;
}

.platform-section-header {
    text-align: left;
    margin-bottom: 5px;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    justify-content: start;

}

.platform-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: #eff6ff;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 14px;
}

.platform-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.15;
    display: flex;
    justify-content: left;
}

.platform-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 480px;
    /* margin: 0 auto; */
    line-height: 1.7;

}

.platform-slider-section {
    border-top: 2px solid #e2e8f0;
    padding-top: 64px;
    padding-bottom: 64px;
}

.hero-features {
    margin-top: 18px;
    /* margin-top: 28px; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-features i {
    color: #93c5fd;
}

.inviu-gradient {
    background: linear-gradient(135deg, #06be63 0%, #0ee37a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═════════════ PLATAFORMA FEATURE ═════════════ */
.column-label {
    color: #1e3a8a;
    font-weight: 800;
}

.icono-plaformas {
    margin-right: 10px;
}

.plataforma-feature {
    padding: 100px 0;
    background:
        radial-gradient(circle at top right,
            rgba(6, 190, 99, 0.08),
            transparent 35%),
        #ffffff;
}

.plataforma-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(6, 190, 99, 0.1);
    color: #06be63;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.plataforma-texto h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.inviu-gradient {
    background: linear-gradient(135deg, #06be63 0%, #0ee37a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plataforma-texto p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 18px;
}

.platform-highlight {
    font-weight: 600;
    color: #0f172a !important;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.platform-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-weight: 600;
    color: #1e293b;
}

.platform-features i {
    color: #06be63;
}

.plataforma-imagenes {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-back {
    width: 280px;
    position: absolute;
    left: 20%;
    /* left: 20px; */
    /*top: 60px;*/
    opacity: 0.95;
}

.phone-front {
    width: 320px;
    position: absolute;
    right: 50px;
    z-index: 2;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.18));
}
/* Spinner sutil */
.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Estado deshabilitado para que se vea "clickeable" pero pausado */
.lead-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-phone-content h1 {
        text-align: center;
    }

    .plataforma-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .platform-features {
        justify-content: center;
    }

    .plataforma-imagenes {
        min-height: 450px;
    }

    .phone-back {
        width: 220px;
        left: 50%;
        transform: translateX(-60%);
    }

    .phone-front {
        width: 260px;
        right: 50%;
        transform: translateX(40%);
    }
.lead-magnet-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }
    
    .lead-magnet-form {
        max-width: 100%;
    }  
}

@media (max-width: 600px) {
/*.lead-magnet-form {
        flex-direction: column;
        gap: 10px;
    }*/
    .lead-magnet-form{
        grid-template-columns: 1fr;
    }

    .lead-btn-submit{
        width:100%;
        min-width:unset;
    }    
    
    .lead-btn {
        width: 100%;
    }
    .plataforma-feature {
        padding: 70px 0;
    }

    .plataforma-imagenes {
        min-height: 360px;
    }

    .phone-back {
        width: 170px;
    }

    .phone-front {
        width: 210px;
    }

    .platform-features {
        flex-direction: column;
    }

    .platform-features div {
        justify-content: center;
    }
}

/* slider index*/
.our-work {
    display: flex;
    align-items: center;
    /* background-color: #14192d;
	background-position: center;
	background-size: cover; */
    position: relative;
    overflow: hidden;
}

.our-work::before {
    width: 50vw;
    /* height: 50vw; */
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    /* background: #e93f8e; */
    border-radius: 760px;
    transform: translate(-50%, -50%);
    backface-visibility: hidden;
    opacity: 0.4;
    filter: blur(270px);
    content: '';
    pointer-events: none;
    will-change: transform;
}

.our-work h1 {
    /* background-image: linear-gradient(269deg, #bc2789 1.26%, #f85956 98.74%); */
    /* background-clip: text; */
    /* -webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
    display: inline-flex;
    font-size: 3.3rem;
    line-height: 1.1;
}

.slider {
    display: flex;
    gap: 55px;
    align-items: center;
    position: relative;
}

.carousel__slider {
    position: relative;
    width: 100%;
    /* min-height: 440px; */
    min-height: 300px;
}

.carousel__item {
    width: 100%;
    /* min-height: 440px; */
    min-height: 300px;
    padding: 48px;
    color: #fff;
    /* background: rgba(255, 255, 255, 0.1); */
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    position: absolute;
    top: 0%;
    opacity: 0;
}

.carousel__nav {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-direction: column;
}

.carousel__nav__item {
    background: #424b58;
    box-shadow: none;
    display: block;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
}

.carousel__nav__item--active {
    background: rgb(193, 225, 10);
}

.slider-active {
    background: rgb(193, 225, 10);
}

/* ======================================================
   PLATFORM SLIDER
====================================================== */

.platform-slider-section {
    padding: 3rem 0;
    overflow: hidden;
}

.platform-carousel {
    border-radius: 32px;
    overflow: visible;
}

.platform-carousel .carousel-inner {
    border-radius: 32px;
    overflow: visible;
}

.platform-carousel .carousel-item {
    border-radius: 32px;
}

.platform-slide {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;

    padding: 1rem 2rem;
    position: relative;
}

.platform-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(6, 190, 99, 0.08),
            transparent 50%);
    pointer-events: none;
}

.slide-text {
    flex: 1;
    max-width: 520px;
    position: relative;
    z-index: 2;
}

.slide-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.7rem;
    color: #062a86;
    background: rgba(31, 51, 226, 0.12);
    border: 1px solid rgba(6, 190, 99, 0.25);
}

.slide-badge {
    display: inline-block;
    margin-bottom: 1.2rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(31, 51, 226, 0.12);
    color: #062a86;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.slide-text h2 {
    font-size: 3.3rem;
    line-height: 1.1;
    font-weight: 800;
    /*color: #fff;*/
    color: #000;
    margin-bottom: 1.5rem;
}

.slide-text h2 span {
    /* color: #06be63; */
    color: #062a86;
}

.slide-text h4 span {
    /* color: #06be63; */
    color: #062a86;
}

.slide-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: black;
    margin-bottom: 2rem;
}

.slide-text p b {

    /* background: linear-gradient(90deg, #062a86 0%, #0f40d9 45%, #6d9ee5 100%); */
    background: #0f40d9;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    font-weight: 800;
}

.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.slide-features span {
    padding: 0.8rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.95rem;
}

.slide-features i {
    color: #06be63;
    margin-right: 0.45rem;
}

.slide-image {
    flex: 1;
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phones */

.phone-card {
    position: absolute;
    border-radius: 32px;
    overflow: hidden;
    /* box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45); */
}

.phone-card img {
    width: 100%;
    display: block;
}

.phone-back {
    width: 250px;
    transform:
        translateX(-100px) rotate(-12deg);
    opacity: 0.85;
}

.phone-front {
    width: 250px;
    transform:
        translateX(80px) rotate(10deg);
    z-index: 2;
}

/* Device */
.laptop-card {
    position: relative;
    width: 100%;
    max-width: 700px;
    min-height: 380px;
    overflow: visible;
}

#laptop-control {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 24px;
    /* box-shadow: 0 20px 60px rgba(0,0,0,0.18); */
}

.device-main img {
    width: 80%;
    /* max-width: 580px; */
    border-radius: 24px;
    /* box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.25); */
}

/* LAPTOP PRINCIPAL */

#laptop-control {
    width: 100%;
    position: relative;
    z-index: 2;

    border-radius: 24px;

    /* box-shadow:
        0 20px 60px rgba(0,0,0,0.18); */
}

/* MOVIMIENTOS */

#movimientos-control {
    position: absolute;

    width: 220px;

    bottom: 20px;
    left: -40px;

    z-index: 4;

    animation: floatCard 4s ease-in-out infinite;
}
/***** TRABAJA CON NOSOTROS ***/
 /* ── Tarjetas de búsquedas ── */
        .busqueda-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 2rem;
            transition: box-shadow 0.3s, transform 0.3s;
        }
        .busqueda-card:hover {
            box-shadow: 0 8px 32px rgba(30, 58, 138, 0.12);
            transform: translateY(-4px);
        }
        .busqueda-card .card-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }
        .busqueda-card .card-icon i {
            color: #fff;
            font-size: 1.3rem;
        }
        .busqueda-card h5 {
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }
        .busqueda-card p {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 1.25rem;
        }
        .busqueda-card .badge-area {
            font-size: 0.8rem;
            color: #3b82f6;
            font-weight: 600;
            background: #eff6ff;
            border-radius: 20px;
            padding: 0.25rem 0.75rem;
            display: inline-block;
        }
        .busqueda-card .btn-postular {
            margin-top: 1.25rem;
            width: 100%;
        }
 /* empresa card*/
 .empresa-card {
    background: linear-gradient(160deg, #f8faff 0%, #eef2fb 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.empresa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(30, 58, 138, 0.1);
    border-color: #c7d6f5;
}

.empresa-card i {
    font-size: 1.8rem;
    color: #1d4ed8;
    margin-bottom: 1rem;
    display: inline-block;
}

.empresa-card h5 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.empresa-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}
        /* ── Valores / por qué trabajar ── */
        .valor-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        .valor-item .valor-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .valor-item .valor-icon i {
            color: #fff;
            font-size: 1.1rem;
        }
        .valor-item h6 {
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.25rem;
        }
        .valor-item p {
            color: #64748b;
            font-size: 0.9rem;
            margin: 0;
        }
 
        /* ── Formulario de postulación ── */
        .postulacion-section {
            background: #f8faff;
            border-top: 1px solid #e2e8f0;
        }
        .postulacion-form {
            background: #fff;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 4px 24px rgba(30, 58, 138, 0.08);
            border: 1px solid #e2e8f0;
        }
        .postulacion-form .form-label {
            font-weight: 600;
            color: #1e293b;
            font-size: 0.9rem;
        }
        .postulacion-form .form-control,
        .postulacion-form .form-select {
            border: 1.5px solid #e2e8f0;
            border-radius: 10px;
            padding: 0.65rem 1rem;
            font-size: 0.95rem;
            color: #1e293b;
            transition: border-color 0.2s;
        }
        .postulacion-form .form-control:focus,
        .postulacion-form .form-select:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
        }
        .postulacion-form .btn-primary {
            width: 100%;
            padding: 0.8rem;
            font-size: 1rem;
        }
 
        /* ── Stats strip ── */
        .stats-strip {
            background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
            padding: 3rem 0;
        }
        .stat-item {
            text-align: center;
        }
        .stat-item .stat-num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }
        .stat-item .stat-label {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.75);
            margin-top: 0.4rem;
        }       
/* SEARCH */

#search-control {
    position: absolute;

    width: 190px;

    top: 30px;
    right: -20px;

    z-index: 4;

    animation: floatCard 5s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    padding: 1rem 1.3rem;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.slide-image .floating-card {
    position: absolute;
    padding: 0.5rem 0.7rem;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    background: #06be63;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 400;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.slide-image .transfer-card {
    top: 55%;
    right: 32%;
}

.slide-image .floating-card i {
    color: #ffffff;
    margin-right: 0.5rem;
}

.transfer-card {
    top: 59%;
    right: 22%;
}

.search-card {
    bottom: 10%;
    right: 8%;
}

.floating-card i {
    color: #06be63;
    margin-right: 0.5rem;
}

.touch-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: absolute;
    bottom: 33%;
    left: 34%;
    border: 2px solid rgba(6, 190, 99, 0.5);
    animation: pulseTouch 2s infinite;
}
.ul-footer{
    padding-left: 0px;
}
@keyframes pulseTouch {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Controls */

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

/* Indicators */

.carousel-indicators {
    bottom: 30px;

}

.carousel-indicators .indicador-redondo {
    background-color: #83caa7;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background-color: #1d8451;
    border: 1px solid black;
}

.carousel-indicators .active {
    /* background-color: #77c69e; */
    background-color: #062a86;

}

/* Responsive */

@media (max-width: 991px) {

    .platform-slide {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2rem;
    }

    .slide-text {
        max-width: 100%;
    }

    .slide-features {
        justify-content: center;
    }

    .slide-text h2 {
        font-size: 2.4rem;
    }

    .slide-image {
        min-height: 420px;
        width: 100%;
    }

    .phone-back {
        width: 180px;
        transform:
            translateX(-60px) rotate(-10deg);
    }

    .phone-front {
        width: 210px;
        transform:
            translateX(60px) rotate(8deg);
    }

    .fenix-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .fenix-images,
    .fenix-content {
        width: 100%;
    }

    .fenix-images {
        min-height: 420px;
    }

    .fenix-content h3 {
        font-size: 36px;
    }
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

.footer .row{
        align-items:flex-start;
    }

    .footer-brand,
    .footer-col{
        /* width:fit-content; */
        margin:auto;
        text-align:left;
    }

    .footer-logo{
        justify-content:flex-start;
    }

    .social-links{
        justify-content:flex-start;
    }
}






/* pagina abrir cuenta*/
.split-layout {
    display: flex;
    min-height: 600px;
}

.intro-section {
    margin-top: 80px;
    padding: 3rem 0;
    background-color: var(--white);
    text-align: center;
}

.intro-section h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.intro-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Left Panel - Dark */
.left-panel {
    flex: 1;
    background-color: #003366;
    /* Deep Navy */
    color: #ffffff;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.phone-image {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
}

.step-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.step-text {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.step-text strong,
.highlight-orange {
    color: #ff8c00;
    /* Orange highlight */
    font-weight: 700;
}

/* Right Panel - Light */
.right-panel {
    flex: 1;
    background-color: #ffffff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.right-content {
    max-width: 500px;
    width: 100%;
}

.inviu-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.qr-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.qr-code {
    width: 250px;
    height: 250px;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.download-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.store-btn {
    background-color: #000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    text-decoration: none;
    width: 160px;
}

.store-btn i {
    font-size: 1.5rem;
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-text span:first-child {
    font-size: 0.6rem;
    text-transform: uppercase;
}

.store-text span:last-child {
    font-weight: 600;
    font-size: 1rem;
}

.alias-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid #00cc66;
    /* Green accent */
    box-shadow: var(--shadow);
    margin-top: 2rem;
    width: 100%;
}

.alias-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.alias-value {
    font-weight: 800;
    color: #ff8c00;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}



/* ═══════════════════ INSTAGRAM SECTION ═══════════════════ */
/* =========================================================
   INSTAGRAM SECTION
========================================================= */

.instagram-section {
    padding: 90px 0;
}

/* =========================================================
   HEADER
========================================================= */
.titulo-secciones-centrado {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center
}

.titulo-secciones-centrado h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Alinea verticalmente la imagen y el texto */
    gap: 10px;
    /* Espacio opcional entre la imagen y el texto */
}

.titulo-secciones-centrado h2 img {
    width: 30px;
}

.ig-section-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yt-section-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ig-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e1306c;
    background: rgba(225, 48, 108, 0.08);
    border: 1px solid rgba(225, 48, 108, 0.15);
    padding: 7px 16px;
    border-radius: 99px;
    margin-bottom: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: fit-content;
    margin: 0 auto;
}

.ig-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 14px;
}

.ig-title .ig-accent {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ig-desc {
    font-size: 1rem;
    color: #64748b;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
}

.ig-divider {
    width: 50%;
    height: 3px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: 99px;
    margin: 18px auto 0;
}

/* =========================================================
   GRID
========================================================= */

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

/* =========================================================
   POST
========================================================= */

.ig-post {
    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 26px;

    aspect-ratio: 1 / 1;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08);

    transition: 0.4s ease;
}

.ig-post img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

/* =========================================================
   OVERLAY
========================================================= */

.ig-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.45));

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;

    transition: 0.4s ease;
}

.ig-overlay i {
    color: white;
    font-size: 34px;

    transform: translateY(10px);

    transition: 0.4s ease;
}

/* =========================================================
   HOVER
========================================================= */

.ig-post:hover {
    transform: translateY(-8px);
}

.ig-post:hover img {
    transform: scale(1.05);
}

.ig-post:hover .ig-overlay {
    opacity: 1;
}

.ig-post:hover .ig-overlay i {
    transform: translateY(0);
}

/* =========================================================
   CTA
========================================================= */

.ig-cta {
    display: flex;
    justify-content: center;

    margin-top: 50px;
}

.ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 26px;

    border-radius: 999px;

    background: #111827;
    color: white;

    font-weight: 600;

    text-decoration: none;

    transition: 0.3s ease;
}

.ig-follow-btn:hover {
    transform: translateY(-3px);
}
/* pagina EMPRESAS*/
/* ── Beneficios pagina empresas ── */
        .beneficios-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }
        .beneficios-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.6rem 0;
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-text, #1e293b);
            border-bottom: 1px solid #f1f5f9;
        }
        .beneficios-list li:last-child { border-bottom: none; }
        .beneficios-list li i {
            color: #1e3a8a;
            margin-top: 3px;
            flex-shrink: 0;
        }

        /* ── Instrumentos cards ── pagina empresas */
        .instrumento-card {
            background: #f8faff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            height: 100%;
            transition: box-shadow 0.2s;
        }
        .instrumento-card:hover {
            box-shadow: 0 4px 20px rgba(30,58,138,0.10);
        }
        .instrumento-card i {
            font-size: 1.5rem;
            color: #1e3a8a;
            margin-bottom: 0.75rem;
            display: block;
        }
        .instrumento-card h5 {
            font-size: 1rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.25rem;
        }
        .instrumento-card p {
            font-size: 0.9rem;
            color: #64748b;
            margin: 0;
        }

        /* ── Ahorro highlight ── pagina empresas */
        .ahorro-highlight {
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
            color: #fff;
            border-radius: 16px;
            padding: 2rem 2.5rem;
        }
        .ahorro-highlight h3 { font-weight: 800; }
        .ahorro-highlight .ahorro-numero {
            font-size: 2.5rem;
            font-weight: 800;
            color: #facc15;
        }
        .ahorro-highlight p { color: #e2e8f0; }

        /* ── CTA section ──  pagina empresas*/
        .empresas-cta {
            background: #f8faff;
            border-top: 1px solid #e2e8f0;
            padding: 4rem 0;
            text-align: center;
        }
        .empresas-cta h2 {
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 1rem;
        }
        .empresas-cta p {
            color: #64748b;
            max-width: 560px;
            margin: 0 auto 2rem;
        }
/* =========================================================
   RESPONSIVE
========================================================= */


@media (max-width: 576px) {

    .instagram-section {
        padding: 70px 0;
    }

    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ig-title {
        font-size: 32px;
    }

    .chatbot-float{
        width:54px;
        height:54px;

        font-size:22px;

        right:15px;
        bottom:80px;
    }    

}

/* PAGINA QUIENES SOMOS */
/* ── PAGE HERO ── */
.page-hero {
    background: linear-gradient(135deg, #060c1c 0%, #1d4ed8 100%);
    /*padding: 140px 0 80px;*/
    padding: 110px 0 45px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── ABOUT SECTION ── */
.about-section {
    padding: 96px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-text .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: #eff6ff;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-text h2 span {
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.pillar-icon {
    width: 38px;
    height: 38px;
    background: #dbeafe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.pillar-text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
}

.pillar-text span {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
}

/* ── MAP SECTION ── */
.map-section {
    padding: 96px 0;
    background: #ffffff;
    border-top: 2px solid #e2e8f0;
}

.map-header {
    text-align: center;
    margin-bottom: 56px;
}

.map-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: #eff6ff;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
}

.map-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.map-header p {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 480px;
    margin: 0 auto;
}

.map-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 64px;
    flex-wrap: wrap;
}

.map-container {
    position: relative;
    width: fit-content;
}

/* MAPA */
.argentina-map {
    width: 300px;
    flex-shrink: 0;
    filter: drop-shadow(0 8px 32px rgba(30, 58, 138, 0.12));
}

/* Pines del mapa */
/* PIN */
.map-pin {
    position: absolute;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* círculo */
.pin-dot {
    width: 30px;
    height: 30px;
    background: #ffffff;
    border: 2px solid #1e3a8a;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(30, 58, 138, 0.2);
    animation: pulse 2s infinite;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* logo */
.pin-dot img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Buenos Aires */
.pin-ba {
    left: 56%;
    top: 43%;
}

/* Santiago del Estero */
.pin-sgo {
    left: 41%;
    top: 16%;
}


/* .map-pin {
    cursor: pointer;
}
 */
.map-pin circle {
    transition: r 0.2s ease;
}

.map-pin:hover circle.pin-outer {
    r: 18;
}

.map-tooltip {
    position: absolute;

    bottom: 38px;
    left: 50%;

    transform:
        translateX(-50%) translateY(8px);

    padding: 10px 16px;

    border-radius: 12px;

    background: rgba(15, 23, 42, 0.96);

    color: white;

    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.25);

    backdrop-filter: blur(10px);
}

/* flecha */
.map-tooltip::after {
    content: "";

    position: absolute;

    top: 100%;
    left: 50%;

    transform: translateX(-50%);

    border-width: 6px;
    border-style: solid;

    border-color:
        rgba(15, 23, 42, 0.96) transparent transparent transparent;
}

/* hover */
.map-pin:hover .map-tooltip {
    opacity: 1;
    visibility: visible;

    transform:
        translateX(-50%) translateY(0);
}

/* Animación */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(30, 58, 138, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(30, 58, 138, 0);
    }
}

/* Leyenda */
.map-legend {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    border: 1px solid #e2e8f0;
    min-width: 280px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.legend-item:hover {
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.12);
    transform: translateY(-2px);
}

.legend-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.legend-dot img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.legend-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.legend-info span {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
}

/* ═══════════════════ YOUTUBE SECTION ═══════════════════ */
/* 
.contenedor-youtube {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.contenedor-youtube > div {
    min-width: 0;
}

.youtube-section {
    padding: 80px 0;
    background-color: var(--white);
    border-top: 2px solid #e2e8f0;
}

.youtube-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.youtube-section h3 {
    text-align: center;
    font-size: 1.3rem;
}

.yt-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.yt-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c00;
    margin-bottom: 12px;
    background: rgba(204, 0, 0, 0.07);
    padding: 6px 14px;
    border-radius: 99px;
}

.yt-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.yt-desc {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.yt-player-wrap {
    max-width: 860px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.yt-player-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.yt-loading {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.yt-cta {
    text-align: center;
    margin-top: 32px;
}

.yt-playlist-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background-color: #c00;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.yt-playlist-btn:hover {
    background-color: #a50000;
    transform: translateY(-2px);
}
 */

/* =========================
   YOUTUBE SECTION
========================= */

.youtube-section {
    padding: 60px 0;
    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f5f8fc 100%);

    position: relative;
    overflow: hidden;
}

.youtube-section::before {
    content: "";

    position: absolute;
    top: -200px;
    right: -200px;

    width: 500px;
    height: 500px;

    background:
        radial-gradient(circle,
            rgba(31, 111, 235, .08),
            transparent 70%);

    pointer-events: none;
}

.youtube-section h2 {
    text-align: center;
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 70px;
    color: #081120;
    font-weight: 700;
}

/* GRID */

.contenedor-youtube {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* CARD */

.yt-card {
    background: #fff;

    border-radius: 28px;

    padding: 24px;

    border: 1px solid rgba(15, 23, 42, .06);

    box-shadow:
        0 10px 30px rgba(15, 23, 42, .06);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    position: relative;

    overflow: hidden;
}

.yt-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 30px 60px rgba(15, 23, 42, .12);

    border-color:
        rgba(31, 111, 235, .18);
}

/* TOP LIGHT */

.yt-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
            #1f6feb,
            #3b82f6);
}

/* TITLES */

.yt-section-header {
    margin-bottom: 20px;
}

.yt-section-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #081120;
    margin: 0;
    min-height: 58px;
    line-height: 1.2;
}

/* VIDEO */

.yt-player-wrap {
    border-radius: 22px;
    overflow: hidden;

    position: relative;

    background: #000;
}

.yt-facade {
    position: relative;
    cursor: pointer;
}

.yt-thumb {
    width: 100%;
    display: block;

    transition:
        transform .5s ease,
        opacity .5s ease;
}

.yt-facade:hover .yt-thumb {
    transform: scale(1.04);
    opacity: .88;
}

/* PLAY BUTTON */

.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    width: 78px;
    height: 78px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .92);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    color: #ff0000;

    backdrop-filter: blur(10px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .25);

    transition:
        transform .3s ease,
        background .3s ease;
}

.yt-facade:hover .yt-play-btn {
    transform:
        translate(-50%, -50%) scale(1.08);

    background: #fff;
}

/* VIDEO TITLE */

.yt-video-title {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;

    padding:
        40px 18px 18px;

    color: #fff;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .92) 0%,
            rgba(0, 0, 0, .72) 35%,
            rgba(0, 0, 0, .28) 70%,
            transparent 100%);

    text-shadow:
        0 2px 10px rgba(0, 0, 0, .5);
}

/* CTA */

.yt-cta {
    margin-top: 22px;
}

.yt-playlist-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;

    padding: 14px 20px;

    border-radius: 16px;

    background: #081120;
    color: #fff;

    text-decoration: none;
    font-weight: 600;

    transition:
        transform .3s ease,
        background .3s ease;
}

.yt-playlist-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

/* RESPONSIVE */

@media(max-width:1100px) {

    .contenedor-youtube {
        grid-template-columns: 1fr;
    }

    .youtube-section h2 {
        font-size: 40px;
    }
}

/* ─── SECCIÓN INVIU ─── */
.inviu-section {
    background: #ffffff;
    border-top: 2px solid #e2e8f0;
}

.inviu-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: #dbeafe;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.inviu-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.inviu-section p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 12px;
}

.inviu-alias {
    font-size: 0.88rem !important;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 10px 16px;
    color: #1e3a8a !important;
    margin-bottom: 24px !important;
    display: inline-block;
}

.inviu-alias strong {
    color: var(--primary);
    letter-spacing: 0.02em;
}

.descargas-container {
    /* display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px; */
    margin-top: 8px;
}

.descargas-container img {
    height: 42px;
    width: auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.descargas-container img:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}



/* Responsive */

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .map-wrap {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .argentina-map {
        width: 260px;
    }

    .map-legend {
        width: 100%;
        max-width: 400px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .investments-container {
        grid-template-columns: 1fr;
    }

    .investments-image {
        order: 2;
    }

    .nav {
        display: none;
    }

    /* .header-actions .btn {
        display: none;
    } */
    .header-actions .btn:not(.btn-primary) {
        display: none;
    }

    /* Mantiene visible Abrir Cuenta */
    .header-actions .btn-primary {
        display: inline-flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-top {
        /* grid-template-columns: 1fr; */
        padding-bottom: 60px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
        gap: 2rem;
    }

    .rosval-dropdown {
        display: none;
    }

    .mobile-rosval-logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }

    .mobile-rosval-logo img {
        height: 45px;
        width: auto;
    }

    .mobile-rosval-logo span {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1e3a8a;
        /* mismo azul institucional */
    }

    .split-layout {
        flex-direction: column;
    }

    .left-panel,
    .right-panel {
        padding: 3rem 1.5rem;
    }

    .phone-image {
        display: none;
    }

    .left-panel {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contenedor-youtube {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }



    .ig-title {
        font-size: 1.8rem;
    }

    .youtube-section {
        padding: 60px 0;
    }

    .yt-title {
        font-size: 1.8rem;
    }

    .yt-player-wrap {
        border-radius: 10px;
    }

    .hero-centered h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .inviu-section p {
        max-width: 100%;
    }

    .descargas-container {
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }

    /* Layout en columna real */
    .split-layout {
        flex-direction: column;
    }

    /* Panels más compactos */
    .left-panel,
    .right-panel {
        padding: 2rem 1.2rem;
    }

    /* Centrar contenido derecho */
    .right-panel {
        align-items: center;
        text-align: center;
    }

    .right-content {
        max-width: 100%;
    }

    /* QR adaptable */
    .qr-code {
        width: 200px;
        height: auto;
    }

    /* Store buttons columna */
    .store-buttons {
        flex-direction: column !important;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 260px;
    }

    /* Steps mejor alineados */
    .steps-container {
        max-width: 100%;
    }

    .step-row {
        gap: 1rem;
    }

    /* Intro más chica */
    .intro-section h1 {
        font-size: 1.8rem;
    }

    .intro-section p {
        font-size: 1rem;
    }

    /* finanzas*/
    .economista-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .economista-badges {
        justify-content: center;
    }

    .economista-desc {
        max-width: 100%;
    }

    .reportes-grid {
        grid-template-columns: 1fr;
    }
}


/* GEMINI */
/* =========================================================
   FENIX SECTION
========================================================= */
/* =========================================================
   CONTROL SLIDE IMAGES
========================================================= */

.control-images {
    position: relative;
    width: 50%;
    min-height: 520px;
    align-items: center;
    overflow: visible;
}

/* LAPTOP */

#laptop-control {
    width: 100%;
    position: relative;
    z-index: 2;

    border-radius: 24px;

    /* box-shadow:
        0 20px 60px rgba(0,0,0,0.18); */
}

/* MOVIMIENTOS */

#movimientos-control {
    position: absolute;

    bottom: -20px;
    left: 10px;

    width: 300px;

    z-index: 4;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);

    animation: floatCard 4s ease-in-out infinite;
}

/* SEARCH */

#search-control {
    position: absolute;

    top: -20px;
    right: 10px;

    width: 260px;

    z-index: 4;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);

    animation: floatCard 5s ease-in-out infinite;
}

/* FLOAT */

@keyframes floatCard {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

.fenix-section {
    position: relative;
    padding: 10px 0;
    overflow: hidden;
}

.fenix-wrapper {
    padding-left: 20px;
}

.fenix-wrapper.three-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 70px;
}

/* =========================
   IMAGENES
========================= */

.fenix-images {
    position: relative;
    min-height: 620px;
    /* width: 50%; */
    /*
    position: relative;
    
    min-height: 500px;
    */
}

.img-fenix-contenedor {
    display: flex;
    align-items: center;
}

.fenix-image {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.18);
    transition: 0.4s ease;

}

.fenix-image img {
    width: 100%;
    display: block;
}

.image-back {
    width: 78%;
    left: 0;
    /* top: 50px; */
    top: 20%;
    opacity: 0.9;
}

.image-front {
    width: 78%;
    right: -20px;
    top: 10%;
    /* top:0; */
    z-index: 2;
}

.fenix-images:hover .image-front {
    transform: translateY(-10px);
}

.fenix-images:hover .image-back {
    transform: translateY(10px);
}

/* =========================
   CARD FLOTANTE
========================= */

.fenix-floating-card {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 14px 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    z-index: 5;
}

.fenix-floating-card i {
    color: #8c52ff;
}

/* =========================
   TEXTO
========================= */

.fenix-content {
    width: 45%;
}

.fenix-content h3 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

.fenix-content h3 span {
    background: linear-gradient(90deg, #8c52ff, #5b8cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fenix-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.fenix-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fenix-features.compact {
    gap: 18px;
}

.fenix-features.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.fenix-features.compact .feature-item p {
    font-size: 14px;
    line-height: 1.5;
}

.fenix-features.compact .feature-item strong {
    font-size: 15px;
}

@media (max-width: 576px) {

    .fenix-features.two-columns {
        grid-template-columns: 1fr;
    }

}

/* 
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #222;
}

.feature-item i {
    color: #8c52ff;
}
 */
/* =========================
   RESPONSIVE
========================= */


@media (max-width: 600px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .slider {
        padding-top: 1rem;
        flex-direction: column;
        gap: 16px;
    }

    .carousel__nav {
        flex-direction: row;
    }

    .about-section,
    .map-section {
        padding: 64px 0;
    }

    .contenedor-youtube {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 1700px) {

    .container {
        max-width: 1600px;
    }

}

/* ═══════════════════════════════════════
   FONDOS ALTERNADOS SECCIONES
═══════════════════════════════════════ */

/* INVIU – blanco puro */
.inviu-section {
    background: #ffffff;
}

/* Instagram – azul muy suave */
.instagram-section {
    background: linear-gradient(160deg, #f0f5ff 0%, #f8faff 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

/* YouTube – blanco */
.youtube-section {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

/* ── YouTube grid responsive ── */
@media (max-width: 900px) {
    .contenedor-youtube {
        grid-template-columns: 1fr;
    }
}


/* prueba en index */
.phone-wrapper {
    position: relative;
    width: 520px;
    height: 720px;
}


.hero-phone {
    min-height: 100vh;
    /* background:#081120; */
    overflow: visible;
    position: relative;
    display: flex;
    align-items: center;

    background: #ffffff;

    padding: 10px 0;
    /* 
    overflow:visible;

    position:relative;     */
}

.hero-phone::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top right,
            rgba(38, 132, 255, .08),
            transparent 40%),
        radial-gradient(circle at bottom left,
            rgba(0, 200, 120, .06),
            transparent 40%);

    pointer-events: none;
}

.hero-phone-wrapper {
    /* display:flex;
    align-items:center; */
    /* justify-content:space-between; */
    gap: 80px;
    position: relative;
}

.hero-phone-content {
    max-width: 520px;
    color: white;
}

.hero-phone-content h1 {
    color: #081120;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-phone-content p {
    color: #5f6b7a;
    font-size: 18px;
    opacity: .8;
    margin-bottom: 32px;
}

.phone-scene {
    position: relative;
    width: 100%;
    height: 100%;

}

.phone-device {
    width: 340px;
    margin: auto;
    border-radius: 40px;

    transform:
        rotateY(-14deg) rotateX(10deg);

    position: relative;
    z-index: 2;

    overflow: visible;

    background: none;
    box-shadow: none;
    filter: none;
}

.phone-device img {
    width: 100%;
    display: block;

    filter:
        drop-shadow(0 40px 80px rgba(15, 23, 42, .22));

    border-radius: 40px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, .70);
    backdrop-filter: blur(10px);

    border-radius: 24px;

    padding: 18px 24px;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .15);

    z-index: 5;
}

.floating-card span {
    display: block;
    font-weight: 700;
    color: #081120;
}

.floating-card small {
    color: #6b7280;
    color: #1f9a03;
}

/* .floating-card-1{
    top:60px;
    right:0;
}

.floating-card-2{
    bottom:120px;
    left:0;
} */
.floating-card-1 {
    top: 40px;
    right: -40px;
}

.floating-card-2 {
    bottom: 80px;
    left: -40px;
}

/* Team section */


.team-section {
    position: relative;
    padding: 140px 0;
    /* background:
        linear-gradient(
            to bottom,
            #081120 0%,
            #0c1728 100%
        ); */
    background: linear-gradient(135deg, #060c1c 0%, #1d4ed8 100%);
    overflow: hidden;
}

.team-section::before {
    content: '';
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
}

.team-divider {
    position: absolute;
    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 80%;
    height: 1px;

    background:
        linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, .25),
            transparent);
}

.team-divider::after {
    content: "";

    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 220px;
    height: 120px;

    background: rgba(70, 130, 255, .18);

    filter: blur(80px);
}

.team-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.team-header h2 {
    color: white;
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.team-header p {
    color: rgba(255, 255, 255, .7);
    font-size: 18px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    border: 1px solid rgba(255, 255, 255, .1);

    background: rgba(255, 255, 255, .05);

    border-radius: 999px;

    color: #72baff;

    margin-bottom: 24px;

    font-size: 14px;
    font-weight: 600;

    backdrop-filter: blur(12px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;

    max-width: 1000px;
    margin: auto;
}

.team-card {
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .08),
            rgba(255, 255, 255, .03));

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 32px;

    padding: 40px;

    text-align: center;

    transition: .4s ease;

    backdrop-filter: blur(20px);

    position: relative;

    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);

    border-color: rgba(114, 186, 255, .4);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .35);
}

.team-image {
    width: 220px;
    height: 220px;

    margin: 0 auto 28px;

    border-radius: 24px;

    overflow: hidden;

    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: .5s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-info h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 12px;
}

.team-info span {
    color: #72baff;
    font-size: 16px;
    font-weight: 600;
}


.leadership-section {
    position: relative;
    padding: 10px 0;
    background: #081120;
    padding-bottom: 50px;
}

.leadership-divider {
    width: 1px;
    height: 120px;

    background:
        linear-gradient(to bottom,
            transparent,
            rgba(114, 186, 255, .6),
            transparent);

    margin: 0 auto 10px;
}

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

.leadership-header span {
    color: #72baff;
    font-size: 14px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.leadership-header h2 {
    color: white;
    font-size: 54px;
    line-height: 1.1;

    max-width: 820px;

    margin:
        24px auto 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;

    align-items: start;
}

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

.leader-photo {
    position: relative;

    width: 400px;/*220 viejo*/
    /*height: 400px;/*220 viejo*/

    margin: 0 auto 32px;

    /* border-radius: 50%; */

    overflow: hidden;

    border: 2px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .35);
}

.leader-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    /* border-radius: 50%; */

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .25),
            transparent 45%);
}

.leader-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .7s ease;
}

.leader-photo::before {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    background: rgba(114, 186, 255, .18);

    filter: blur(50px);

    z-index: -1;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

.leader-item:hover img {
    transform: scale(1.04);
}

.leader-info h3 {
    color: white;

    font-size: 32px;
    font-weight: 600;

    margin-bottom: 12px;
}

.leader-info p {
    color: #72baff;

    font-size: 16px;
    letter-spacing: .08em;
    text-transform: uppercase;
}


@media(max-width:992px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .leadership-header h2 {
        font-size: 38px;
    }

    .leader-photo {
        /* width: 180px; */
         width: 400px;
        /* height: 180px; */
    }

    .leader-photo img {
        height: 460px;
    }


}




.floating-market-card {

    position: absolute;

    width: 290px;

    padding: 28px;

    border-radius: 32px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .92),
            rgba(255, 255, 255, .72));

    backdrop-filter: blur(24px);

    border:
        1px solid rgba(255, 255, 255, .7);

    box-shadow:
        0 30px 80px rgba(15, 23, 42, .10);

    z-index: 20;

    overflow: hidden;
}

.floating-market-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .45),
            transparent 45%);

    pointer-events: none;
}

.market-label {
    display: block;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .12em;

    color: #1877f2;

    margin-bottom: 16px;
}

.floating-market-card h4 {
    font-size: 18px;

    line-height: 1.3;

    font-weight: 700;

    color: #081120;

    margin-bottom: 22px;
}

.market-logos {
    display: flex;
    align-items: center;
    gap: 14px;
}

.market-logo {
    width: 64px;
    height: 64px;

    border-radius: 50%;

    background: white;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, .08);

    overflow: hidden;
    /* 
    width:64px;
    height:64px;

    border-radius:18px;

    background:white;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
        0 10px 30px rgba(15,23,42,.08); */

    transition: .3s ease;
}

.market-logo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    /* width:34px;
    height:34px;

    object-fit:contain; */
    /* en svg*/
    /*
    width:34px;
    height:34px;

    object-fit:contain;
    */

}