@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
}

:root {
    /* Identidad Movida Ciudad - Pitch Black Theme */
    --brand-black: #000000;
    --brand-white: #ffffff;
    --brand-green: #00a488;
    --brand-green-glow: #00ffa3;
    --brand-magenta: #e94e89;
    /* Vivid Fuchsia */

    --bg-main: var(--brand-black);
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-primary: var(--brand-white);
    --text-secondary: #cccccc;

    --radius-main: 2.5rem;
    --radius-btn: 50vw;

    /* Typography - Montserrat Base */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --container-max: 1200px;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 900;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    padding: 1rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    gap: 2rem;
}

.header-container .brand-lockup {
    justify-self: start;
}

.header-container .nav-links {
    justify-self: center;
}

.header-container .btn-sumate {
    justify-self: end;
}

/* Surgical Logo Update */
.brand-logo-modern {
    display: flex;
    align-items: center;
}

.brand-logo-modern img {
    height: 60px;
    width: auto;
    display: block;
    filter: brightness(1.1);
}

.brand-lockup:hover .brand-logo-modern svg {
    filter: drop-shadow(0 0 15px rgba(0, 255, 163, 0.4));
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}


.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    opacity: 0.8;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 110px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand-green);
    opacity: 1;
}

/* Dropdown Styles */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(11, 7, 2, 0.95);
    backdrop-filter: blur(20px);
    min-width: 240px;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.2rem;
    font-size: 0.75rem !important;
    opacity: 1 !important;
    white-space: nowrap;
    border-radius: 0.8rem;
    transition: all 0.2s ease;
    text-align: left;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--brand-green) !important;
}

.btn-sumate {
    background: var(--brand-green);
    color: var(--brand-black);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-btn);
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(0, 164, 136, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    text-align: center;
    min-width: 180px;
}

.btn-sumate:hover {
    transform: scale(1.05);
    background: var(--brand-magenta);
    box-shadow: 0 0 40px var(--brand-magenta);
    color: var(--brand-white);
}

.btn-black {
    background: var(--brand-black);
    color: var(--brand-white);
    padding: 1.5rem 3.5rem;
    border-radius: var(--radius-btn);
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-black:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    color: var(--brand-white);
}

/* Hero Section */
.hero {
    padding: 11rem 0 6rem;
    min-height: 95vh;
    display: flex;
    align-items: center;
}

.hero-card {
    position: relative;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('portada.jpg');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-main);
    padding: 9rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.hero-tag {
    background: rgba(0, 164, 136, 0.15);
    color: var(--brand-green);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-btn);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0, 164, 136, 0.3);
}

.hero-tag .dot {
    width: 8px;
    height: 8px;
    background: var(--brand-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-green);
}

.hero-title {
    font-size: clamp(2.5rem, 9vw, 5.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-title .brand-accent, .banner-title .brand-accent {
    color: var(--brand-magenta);
    text-shadow: 0 10px 40px rgba(233, 78, 137, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--brand-white);
    max-width: 800px;
    margin: 0 auto 4rem;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-social-link {
    color: var(--brand-green);
    border-color: rgba(0, 164, 136, 0.3);
    background: rgba(0, 164, 136, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-social-link .social-icon {
    position: absolute;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1.5rem;
}

.hero-social-link .social-text {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.hero-social-link:hover {
    background: var(--brand-green) !important;
    border-color: var(--brand-green) !important;
    transform: scale(1.15) translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0, 164, 136, 0.4);
}

.hero-social-link:hover .social-text {
    opacity: 0;
    transform: scale(1.5);
}

.hero-social-link:hover .social-icon {
    opacity: 1;
    transform: scale(1);
    color: var(--brand-white);
}

.btn-pill {
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-btn);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.btn-pill.primary {
    background: var(--brand-green);
    color: var(--brand-black);
    box-shadow: 0 15px 40px rgba(0, 164, 136, 0.2);
}

.btn-pill.outline {
    border: 2px solid var(--brand-white);
    color: var(--brand-white);
}

.btn-pill:hover {
    transform: translateY(-5px);
    background: var(--brand-green-glow);
    color: var(--brand-black);
    border-color: var(--brand-green-glow);
}

/* Pilares Section */
.section-pilares {
    padding: 5rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.section-titles h2 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.section-titles p {
    color: var(--brand-green-grey);
    font-weight: 700;
    font-size: 1.15rem;
}

.btn-link {
    color: var(--brand-green);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius-btn);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.pilar-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2.5rem;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pilar-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-15px);
    border-color: var(--brand-green);
}

.pilar-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 164, 136, 0.1);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    color: var(--brand-green);
    font-size: 1.8rem;
}

.pilar-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    overflow-wrap: break-word;
}

.pilar-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
}

