:root {
    --primary: #1e3a8a;
    /* Deep Blue */
    --primary-light: #3b82f6;
    --accent: #f59e0b;
    /* Amber/Gold */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --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;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    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(--bg-light);
}

.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: #f1f5f9;
    transform: translateY(-2px);
}

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

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

/* 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.05);
    height: 80px;
    display: flex;
    align-items: center;
}

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

.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;
}

.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;
    /* Header height */
    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-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: 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);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.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;
}

@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-color: var(--white);
}

.cta-box {
    background-color: var(--primary);
    border-radius: 24px;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>');
}

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

.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);
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.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-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;
}


.logo-img {
    height: 40px;
    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");
}

/* 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: #f8fafc;
    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;
}

@media (max-width: 992px) {
    .split-layout {
        flex-direction: column;
    }

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

    .phone-image {
        display: none;
    }

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

/* Responsive */
@media (max-width: 992px) {
    .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;
    }

    .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 */
    }
}

@media (max-width: 768px) {
    .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;
    }
}

/* ═══════════════════ INSTAGRAM SECTION ═══════════════════ */
.instagram-section {
    padding: 80px 0;
    background-color: #f8faff;
    border-top: 2px solid #e2e8f0;
}

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

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

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

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

.instagram-widget-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.ig-cta {
    text-align: center;
    margin-top: 40px;
}

.ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.ig-follow-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

/* PAGINA QUIENES SOMOS */
/* ── PAGE HERO ── */
.page-hero {
    background: linear-gradient(135deg, #060c1c 0%, #1d4ed8 100%);
    padding: 140px 0 80px;
    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: #f8faff;
    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: #f8faff;
    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;
}

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

/* Pines del mapa */
.map-pin {
    cursor: pointer;
}

.map-pin circle {
    transition: r 0.2s ease;
}

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

/* 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 ═══════════════════ */
.youtube-section {
    padding: 80px 0;
    background-color: var(--white);
    border-top: 2px solid #e2e8f0;
}

.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);
}

@media (max-width: 900px) {
            .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; }
        }
@media (max-width: 768px) {
    .instagram-section {
        padding: 60px 0;
    }

    .ig-title {
        font-size: 1.8rem;
    }    
    .youtube-section {
        padding: 60px 0;
    }

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

    .yt-player-wrap {
        border-radius: 10px;
    }
}
        @media (max-width: 600px) {
            .page-hero { padding: 120px 0 60px; }
            .about-section, .map-section { padding: 64px 0; }
        }