:root {
    --cyan: #38B6FF;
    --red: #E21921;
    --navy: #1D2B4D;
    --white: #FFFFFF;
    --black: #000000;
    --gray-light: #F4F7F6;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-huge: 0 40px 100px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius: 40px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.btn-rc {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
}

.container-rc {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Base Utility Classes */
.bg-cyan {
    background-color: var(--cyan);
}

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

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

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

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

.text-white {
    color: var(--white);
}

.text-cyan {
    color: var(--cyan);
}

.text-red {
    color: var(--red);
}

.text-navy {
    color: var(--navy);
}

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

.rounded-40 {
    border-radius: var(--radius) !important;
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.shadow-huge {
    box-shadow: var(--shadow-huge);
}

.p-40 {
    padding: 40px;
}

.p-60 {
    padding: 60px;
}

.p-80 {
    padding: 50px 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding: 120px 0;
}

.flex-row {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.gap-huge {
    gap: 80px;
}

.wrap-mobile {
    flex-wrap: wrap;
}


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

.grid-three-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-four-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Navbar RC */
.nav-rc {
    background: var(--white);
    padding: 8px 0; /* Reduced padding */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease-in-out, padding 0.4s;
}

.nav-rc.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.menu-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mobile-btn {
    margin-left: auto;
}


.logo-box {
    flex-shrink: 0;
}

.nav-logo {
    height: 120px;
    max-width: 100%;
    transition: var(--transition);
}

.logo-box {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 900;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--cyan);
}

.btn-cta-nav {
    background: var(--red);
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 50px;
}

/* WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 3000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Hero */
.hero-rc {
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #38B6FF 0%, #1D2B4D 100%);
    position: relative;
    overflow: hidden;
}

.hero-rc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    border-radius: 50% 0 50% 0;
    filter: blur(50px);
    z-index: 0;
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.9;
    color: var(--navy);
}

.hero-subtext {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 30px 0;
    opacity: 0.9;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-rc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

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

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

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

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

.hero-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.hero-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
}

.hero-name-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    position: absolute;
    bottom: -50px;
    right: -50px;
    z-index: 1;
}

.hero-img-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Countdown */
.countdown-section {
    padding: 60px 0;
    position: relative;
    z-index: 20;
    border-top: 5px solid var(--red);
}

.countdown-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.timer-unit span {
    font-size: 3.5rem;
    font-family: 'Archivo Black';
    line-height: 1;
}

.timer-unit p {
    font-size: 0.8rem;
    font-weight: 900;
    opacity: 0.7;
}

/* Counters */
.counters-rc {
    margin-top: -60px;
    position: relative;
    z-index: 30;
}

.counter-item-rc {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-huge);
}

.count-val {
    font-size: 3.5rem;
    font-family: 'Archivo Black';
    color: var(--navy);
}

.count-unit {
    font-size: 2rem;
    font-family: 'Archivo Black';
    color: var(--cyan);
}

/* Plan Download */
.features-list p {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.features-list i {
    margin-right: 10px;
}

.btn-huge-icon {
    padding: 15px 35px !important;
}

.btn-huge-icon i {
    font-size: 1.2rem;
    margin-right: 12px;
}

/* Timeline */
.main-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.main-timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--cyan);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: var(--white);
    border: 4px solid var(--red);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}

.right {
    left: 50%;
}

.left {
    left: 0;
}

.right::after {
    left: -12px;
}

.timeline-content {
    padding: 40px;
    background-color: var(--white);
    position: relative;
}