/* En las Calles Section */
.section-calles {
    padding: 5rem 0;
}

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

.calles-title {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.calles-title span {
    width: 10px;
    height: 50px;
    background: var(--brand-green);
    border-radius: 5px;
}

.carousel-nav {
    display: flex;
    gap: 1.25rem;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--brand-green);
    color: var(--brand-black);
    border-color: var(--brand-green);
}

.carousel-scroll {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    padding: 1.5rem 0 5rem;
    scrollbar-width: none;
}

.carousel-scroll::-webkit-scrollbar {
    display: none;
}

.calle-card {
    min-width: 420px;
    border-radius: 3rem;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.calle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.calle-card:hover .calle-img {
    transform: scale(1.15);
}

.calle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 7, 2, 0.95), transparent 70%);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.calle-type {
    background: var(--brand-green);
    color: var(--brand-black);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.calle-card h3 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.5px;
}
/* Branding Logos & Utilities */
.header-container .brand-logo-modern img {
    height: 60px;
    width: auto;
}

.footer-brand .brand-logo-modern img {
    height: 50px;
    width: auto;
}

.hero-social-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.qr-img {
    max-width: 100%;
    max-height: 300px;
    height: auto;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: white;
    padding: 10px;
}

/* Subpage Utilities */
.subpage-main {
    padding-top: 120px;
    padding-bottom: 20px;
    min-height: 60vh;
}