.timeline-year {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

/* Bento Proposals */
.grid-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.bento-card {
    transition: var(--transition);
}

.bento-lg {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-md {
    grid-column: span 2;
}

.icon-huge {
    font-size: 5rem;
}

.icon-md {
    font-size: 3rem;
}

.divider-rc {
    width: 100px;
    height: 8px;
    background: var(--red);
    margin-top: 20px;
}

/* FAQ */
.faq-item {
    background: var(--white);
    border-radius: 25px;
    margin-bottom: 20px;
    padding: 30px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: var(--cyan);
}

.faq-item.active {
    border-color: var(--navy);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 20px;
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item i {
    transition: var(--transition);
}

.faq-item.active i {
    transform: rotate(180deg);
    color: var(--red);
}

/* Social Wall */
.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    border-radius: var(--radius);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-card i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.social-card span {
    font-weight: 900;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.2;
}

.social-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-huge);
}

.fb-card {
    background: #1877F2;
}

.tt-card {
    background: #000000;
}

.wa-card {
    background: #25D366;
}

.mm-card {
    background: var(--cyan);
}

/* Contact Section RESTORATION */
.contact-rc .title-rc {
    margin-bottom: 20px;
}

.social-rc {
    display: flex;
    gap: 20px;
}

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

.social-rc a:hover {
    background: var(--cyan);
    transform: translateY(-5px);
}

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

.input-rc {
    width: 100%;
    padding: 15px 25px;
    border: 2px solid #eee;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.input-rc:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(0, 185, 237, 0.1);
}

textarea.input-rc {
    resize: none;
}

.btn-block {
    width: 100%;
}

/* Animación Pulse */

.pulse {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(226, 25, 33, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(226, 25, 33, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(226, 25, 33, 0);
    }
}

/* Footer & Other */
.banner-rc {
    padding: 120px 0;
}

.title-rc {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

.lead-rc {
    font-size: 1.6rem;
    font-weight: 700;
    opacity: 0.8;
    margin: 30px 0;
}

.news-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.footer-rc {
    background: var(--white);
    padding: 80px 0;
    border-top: 10px solid var(--navy);
}

/* Responsive */
@media (max-width: 1100px) {
    .menu-wrap {
        display: none;
        position: absolute;
        top: 100%;
        left: 5%;
        width: 90%;
        background: var(--white);
        padding: 40px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-huge);
        z-index: 1000;
    }

    .menu-wrap.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-btn {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        color: var(--navy);
    }

    /* Responsive Adjustments */
    .logo-box {
    flex-shrink: 0;
}

.nav-logo { height: 100px; max-width: 100%; }
    .hero-title { font-size: 2.8rem; line-height: 1.2; }
    .hero-subtext { font-size: 1.1rem; }
    .p-80 { padding: 40px 20px; }
    .title-rc { font-size: 2.4rem; }
    
    .search-box input { padding: 15px 15px 15px 50px; font-size: 1rem; }
    .filter-btn { padding: 8px 15px; font-size: 0.9rem; }
    .map-container-rc { height: 350px; border-width: 5px; }

    .menu-wrap {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--navy);
        z-index: 3000;
        padding: 100px 30px;
        text-align: center;
    }

    .menu-wrap.active { display: block; }
    .nav-links { flex-direction: column; gap: 30px; }
    .nav-links li a { color: var(--white); font-size: 1.5rem; }

    .whatsapp-btn { width: 60px; height: 60px; font-size: 1.5rem; bottom: 30px; right: 30px; }
}


/* Multimedia Gallery Projects */
.gallery-project {
    margin-bottom: 80px;
}

.project-header {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 8px solid var(--red);
    data-aos: fade-right;
}

.project-header h3 {
    font-size: 2rem;
    color: var(--navy);
    margin: 0;
    text-transform: uppercase;
}

.project-meta {
    font-weight: 700;
    color: var(--cyan);
    font-size: 1.1rem;
    margin-top: 5px;
}

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

.gallery-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-huge);
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-header h3 {
        font-size: 1.5rem;
    }
}

/* Album Gallery Styles */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.album-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.album-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.album-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(29, 43, 77, 0.95), transparent);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.album-overlay h3 {
    font-size: 1.5rem;
    margin: 0;
    text-transform: uppercase;
}

.album-overlay span {
    opacity: 0.8;
    font-weight: 700;
    font-size: 0.9rem;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-huge);
}

.album-card:hover img {
    transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 20px;
}

.lightbox-title {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 900;
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(226, 25, 33, 0.8);
    color: white;
    padding: 20px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: background 0.3s;
}

.lb-nav:hover {
    background: var(--red);
}

.lb-prev {
    left: 40px;
}

.lb-next {
    right: 40px;
}

.lb-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s;
}

.lb-close:hover {
    color: var(--red);
}

/* Proposals 2.0 (Search & Filter) */
.search-wrap-rc {
    max-width: 800px;
    margin: 0 auto;
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--navy);
    font-size: 1.2rem;
}

.search-box input {
    width: 100%;
    padding: 20px 20px 20px 60px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    font-family: inherit;
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 5px rgba(0, 185, 237, 0.1);
}

.filter-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--navy);
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    color: var(--white);
}

.proposals-grid-rc {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.prop-card-rc {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border-left: 8px solid var(--red);
    transition: var(--transition);
}

.prop-card-rc:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-huge);
}

.prop-card-rc h4 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.prop-card-rc p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.prop-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 900;
    border-radius: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bg-agro {
    background: #e6fffa;
    color: #2c7a7b;
}

.bg-seguridad {
    background: #fff5f5;
    color: #c53030;
}

.bg-salud {
    background: #ebf8ff;
    color: #2b6cb0;
}

.bg-vialidad {
    background: #fffaf0;
    color: #9c4221;
}

/* Territorial Map Section */
.map-container-rc {
    height: 600px;
    width: 100%;
    border-radius: 40px;
    border: 10px solid var(--white);
    z-index: 100;
    overflow: hidden;
}

.leaflet-popup-content-wrapper {
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    padding: 10px;
}

.leaflet-popup-tip-container {
    display: none;
}

.map-popup-header {
    color: var(--navy);
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 5px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.map-popup-text {
    font-size: 0.95rem;
    color: #555;
    margin-top: 10px;
}

/* Attention Modal */
.attention-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 4000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.28s ease;
}

.attention-modal[aria-hidden="false"], .attention-modal.active {
    opacity: 1;
    visibility: visible;
}

.attention-modal .modal-content {
    background: var(--white);
    padding: 36px;
    border-radius: 18px;
    max-width: 560px;
    width: calc(100% - 40px);
    text-align: center;
    box-shadow: var(--shadow-huge);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--navy);
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
    flex-wrap: wrap;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .container-rc {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .section-padding {
        padding: 80px 0;
    }

    .hero-rc {
        padding: 120px 0 80px;
        min-height: auto;
    }

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

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

    .hero-subtext {
        font-size: 1.2rem;
        margin: 20px 0;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-rc {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .hero-img {
        width: 70vw;
        max-width: none;
    }

    .hero-name-img {
        width: 70vw;
        max-width: none;
        position: static;
    }

    .hero-img-box {
        flex-direction: column;
        gap: 10px;
    }

    .countdown-timer {
        flex-direction: column;
        gap: 20px;
    }

    .timer-unit span {
        font-size: 2.5rem;
    }

    .grid-four-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .counter-item-rc {
        padding: 30px 20px;
    }

    .count-val {
        font-size: 2.5rem;
    }

    .grid-bento {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bento-lg {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-md {
        grid-column: span 1;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .album-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .album-card {
        height: 300px;
    }

    .proposals-grid-rc {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .prop-card-rc {
        padding: 25px;
    }

    .map-container-rc {
        height: 400px;
        border-width: 5px;
    }

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

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta {
        padding: 15px;
    }

    .sticky-text {
        font-size: 0.9rem;
    }

    .sticky-actions {
        flex-direction: column;
        gap: 10px;
    }

    .nav-logo {
        height: 80px;
        max-width: 100%;
    }

    .title-rc {
        font-size: 2rem;
    }

    .lead-rc {
        font-size: 1.3rem;
    }

    /* Ajustes adicionales */
    .grid-two-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-timeline::after {
        left: 30px;
        margin-left: 0;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
    }

    .timeline-item::after {
        left: 18px;
        right: auto;
    }

    .right::after {
        left: 18px;
    }

    .left::after {
        left: 18px;
    }

    .timeline-content {
        padding: 30px;
    }

    .hero-name-img {
        max-width: 300px;
    }

    .main-timeline {
        max-width: 100%;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-sub {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container-rc {
        padding: 0 10px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .hero-rc {
        padding: 60px 0;
    }

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

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

    .grid-four-cols {
        grid-template-columns: 1fr;
    }

    .counter-item-rc {
        padding: 20px 15px;
    }

    .count-val {
        font-size: 2rem;
    }

    .count-unit {
        font-size: 1.5rem;
    }

    .btn-rc {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .timer-unit span {
        font-size: 2rem;
    }

    .gallery-grid img {
        height: 250px;
    }

    .album-card {
        height: 250px;
    }

    .prop-card-rc {
        padding: 20px;
    }

    .map-container-rc {
        height: 300px;
    }

    .modal-content {
        padding: 25px;
        width: calc(100% - 20px);
    }

    .modal-actions {
        flex-direction: column;
    }

    .faq-item {
        padding: 20px;
    }

    .social-card {
        padding: 40px 15px;
    }

    .social-card i {
        font-size: 3rem;
    }

    .social-card span {
        font-size: 1rem;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .main-timeline::after {
        left: 20px;
    }

    .timeline-item::after {
        left: 8px;
    }

    .right::after,
    .left::after {
        left: 8px;
    }

    .hero-img {
        width: 80vw;
        max-width: none;
    }

    .hero-name-img {
        width: 80vw;
        max-width: none;
        position: static;
    }

    .hero-img-box {
        gap: 5px;
    }

    .faq-head img {
        max-width: 250px;
    }
}

.modal-actions .btn-rc { padding: 12px 22px; }

/* Sticky CTA bar */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 3500;
    display: flex;
    justify-content: center;
    pointer-events: auto;
}

.sticky-inner {
    background: rgba(29, 43, 77, 0.95);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-huge);
    max-width: 1100px;
    width: calc(100% - 40px);
}

.sticky-text { font-weight: 900; margin-right: 10px; }
.sticky-actions { display: flex; gap: 10px; align-items: center; }
.sticky-close { background: transparent; border: none; color: var(--white); font-size: 1.4rem; margin-left: 12px; cursor: pointer; }

@media (max-width: 700px) {
    .sticky-inner { flex-direction: column; gap: 10px; padding: 14px; text-align: center; }
    .sticky-text { font-size: 0.95rem; }
    .sticky-actions .btn-rc { padding: 10px 14px; }
}

/* Small helper for share button */
.btn-outline-navy { border: 2px solid var(--navy); color: var(--navy); background: transparent; }

/* Biografía Styles */
.bio-section {
    padding: 40px 0;
}

.bio-name {
    font-size: 2.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.bio-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.bio-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--navy);
}

.bio-text p:last-child {
    margin-bottom: 0;
}