.subpage-pilares {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.pilar-actions-wrap {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-calle-nomargin {
    margin-top: 0 !important;
}

.outline-alt.btn-calle-nomargin {
    border-color: rgba(255,255,255,0.2);
}

/* Newsletter Section */
.section-newsletter {
    padding: 3rem 0;
}

.newsletter-box.centered {
    background: var(--brand-green);
    border-radius: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    color: var(--brand-black);
    box-shadow: 0 40px 100px rgba(0, 164, 136, 0.3);
}

.newsletter-content {
    max-width: 650px;
    width: 100%;
}

.newsletter-text h2 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.newsletter-text p {
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 2rem;
    line-height: 1.4;
}

.newsletter-cta {
    width: 100%;
}

.newsletter-cta .btn-black {
    text-decoration: none;
    display: inline-flex;
    max-width: 400px;
    margin: 0 auto;
}

.social-nav-newsletter {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 1rem;
}

.social-nav-newsletter .social-link {
    width: 60px;
    height: 60px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.05);
    color: var(--brand-black);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-nav-newsletter .social-link .social-icon {
    position: absolute;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1.5rem;
}

.social-nav-newsletter .social-link .social-text {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.social-nav-newsletter .social-link:hover {
    background: var(--brand-black) !important;
    color: var(--brand-white) !important;
    border-color: var(--brand-black) !important;
    transform: scale(1.15) translateY(-3px) !important;
}

.social-nav-newsletter .social-link:hover .social-text {
    opacity: 0;
    transform: scale(1.5);
}

.social-nav-newsletter .social-link:hover .social-icon {
    opacity: 1;
    transform: scale(1);
    color: var(--brand-white);
}

.newsletter-disclaimer {
    font-size: 0.75rem;
    text-align: center;
    font-weight: 900;
    opacity: 0.7;
    text-transform: uppercase;
    margin-top: 1.5rem;
    letter-spacing: 1px;
}

/* FooterStyles */
.main-footer {
    padding: 2rem 0 2rem;
    background: var(--brand-black);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 1.5rem auto 0;
    max-width: 400px;
    font-weight: 600;
}

.social-link {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.03);
}

.social-link:hover {
    background: var(--brand-green);
    color: var(--brand-black);
    border-color: var(--brand-green);
}

.footer-col h4 {
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 1rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-bottom-links {
    display: flex;
    gap: 4rem;
}

/* Manifiesto Page Styles */
.manifiesto-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.manifiesto-header {
    text-align: center;
    margin-bottom: 4rem;
}

.manifiesto-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.manifiesto-subtitle-top {
    color: var(--brand-green);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.manifiesto-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.manifiesto-intro {
    margin-bottom: 2rem;
    font-size: 1.3rem;
    color: var(--brand-white);
    line-height: 1.6;
}

.manifiesto-quote-box {
    background: rgba(0, 164, 136, 0.1);
    border-left: 4px solid var(--brand-green);
    padding: 1.5rem;
    margin: 3rem 0;
    border-radius: 0 1rem 1rem 0;
}

.manifiesto-quote-text {
    margin: 0;
    color: var(--brand-green);
    font-weight: 900;
    font-size: 1.4rem;
    text-transform: uppercase;
    line-height: 1.4;
}

.manifiesto-paragraph {
    margin-bottom: 1.5rem;
}

.manifiesto-paragraph-last {
    margin-bottom: 3rem;
}

.manifiesto-section-title {
    color: var(--brand-white);
    font-size: 1.8rem;
    margin: 4rem 0 2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.manifiesto-list {
    list-style-type: none;
    padding-left: 0;
}

.manifiesto-list-item {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.manifiesto-list-item-short {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.manifiesto-list-icon-magenta {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--brand-magenta);
}

.manifiesto-list-icon-green {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--brand-green);
}

.manifiesto-list-strong {
    color: var(--brand-white);
}

.manifiesto-footer {
    text-align: center;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.manifiesto-footer p {
    margin-bottom: 2rem;
    font-weight: 600;
}

.manifiesto-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.manifiesto-download-icon {
    color: var(--brand-magenta);
}

/* Mobile Adjustments */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-card {
        padding: 6rem 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .section-titles h2 {
        font-size: 2.8rem;
    }

    .calles-title {
        font-size: 2.8rem;
    }

    .carousel-nav {
        display: none;
    }

    .carousel-scroll {
        flex-direction: column;
        overflow-x: visible;
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .calle-card {
        min-width: 100%;
        width: 100%;
        aspect-ratio: auto;
        height: 450px;
    }

    .section-calles {
        padding: 3rem 0;
    }

    .calles-header {
        margin-bottom: 2rem;
    }

    .section-banner {
        padding: 2.5rem 0;
    }

    .newsletter-box {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .newsletter-text h2 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-brand p {
        margin: 1rem auto 2.5rem;
    }

    .social-nav {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

/* --- Mobile UI & Navigation Improvements --- */

/* Utility Visibility */
.mobile-only {
    display: none;
}

/* Hide mobile components by default (Desktop) */
.mobile-nav-toggle,
.mobile-drawer {
    display: none;
}

/* Responsive Header Layout - Tablet Optimizations */
@media (max-width: 1100px) {
    .header-container {
        padding: 0 2rem;
        gap: 1rem;
    }

    .nav-links {
        gap: 0.75rem;
    }
}

/* New Mobile/Narrow Breakpoint */
@media (max-width: 850px) {
    .main-header {
        padding: 0.75rem 0;
    }

    .header-container {
        grid-template-columns: auto 1fr auto;
        padding: 0 1rem;
        gap: 1rem;
        max-width: 100%;
    }

    /* Equilibrar espacio del hero para que las redes sociales queden en el centro exacto */
    .hero {
        padding: 8.5rem 0 3rem;
        min-height: auto;
    }

    .hero-social-container {
        margin-bottom: 2.5rem;
    }

    .hero-card {
        padding: 2.5rem 1.5rem; /* Achicar el relleno interno de la card para que el texto suba y se vea sin scrollear */
    }

    .nav-links {
        display: none !important;
    }

    .mobile-only {
        display: flex;
    }

    /* Header Button Optimization - Ensure it fits in the middle */
    .btn-sumate.header-btn {
        min-width: auto;
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
        white-space: nowrap;
        justify-self: center;
        margin: 0 auto;
    }

    .btn-sumate.header-btn span {
        display: inline;
    }

    /* Logo sizing for overlap prevention */
    .brand-logo-modern img {
        height: 35px;
    }

    .brand-lockup {
        gap: 0.4rem;
        justify-self: start;
    }

    /* Hamburger Menu Toggle */
    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1100;
        position: relative;
        justify-self: end;
    }

    .mobile-nav-toggle span {
        width: 100%;
        height: 2px;
        background: var(--brand-white);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Drawer */
    .mobile-drawer {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--brand-black);
        z-index: 1050;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 8rem 2rem 2rem;
        display: block;
        opacity: 0;
        visibility: hidden;
    }

    .mobile-drawer.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .mobile-nav-links a:not(.btn-sumate),
    .mobile-dropdown-trigger {
        font-family: inherit;
        font-size: 1.1rem;
        font-weight: 900;
        color: var(--brand-white);
        text-transform: uppercase;
        background: none;
        border: none;
        width: 100%;
        text-align: center;
        text-decoration: none;
        letter-spacing: 1px;
    }

    .mobile-nav-links .btn-sumate {
        width: 100%;
        max-width: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1.1rem;
        border-radius: 3rem;
        font-size: 1.1rem;
        font-weight: 900;
        margin-top: 1.5rem;
        background: transparent;
        color: var(--brand-green);
        border: 2px solid var(--brand-green);
        box-shadow: 0 0 15px rgba(0, 164, 136, 0.2);
        text-transform: uppercase;
    }

    /* Mobile Dropdown */
    .mobile-dropdown {
        width: 100%;
        text-align: center;
    }

    .mobile-dropdown-content {
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 1rem;
        border-radius: 1.5rem;
    }

    .mobile-dropdown.active .mobile-dropdown-content {
        display: flex;
    }

    .mobile-dropdown-content a {
        font-size: 1rem;
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 0.75rem;
        gap: 0.5rem;
    }

    .brand-logo-modern img {
        height: 28px;
    }

    .btn-sumate.header-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.6rem;
    }

    .btn-sumate.header-btn span {
        display: none;
    }
}

body.menu-open {
    overflow: hidden;
}

/* Modal En Construcción */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 4rem 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--brand-white);
}

.modal-icon {
    font-size: 3.5rem;
    color: var(--brand-magenta);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(233, 78, 137, 0.4));
}

.modal-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.modal-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.modal-content p strong {
    color: var(--brand-green);
}

.active-link {
    color: var(--brand-green) !important;
}

.en-construccion-link {
    opacity: 0.5 !important;
}

.btn-calle {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--brand-white);
    border: 1px solid var(--brand-green);
    border-radius: var(--radius-btn);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-calle:hover {
    background: var(--brand-green);
    color: var(--brand-black);
    transform: translateY(-3px);
}

/* Banner Section */
.section-banner {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.banner-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -2px;
}

/* Pre-title and Separator */
.separator-line {
    width: 60px;
    height: 4px;
    background: var(--brand-magenta);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.pre-title {
    color: var(--brand-green);
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.calle-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.calle-actions .btn-calle {
    margin-top: 1rem;
}

.btn-calle.outline-alt {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--brand-white);
}

.btn-calle.outline-alt:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-white);
    border-color: var(--brand-white);
}

/* Mobile Button Outlines */
@media (max-width: 850px) {
    .btn-pill.outline,
    .btn-calle.outline-alt {
        border-color: var(--brand-green) !important;
    }
    
    .btn-black {
        border: 2px solid var(--brand-green) !important;
    }

    .pilar-card {
        border-color: var(--brand-green) !important;
    }
}