/* /Layout/MainLayout.razor.rz.scp.css */
/* Navigation Styles */
.navbar[b-w6jc2beu0h], .navbar *[b-w6jc2beu0h] {
    font-family: 'Poppins', sans-serif;
}

.navbar[b-w6jc2beu0h] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container[b-w6jc2beu0h] {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo-link[b-w6jc2beu0h] {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo .logo-image[b-w6jc2beu0h] {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo .logo-link:hover .logo-image[b-w6jc2beu0h] {
    transform: scale(1.05);
}

.nav-list[b-w6jc2beu0h] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item[b-w6jc2beu0h] {
    position: relative;
}

/* Dropdown Styles */
.nav-item.dropdown[b-w6jc2beu0h] {
    position: relative;
}

.dropdown-toggle[b-w6jc2beu0h] {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-toggle[b-w6jc2beu0h]::before {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle.active[b-w6jc2beu0h]::before {
    transform: rotate(180deg);
}

.dropdown-menu[b-w6jc2beu0h] {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 200px;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0.5rem 0 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.show[b-w6jc2beu0h] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item[b-w6jc2beu0h] {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover[b-w6jc2beu0h] {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #fab62d;
    padding-left: 2rem;
}

.nav-link[b-w6jc2beu0h],
.dropdown-toggle[b-w6jc2beu0h] {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    font-weight: bold;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover[b-w6jc2beu0h],
.nav-link:focus[b-w6jc2beu0h],
.dropdown-toggle:hover[b-w6jc2beu0h],
.dropdown-toggle:focus[b-w6jc2beu0h] {
    color: #fab62d;
}

.nav-link[b-w6jc2beu0h]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #fab62d, #f9a825);
    transition: width 0.3s ease;
}

.dropdown-toggle.nav-link[b-w6jc2beu0h]::after {
    display: none; /* Do not show underline for dropdown toggle */
}

.nav-link:hover[b-w6jc2beu0h]::after,
.nav-link:focus[b-w6jc2beu0h]::after {
    width: 100%;
}

/* Mobile Navigation Toggle */
.nav-toggle[b-w6jc2beu0h] {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar[b-w6jc2beu0h] {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Main Content */
.page[b-w6jc2beu0h] {
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeIn-b-w6jc2beu0h 0.5s ease-in;
}

.main-content[b-w6jc2beu0h] {
    min-height: 100vh;
    padding-top: 0;
}

main[b-w6jc2beu0h] {
    flex: 1;
}

/* Footer Styles */
.footer[b-w6jc2beu0h], .footer *[b-w6jc2beu0h] {
    font-family: 'Poppins', sans-serif;
}

.footer[b-w6jc2beu0h] {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-container[b-w6jc2beu0h] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content[b-w6jc2beu0h] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3[b-w6jc2beu0h],
.footer-section h4[b-w6jc2beu0h] {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section h3[b-w6jc2beu0h] {
    font-size: 1.5rem;
    background: linear-gradient(45deg, #fab62d, #f9a825);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section p[b-w6jc2beu0h] {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section ul[b-w6jc2beu0h] {
    list-style: none;
    padding: 0;
}

.footer-section ul li[b-w6jc2beu0h] {
    margin-bottom: 0.5rem;
}

.footer-section ul li a[b-w6jc2beu0h] {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover[b-w6jc2beu0h] {
    color: #fab62d;
}

.footer-bottom[b-w6jc2beu0h] {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Mobile and Tablet Responsive Design */

/* Tablet Landscape - Show burger menu earlier to avoid cramped menu */
@media (max-width: 1100px) {
    .nav-container[b-w6jc2beu0h] {
        padding: 0 2rem;
        height: 75px;
    }

    .nav-logo .logo-image[b-w6jc2beu0h] {
        height: 48px;
    }

    .nav-toggle[b-w6jc2beu0h] {
        display: flex;
        z-index: 1001;
    }

    .nav-menu[b-w6jc2beu0h] {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        padding: 2rem;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active[b-w6jc2beu0h] {
        left: 0;
    }

    .nav-list[b-w6jc2beu0h] {
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 1rem;
    }

    .nav-link[b-w6jc2beu0h] {
        font-size: 1.1rem;
        padding: 1rem 0;
        border-bottom: 1px solid #ecf0f1;
        display: block;
        width: 100%;
        text-align: left;
    }

    /* Mobile Dropdown Styles */
    .dropdown-menu[b-w6jc2beu0h] {
        position: static;
        box-shadow: none;
        background: rgba(102, 126, 234, 0.05);
        border-radius: 0;
        padding-left: 1rem;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .dropdown-menu.show[b-w6jc2beu0h] {
        max-height: 300px;
        padding: 0.5rem 0 0.5rem 1rem;
    }

    .dropdown-item[b-w6jc2beu0h] {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(236, 240, 241, 0.5);
    }

    .dropdown-item:last-child[b-w6jc2beu0h] {
        border-bottom: none;
    }

    .dropdown-toggle[b-w6jc2beu0h]::before {
        margin-left: auto;
    }
    
    .nav-link[b-w6jc2beu0h]::after {
        display: none;
    }
    
    .nav-link:hover[b-w6jc2beu0h] {
        color: #fab62d;
        background: rgba(102, 126, 234, 0.05);
        padding-left: 0.5rem;
        transition: all 0.3s ease;
    }

    .nav-toggle.active .bar:nth-child(1)[b-w6jc2beu0h] {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2)[b-w6jc2beu0h] {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3)[b-w6jc2beu0h] {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .nav-container[b-w6jc2beu0h] {
        padding: 0 1.5rem;
        height: 70px;
    }

    .nav-logo .logo-link[b-w6jc2beu0h] {
        font-size: 1.3rem;
    }

    .nav-logo .logo-image[b-w6jc2beu0h] {
        height: 45px;
    }

    .nav-menu[b-w6jc2beu0h] {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .footer-container[b-w6jc2beu0h] {
        padding: 0 1.5rem;
    }

    .footer-content[b-w6jc2beu0h] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h3[b-w6jc2beu0h] {
        font-size: 1.3rem;
    }
    
    .footer-section p[b-w6jc2beu0h],
    .footer-section ul li a[b-w6jc2beu0h] {
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .nav-container[b-w6jc2beu0h] {
        padding: 0 1rem;
        height: 65px;
    }
    
    .nav-logo .logo-link[b-w6jc2beu0h] {
        font-size: 1.2rem;
    }

    .nav-logo .logo-image[b-w6jc2beu0h] {
        height: 40px;
    }
    
    .nav-toggle[b-w6jc2beu0h] {
        gap: 3px;
    }
    
    .bar[b-w6jc2beu0h] {
        width: 22px;
        height: 2.5px;
    }
    
    .nav-menu[b-w6jc2beu0h] {
        top: 65px;
        height: calc(100vh - 65px);
        padding: 1.5rem 1rem;
    }
    
    .nav-list[b-w6jc2beu0h] {
        gap: 1.2rem;
    }
    
    .nav-link[b-w6jc2beu0h] {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    
    .footer-container[b-w6jc2beu0h] {
        padding: 0 1rem;
    }
    
    .footer[b-w6jc2beu0h] {
        padding: 2rem 0 1rem;
    }
    
    .footer-content[b-w6jc2beu0h] {
        gap: 1.2rem;
    }
    
    .footer-section h3[b-w6jc2beu0h] {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section h4[b-w6jc2beu0h] {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p[b-w6jc2beu0h],
    .footer-section ul li a[b-w6jc2beu0h] {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .footer-section ul li[b-w6jc2beu0h] {
        margin-bottom: 0.4rem;
    }
    
    .footer-bottom[b-w6jc2beu0h] {
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .nav-container[b-w6jc2beu0h] {
        padding: 0 0.75rem;
        height: 60px;
    }
    
    .nav-logo .logo-link[b-w6jc2beu0h] {
        font-size: 1.1rem;
    }

    .nav-logo .logo-image[b-w6jc2beu0h] {
        height: 35px;
    }
    
    .nav-toggle[b-w6jc2beu0h] {
        gap: 2px;
    }
    
    .bar[b-w6jc2beu0h] {
        width: 20px;
        height: 2px;
    }
    
    .nav-menu[b-w6jc2beu0h] {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 1rem 0.75rem;
    }
    
    .nav-list[b-w6jc2beu0h] {
        gap: 1rem;
    }
    
    .nav-link[b-w6jc2beu0h] {
        font-size: 0.95rem;
        padding: 0.7rem 0;
    }
    
    .footer-container[b-w6jc2beu0h] {
        padding: 0 0.75rem;
    }
    
    .footer-section h3[b-w6jc2beu0h] {
        font-size: 1.1rem;
    }
    
    .footer-section h4[b-w6jc2beu0h] {
        font-size: 0.95rem;
    }
    
    .footer-section p[b-w6jc2beu0h],
    .footer-section ul li a[b-w6jc2beu0h] {
        font-size: 0.8rem;
    }
}

/* Page transitions */
@keyframes fadeIn-b-w6jc2beu0h {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll */
html[b-w6jc2beu0h] {
    scroll-behavior: smooth;
}

/* Loading states */
.loading[b-w6jc2beu0h] {
    opacity: 0.7;
    pointer-events: none;
}
/* /Pages/Ciclo2024.razor.rz.scp.css */
/* Ensure Poppins is applied to all elements on this page */
*[b-ato251twrt] {
    font-family: 'Poppins', sans-serif;
}

/* Cycle Page Styles */
.ciclo-page[b-ato251twrt] {
    padding-top: 160px;
    min-height: 100vh;
    background: #f8fafc;
    padding-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.container[b-ato251twrt] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Section */
.ciclo-header[b-ato251twrt] {
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.ciclo-title[b-ato251twrt] {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #e3172e;
}

.ciclo-intro[b-ato251twrt] {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    font-weight: 300;
}

/* Header Content Layout */
.ciclo-header-content[b-ato251twrt] {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.ciclo-video[b-ato251twrt] {
    margin-top: 0;
}

.video-placeholder.vertical-format[b-ato251twrt] {
    padding-top: 177.77%; /* 9:16 Aspect Ratio */
    max-width: 350px;
    margin: 0 auto;
    border-radius: 20px;
}

.ciclo-intro[b-ato251twrt] {
    margin: 0;
    text-align: justify;
}

@media (max-width: 900px) {
    .ciclo-header-content[b-ato251twrt] {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .ciclo-intro[b-ato251twrt] {
        text-align: center;
    }
    
    .video-placeholder.vertical-format[b-ato251twrt] {
        max-width: 300px;
    }
}

/* Video Section */
.ciclo-video[b-ato251twrt] {
    margin-top: 3rem; /* Adds space between description and video */
}

.video-placeholder[b-ato251twrt] {
    position: relative;
    width: 100%;
    max-width: 900px; /* Limit max width */
    margin: 0 auto; /* Center the video container */
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ciclo-video-player[b-ato251twrt] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Options Grid */
.options-grid[b-ato251twrt] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.option-card[b-ato251twrt] {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.option-card[b-ato251twrt]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 182, 45, 0.1), transparent);
    transition: left 0.5s;
}

.option-card:hover[b-ato251twrt]::before {
    left: 100%;
}

.option-card:hover[b-ato251twrt] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #fab62d;
}

.option-card.active[b-ato251twrt] {
    background: linear-gradient(135deg, rgba(250, 182, 45, 0.1) 0%, rgba(227, 23, 46, 0.1) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(227, 23, 46, 0.2);
    border-color: #e3172e;
}

.option-icon[b-ato251twrt] {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: #e3172e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.option-card:hover .option-icon[b-ato251twrt] {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(227, 23, 46, 0.3);
}

.option-icon svg[b-ato251twrt] {
    width: 30px;
    height: 30px;
    color: white;
}

.option-card h3[b-ato251twrt] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.option-card p[b-ato251twrt] {
    opacity: 0.8;
    font-weight: 300;
}

/* Collapsible Sections */
.collapsible-sections[b-ato251twrt] {
    position: relative;
    padding-bottom: 2rem;
}

.content-section[b-ato251twrt] {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: #333;
    animation: slideUp-b-ato251twrt 0.4s ease;
}

/* Generalidades section with gray background like Home page info section */
#generalidades-content[b-ato251twrt] {
    background: #f8fafc;
}

.content-section.active[b-ato251twrt] {
    display: block;
}

@keyframes slideUp-b-ato251twrt {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header[b-ato251twrt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.section-header h2[b-ato251twrt] {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.close-btn[b-ato251twrt] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover[b-ato251twrt] {
    background: #f0f0f0;
    color: #333;
}

/* Datos Content Specific Styles */
.datos-content[b-ato251twrt] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Stats Grid - 2x2 layout */
.stats-grid[b-ato251twrt] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-ato251twrt] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #fab62d;
}

.stat-card:hover[b-ato251twrt] {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-circle-small[b-ato251twrt] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.percentage-circle-small[b-ato251twrt] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#fab62d 0deg, #fab62d 162deg, #e0e0e0 162deg, #e0e0e0 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.percentage-circle-small[b-ato251twrt]::before {
    content: '';
    position: absolute;
    width: 75px;
    height: 75px;
    background: white;
    border-radius: 50%;
}

.percentage-number-small[b-ato251twrt] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    z-index: 1;
    position: relative;
}

.stat-description-small h4[b-ato251twrt] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.stat-description-small p[b-ato251twrt] {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    font-weight: 300;
    margin: 0;
}

/* Old styles for backward compatibility */
.main-stat-container[b-ato251twrt] {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.stat-circle[b-ato251twrt] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.percentage-circle[b-ato251twrt] {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#fab62d 0deg, #fab62d 162deg, #e0e0e0 162deg, #e0e0e0 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.percentage-circle[b-ato251twrt]::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
}

.percentage-number[b-ato251twrt] {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    z-index: 1;
    position: relative;
}

.stat-description h3[b-ato251twrt] {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.stat-description p[b-ato251twrt] {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.secondary-content[b-ato251twrt] {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 3rem;
    align-items: start;
}

.text-content h4[b-ato251twrt] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.text-content p[b-ato251twrt] {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.chart-container[b-ato251twrt] {
    text-align: center;
}

.circular-chart[b-ato251twrt] {
    display: block;
    margin: 0 auto;
    max-width: 200px;
}

.circular-chart-svg[b-ato251twrt] {
    width: 100%;
    height: auto;
}

.circle-bg[b-ato251twrt] {
    fill: none;
    stroke: #eee;
    stroke-width: 2.5;
}

.circle[b-ato251twrt] {
    fill: none;
    stroke: #fab62d;
    stroke-width: 2.5;
    stroke-linecap: round;
    animation: progress-b-ato251twrt 2s ease-in-out forwards;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

@keyframes progress-b-ato251twrt {
    0% {
        stroke-dasharray: 0 100;
    }
}

.percentage-text[b-ato251twrt] {
    fill: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.5em;
    font-weight: 600;
    text-anchor: middle;
}

.chart-container h5[b-ato251twrt] {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.data-boxes[b-ato251twrt] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.data-box[b-ato251twrt] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #fab62d;
    transition: all 0.3s ease;
}

.data-box:hover[b-ato251twrt] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.data-box h5[b-ato251twrt] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.data-box p[b-ato251twrt] {
    color: #666;
    font-weight: 300;
}

/* Placeholder Content */
.placeholder-content[b-ato251twrt] {
    text-align: left;
    padding: 4rem 2rem;
    color: #666;
}

.placeholder-content p[b-ato251twrt] {
    font-size: 1.25rem;
    font-style: italic;
}

/* Recomendaciones Section */
.recomendaciones-content[b-ato251twrt] {
    padding: 2rem 0;
}

.recomendaciones-content .intro-text[b-ato251twrt] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.recommendation-cards[b-ato251twrt] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.recommendation-card[b-ato251twrt] {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recommendation-card:hover[b-ato251twrt] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.recommendation-card[b-ato251twrt]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #fab62d 0%, #ffd86c 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.recommendation-card:hover[b-ato251twrt]::before {
    transform: scaleX(1);
}

.card-decoration[b-ato251twrt] {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(250, 182, 45, 0.12) 0%, rgba(255, 216, 108, 0.12) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    pointer-events: none;
}

.recommendation-card:hover .card-decoration[b-ato251twrt] {
    transform: scale(1.5);
    opacity: 0.5;
}

.card-icon[b-ato251twrt] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fab62d 0%, #ffd86c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(250, 182, 45, 0.35);
    flex-shrink: 0;
}

.recommendation-card:hover .card-icon[b-ato251twrt] {
    transform: rotateY(360deg);
    box-shadow: 0 12px 30px rgba(250, 182, 45, 0.45);
}

.card-icon svg[b-ato251twrt] {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 2;
    flex-shrink: 0;
}

.card-content[b-ato251twrt] {
    position: relative;
    z-index: 1;
}

.card-title[b-ato251twrt] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fab62d 0%, #ffd86c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-description[b-ato251twrt] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 300;
}

.info-button[b-ato251twrt] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #fab62d 0%, #ffd86c 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(250, 182, 45, 0.35);
    position: relative;
    overflow: hidden;
}

.info-button[b-ato251twrt]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.info-button:hover[b-ato251twrt]::before {
    left: 100%;
}

.info-button:hover[b-ato251twrt] {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(250, 182, 45, 0.45);
}

.info-button svg[b-ato251twrt] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.info-button:hover svg[b-ato251twrt] {
    transform: translateX(5px);
}

.info-button span[b-ato251twrt] {
    position: relative;
    z-index: 1;
}

/* Recommendation Detail View Styles */
.recommendation-cards[b-ato251twrt] {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendation-cards.expanding .recommendation-card[b-ato251twrt] {
    opacity: 0;
    transform: scale(0.95);
}

.recommendation-detail-view[b-ato251twrt] {
    display: none;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendation-detail-view.active[b-ato251twrt] {
    opacity: 1;
    transform: translateY(0);
}

.detail-card-summary[b-ato251twrt] {
    flex: 0 0 320px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.detail-card-summary[b-ato251twrt]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #fab62d 0%, #ffd86c 100%);
}

.detail-card-summary .card-icon[b-ato251twrt] {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #fab62d 0%, #ffd86c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(250, 182, 45, 0.35);
    flex-shrink: 0;
}

.detail-card-summary .card-icon svg[b-ato251twrt] {
    width: 45px;
    height: 45px;
    color: white;
    stroke: white;
    stroke-width: 2;
    flex-shrink: 0;
}

.detail-card-summary .card-title[b-ato251twrt] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fab62d 0%, #ffd86c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detail-card-summary .card-description[b-ato251twrt] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

.detail-card-content[b-ato251twrt] {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow-y: auto;
    max-height: 600px;
}

.detail-card-content[b-ato251twrt]::-webkit-scrollbar {
    width: 8px;
}

.detail-card-content[b-ato251twrt]::-webkit-scrollbar-track {
    background: rgba(250, 182, 45, 0.1);
    border-radius: 10px;
}

.detail-card-content[b-ato251twrt]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #fab62d 0%, #ffd86c 100%);
    border-radius: 10px;
}

.back-button[b-ato251twrt] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #fab62d;
    color: #fab62d;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.back-button:hover[b-ato251twrt] {
    background: linear-gradient(135deg, #fab62d 0%, #ffd86c 100%);
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(250, 182, 45, 0.35);
}

.back-button svg[b-ato251twrt] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.back-button:hover svg[b-ato251twrt] {
    transform: translateX(-5px);
}

#detail-content h3[b-ato251twrt] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fab62d 0%, #ffd86c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#detail-content h4[b-ato251twrt] {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#detail-content p[b-ato251twrt] {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

#detail-content ul[b-ato251twrt] {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

#detail-content ul li[b-ato251twrt] {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

#detail-content ul li[b-ato251twrt]::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #fab62d;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Devolución Section */
.devolucion-content[b-ato251twrt] {
    padding: 2rem 0;
}

.devolucion-content .intro-text[b-ato251twrt] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.devolucion-content .intro-text strong[b-ato251twrt] {
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #fab62d 0%, #ffd86c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Progress Overview */
.progress-overview[b-ato251twrt] {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.progress-bar-container[b-ato251twrt] {
    display: flex;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.progress-segment[b-ato251twrt] {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-segment[b-ato251twrt]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer-b-ato251twrt 3s infinite;
}

@keyframes shimmer-b-ato251twrt {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.progress-segment.implemented[b-ato251twrt] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.progress-segment.partial[b-ato251twrt] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.progress-segment.discarded[b-ato251twrt] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.progress-segment:hover[b-ato251twrt] {
    filter: brightness(1.1);
    transform: scaleY(1.05);
}

.segment-label[b-ato251twrt] {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.progress-legend[b-ato251twrt] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item[b-ato251twrt] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color[b-ato251twrt] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.legend-color.implemented[b-ato251twrt] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.legend-color.partial[b-ato251twrt] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.legend-color.discarded[b-ato251twrt] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.legend-text[b-ato251twrt] {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Proposal Cards */
.proposal-cards[b-ato251twrt] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.proposal-card[b-ato251twrt] {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.proposal-card:hover[b-ato251twrt] {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.card-header[b-ato251twrt] {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.implemented-card .card-header[b-ato251twrt] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.partial-card .card-header[b-ato251twrt] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.discarded-card .card-header[b-ato251twrt] {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(75, 85, 99, 0.1) 100%);
}

.status-icon[b-ato251twrt] {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.implemented-card .status-icon[b-ato251twrt] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.partial-card .status-icon[b-ato251twrt] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.discarded-card .status-icon[b-ato251twrt] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.proposal-card:hover .status-icon[b-ato251twrt] {
    transform: rotate(360deg) scale(1.1);
}

.status-icon svg[b-ato251twrt] {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2.5;
}

.percentage-badge[b-ato251twrt] {
    text-align: right;
}

.percentage-value[b-ato251twrt] {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.implemented-card .percentage-value[b-ato251twrt] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partial-card .percentage-value[b-ato251twrt] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.discarded-card .percentage-value[b-ato251twrt] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.percentage-count[b-ato251twrt] {
    display: block;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.card-body[b-ato251twrt] {
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 1;
}

.proposal-title[b-ato251twrt] {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.proposal-description[b-ato251twrt] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.proposal-stats[b-ato251twrt] {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
}

.stat-item[b-ato251twrt] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon[b-ato251twrt] {
    font-size: 1.2rem;
}

.stat-text[b-ato251twrt] {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.proposal-button[b-ato251twrt] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.implemented-btn[b-ato251twrt] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.partial-btn[b-ato251twrt] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.discarded-btn[b-ato251twrt] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.proposal-button[b-ato251twrt]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.proposal-button:hover[b-ato251twrt]::before {
    left: 100%;
}

.implemented-btn:hover[b-ato251twrt] {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.partial-btn:hover[b-ato251twrt] {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.discarded-btn:hover[b-ato251twrt] {
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
    transform: translateY(-2px);
}

.proposal-button svg[b-ato251twrt] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.proposal-button:hover svg[b-ato251twrt] {
    transform: translateX(4px);
}

/* Proposal Cards Expansion Animation */
.proposal-cards.expanding .proposal-card[b-ato251twrt] {
    opacity: 0;
    transform: scale(0.95);
}

/* Proposal Detail View */
.proposal-detail-view[b-ato251twrt] {
    display: none;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.proposal-detail-view.active[b-ato251twrt] {
    opacity: 1;
    transform: translateY(0);
}

.detail-proposal-summary[b-ato251twrt] {
    flex: 0 0 340px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.detail-proposal-summary .card-header[b-ato251twrt] {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.detail-proposal-summary.implemented-summary .card-header[b-ato251twrt] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.detail-proposal-summary.partial-summary .card-header[b-ato251twrt] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.detail-proposal-summary.discarded-summary .card-header[b-ato251twrt] {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(75, 85, 99, 0.1) 100%);
}

.detail-proposal-summary .status-icon[b-ato251twrt] {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.detail-proposal-summary .status-icon svg[b-ato251twrt] {
    width: 40px;
    height: 40px;
    stroke-width: 2.5;
}

.detail-proposal-summary .percentage-badge[b-ato251twrt] {
    text-align: right;
}

.detail-proposal-summary .percentage-value[b-ato251twrt] {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.detail-proposal-summary .percentage-count[b-ato251twrt] {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.detail-proposal-summary .card-body[b-ato251twrt] {
    padding: 1.5rem 2rem 2rem;
    text-align: left;
}

.detail-proposal-summary .proposal-title[b-ato251twrt] {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.detail-proposal-summary .proposal-description[b-ato251twrt] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
    font-weight: 300;
}

.detail-proposal-content[b-ato251twrt] {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    max-height: 600px;
}

.detail-proposal-content[b-ato251twrt]::-webkit-scrollbar {
    width: 8px;
}

.detail-proposal-content[b-ato251twrt]::-webkit-scrollbar-track {
    background: rgba(250, 182, 45, 0.1);
    border-radius: 10px;
}

.detail-proposal-content[b-ato251twrt]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #fab62d 0%, #ffd86c 100%);
    border-radius: 10px;
}

.detail-proposal-content[b-ato251twrt]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffd86c 0%, #fab62d 100%);
}

#proposal-detail-content h3[b-ato251twrt] {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fab62d 0%, #ffd86c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#proposal-detail-content h4[b-ato251twrt] {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#proposal-detail-content p[b-ato251twrt] {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

#proposal-detail-content ul[b-ato251twrt] {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

#proposal-detail-content ul li[b-ato251twrt] {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

#proposal-detail-content ul li[b-ato251twrt]::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #fab62d;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   ASAMBLEAS SECTION STYLES
   ============================================ */

.asambleas-content[b-ato251twrt] {
    padding: 1rem 0;
}

/* Filter Container */
.filter-container[b-ato251twrt] {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(250, 182, 45, 0.05) 0%, rgba(255, 216, 108, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(250, 182, 45, 0.1);
}

.search-box[b-ato251twrt] {
    position: relative;
    margin-bottom: 1rem;
}

.search-icon[b-ato251twrt] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #6b7280;
    pointer-events: none;
}

.filter-input[b-ato251twrt] {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.filter-input:focus[b-ato251twrt] {
    outline: none;
    border-color: #fab62d;
    box-shadow: 0 0 0 3px rgba(250, 182, 45, 0.1);
}

.filter-input[b-ato251twrt]::placeholder {
    color: #9ca3af;
}

.results-count[b-ato251twrt] {
    font-size: 0.95rem;
    color: #6b7280;
    text-align: right;
    padding: 0.5rem 0;
}

.results-count span[b-ato251twrt] {
    font-weight: 700;
    color: #fab62d;
}

/* Asambleistas Grid */
.asambleistas-grid[b-ato251twrt] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    animation: fadeIn-b-ato251twrt 0.5s ease;
}

@keyframes fadeIn-b-ato251twrt {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for cards */
.asambleista-card[b-ato251twrt] {
    animation: slideInUp-b-ato251twrt 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.asambleista-card:nth-child(1)[b-ato251twrt] { animation-delay: 0.1s; }
.asambleista-card:nth-child(2)[b-ato251twrt] { animation-delay: 0.15s; }
.asambleista-card:nth-child(3)[b-ato251twrt] { animation-delay: 0.2s; }
.asambleista-card:nth-child(4)[b-ato251twrt] { animation-delay: 0.25s; }
.asambleista-card:nth-child(5)[b-ato251twrt] { animation-delay: 0.3s; }
.asambleista-card:nth-child(6)[b-ato251twrt] { animation-delay: 0.35s; }
.asambleista-card:nth-child(n+7)[b-ato251twrt] { animation-delay: 0.4s; }

@keyframes slideInUp-b-ato251twrt {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Asambleista Card */
.asambleista-card[b-ato251twrt] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.asambleista-card[b-ato251twrt]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fab62d 0%, #ffd86c 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.asambleista-card:hover[b-ato251twrt]::before {
    opacity: 1;
}

.asambleista-card:hover[b-ato251twrt] {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(250, 182, 45, 0.2);
    border-color: rgba(250, 182, 45, 0.2);
}

/* Card Photo/Avatar */
.card-photo[b-ato251twrt] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #fab62d 0%, #ffd86c 100%) border-box;
    transition: all 0.3s ease;
}

.asambleista-card:hover .card-photo[b-ato251twrt] {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(250, 182, 45, 0.3);
}

.card-photo img[b-ato251twrt] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Avatar Placeholder */
.avatar-placeholder[b-ato251twrt] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.avatar-placeholder[b-ato251twrt]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    transform: scale(1);
    animation: pulse-b-ato251twrt 3s infinite;
}

@keyframes pulse-b-ato251twrt {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.1;
    }
}

.asambleista-card:hover .avatar-placeholder[b-ato251twrt] {
    transform: scale(1.1);
}

.asambleista-card:hover .avatar-placeholder[b-ato251twrt]::before {
    animation-play-state: paused;
}

/* Card Info */
.card-info[b-ato251twrt] {
    width: 100%;
    transition: all 0.3s ease;
}

.asambleista-card:hover .card-info[b-ato251twrt] {
    transform: translateY(-2px);
}

.person-name[b-ato251twrt] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.6rem 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.asambleista-card:hover .person-name[b-ato251twrt] {
    color: #fab62d;
}

.person-localidad[b-ato251twrt] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.asambleista-card:hover .person-localidad[b-ato251twrt] {
    color: #fab62d;
}

.person-localidad svg[b-ato251twrt] {
    width: 16px;
    height: 16px;
    color: #fab62d;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.asambleista-card:hover .person-localidad svg[b-ato251twrt] {
    color: #ffd86c;
    transform: scale(1.1);
}

/* No Results */
.no-results[b-ato251twrt] {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
    grid-column: 1 / -1;
    animation: fadeIn-b-ato251twrt 0.5s ease;
}

.no-results svg[b-ato251twrt] {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    color: #d1d5db;
    animation: bounce-b-ato251twrt 2s infinite;
}

@keyframes bounce-b-ato251twrt {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.no-results p[b-ato251twrt] {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* Loading skeleton for cards */
.asambleista-card.loading[b-ato251twrt] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-b-ato251twrt 1.5s infinite;
}

@keyframes loading-b-ato251twrt {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.asambleista-card.loading .card-photo[b-ato251twrt],
.asambleista-card.loading .person-name[b-ato251twrt],
.asambleista-card.loading .person-localidad[b-ato251twrt] {
    background: #e0e0e0;
    color: transparent;
    border-radius: 4px;
}

/* Gallery Section */
.gallery-content[b-ato251twrt] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gallery-intro[b-ato251twrt] {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: #4b5563;
}

.gallery-section[b-ato251twrt] {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.gallery-section + .gallery-section[b-ato251twrt] {
    margin-top: 1rem;
}

.gallery-section-header[b-ato251twrt] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.gallery-section-header h3[b-ato251twrt] {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #111827;
}

.gallery-section-header p[b-ato251twrt] {
    margin: 0.25rem 0 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.gallery-chip[b-ato251twrt] {
    background: rgba(227, 23, 46, 0.12);
    color: #e3172e;
    border-radius: 999px;
    padding: 0.3rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    align-self: flex-start;
}

.gallery-grid[b-ato251twrt] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.gallery-item[b-ato251twrt] {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.12);
    background: #0f172a;
}

.gallery-item img[b-ato251twrt] {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: scale(1.04);
    filter: blur(8px);
    transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

.gallery-item img[data-loaded="true"][b-ato251twrt] {
    opacity: 1;
    transform: scale(1);
    filter: none;
}

.gallery-item:hover img[data-loaded="true"][b-ato251twrt] {
    transform: scale(1.08);
}

.gallery-item-label[b-ato251twrt] {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: rgba(15, 23, 42, 0.75);
    color: #f9fafb;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gallery-video-grid[b-ato251twrt] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery-video-card[b-ato251twrt] {
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gallery-video-wrapper[b-ato251twrt] {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.gallery-video-wrapper[b-ato251twrt]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0.55) 50%, rgba(15, 23, 42, 0.25) 100%);
    animation: loading-b-ato251twrt 1.4s linear infinite;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-video-wrapper.lazy-loaded[b-ato251twrt]::after {
    opacity: 0;
}

.gallery-video-wrapper.lazy-pending[b-ato251twrt] {
    background: #111827;
}

.gallery-video-wrapper iframe[b-ato251twrt] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-video-wrapper iframe[data-loaded="true"][b-ato251twrt] {
    opacity: 1;
}

.gallery-video-meta[b-ato251twrt] {
    padding: 1.25rem 1.5rem 1.5rem;
}

.gallery-video-meta h4[b-ato251twrt] {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    color: #111827;
}

.gallery-video-meta p[b-ato251twrt] {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Lightbox Styles */
.lightbox-overlay[b-ato251twrt] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn-b-ato251twrt 0.3s ease;
}

.lightbox-content[b-ato251twrt] {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image[b-ato251twrt] {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close[b-ato251twrt] {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.lightbox-close:hover[b-ato251twrt] {
    color: #fab62d;
}

.lightbox-prev[b-ato251twrt],
.lightbox-next[b-ato251twrt] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover[b-ato251twrt],
.lightbox-next:hover[b-ato251twrt] {
    background: rgba(255, 255, 255, 0.3);
    color: #fab62d;
}

.lightbox-prev[b-ato251twrt] {
    left: -80px;
}

.lightbox-next[b-ato251twrt] {
    right: -80px;
}

.lightbox-counter[b-ato251twrt] {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .lightbox-prev[b-ato251twrt] {
        left: -20px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        background: rgba(0, 0, 0, 0.5);
    }

    .lightbox-next[b-ato251twrt] {
        right: -20px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .lightbox-close[b-ato251twrt] {
        top: -40px;
        right: 0;
    }
}
/* Responsive Styles */
@media (max-width: 768px) {
    .ciclo-page[b-ato251twrt] {
        padding-top: 120px;
    }

    .stats-grid[b-ato251twrt] {
        grid-template-columns: 1fr;
    }

    .stat-card[b-ato251twrt] {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .secondary-content[b-ato251twrt] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .chart-container[b-ato251twrt] {
        order: -1;
        margin-bottom: 1rem;
    }

    .recommendation-detail-view[b-ato251twrt] {
        flex-direction: column;
    }

    .detail-card-summary[b-ato251twrt] {
        flex: 0 0 auto;
        width: 100%;
    }

    .proposal-detail-view[b-ato251twrt] {
        flex-direction: column;
    }

    .detail-proposal-summary[b-ato251twrt] {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ciclo-page[b-ato251twrt] {
        padding-top: 100px;
    }

    .ciclo-title[b-ato251twrt] {
        font-size: 2rem;
    }

    .section-header[b-ato251twrt] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-header h2[b-ato251twrt] {
        font-size: 1.5rem;
    }

    .percentage-circle-small[b-ato251twrt] {
        width: 80px;
        height: 80px;
    }

    .percentage-circle-small[b-ato251twrt]::before {
        width: 60px;
        height: 60px;
    }

    .percentage-number-small[b-ato251twrt] {
        font-size: 1.2rem;
    }

    .options-grid[b-ato251twrt] {
        grid-template-columns: 1fr;
    }
    
    .recommendation-card[b-ato251twrt] {
        padding: 1.5rem;
    }
    
    .card-title[b-ato251twrt] {
        font-size: 1.5rem;
    }
}
/* /Pages/Ciclo2025.razor.rz.scp.css */
/* Ensure Poppins is applied to all elements on this page */
*[b-sem2is9j39] {
    font-family: 'Poppins', sans-serif;
}

/* Cycle Page Styles */
.ciclo-page[b-sem2is9j39] {
    padding-top: 160px;
    min-height: 100vh;
    background: #f8fafc;
    padding-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.container[b-sem2is9j39] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Section */
.ciclo-header[b-sem2is9j39] {
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.ciclo-title[b-sem2is9j39] {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #e3172e;
}

.ciclo-intro[b-sem2is9j39] {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    font-weight: 300;
}

/* Options Grid */
.options-grid[b-sem2is9j39] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.option-card[b-sem2is9j39] {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.option-card[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 182, 45, 0.1), transparent);
    transition: left 0.5s;
}

.option-card:hover[b-sem2is9j39]::before {
    left: 100%;
}

.option-card:hover[b-sem2is9j39] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #fab62d;
}

.option-card.active[b-sem2is9j39] {
    background: linear-gradient(135deg, rgba(250, 182, 45, 0.1) 0%, rgba(227, 23, 46, 0.1) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(227, 23, 46, 0.2);
    border-color: #e3172e;
}

.option-icon[b-sem2is9j39] {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: #e3172e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.option-card:hover .option-icon[b-sem2is9j39] {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(227, 23, 46, 0.3);
}

.option-icon svg[b-sem2is9j39] {
    width: 30px;
    height: 30px;
    color: white;
}

.option-card h3[b-sem2is9j39] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.option-card p[b-sem2is9j39] {
    opacity: 0.8;
    font-weight: 300;
}

/* Collapsible Sections */
.collapsible-sections[b-sem2is9j39] {
    position: relative;
    padding-bottom: 2rem;
}

.content-section[b-sem2is9j39] {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: #333;
    animation: slideUp-b-sem2is9j39 0.4s ease;
}

/* Generalidades section with gray background like Home page info section */
#generalidades-content[b-sem2is9j39] {
    background: #f8fafc;
}

.content-section.active[b-sem2is9j39] {
    display: block;
}

@keyframes slideUp-b-sem2is9j39 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header[b-sem2is9j39] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.section-header h2[b-sem2is9j39] {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.close-btn[b-sem2is9j39] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover[b-sem2is9j39] {
    background: #f0f0f0;
    color: #333;
}

/* Datos Content Specific Styles */
.datos-content[b-sem2is9j39] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Stats Grid - 2x2 layout */
.stats-grid[b-sem2is9j39] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-sem2is9j39] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #fab62d;
}

.stat-card:hover[b-sem2is9j39] {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-circle-small[b-sem2is9j39] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.percentage-circle-small[b-sem2is9j39] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#667eea 0deg, #667eea 162deg, #e0e0e0 162deg, #e0e0e0 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.percentage-circle-small[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    width: 75px;
    height: 75px;
    background: white;
    border-radius: 50%;
}

.percentage-number-small[b-sem2is9j39] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    z-index: 1;
    position: relative;
}

.stat-description-small h4[b-sem2is9j39] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.stat-description-small p[b-sem2is9j39] {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    font-weight: 300;
    margin: 0;
}

/* Old styles for backward compatibility */
.main-stat-container[b-sem2is9j39] {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.stat-circle[b-sem2is9j39] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.percentage-circle[b-sem2is9j39] {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#667eea 0deg, #667eea 162deg, #e0e0e0 162deg, #e0e0e0 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.percentage-circle[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
}

.percentage-number[b-sem2is9j39] {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    z-index: 1;
    position: relative;
}

.stat-description h3[b-sem2is9j39] {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.stat-description p[b-sem2is9j39] {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.secondary-content[b-sem2is9j39] {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 3rem;
    align-items: start;
}

.text-content h4[b-sem2is9j39] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.text-content p[b-sem2is9j39] {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.chart-container[b-sem2is9j39] {
    text-align: center;
}

.circular-chart[b-sem2is9j39] {
    display: block;
    margin: 0 auto;
    max-width: 200px;
}

.circular-chart-svg[b-sem2is9j39] {
    width: 100%;
    height: auto;
}

.circle-bg[b-sem2is9j39] {
    fill: none;
    stroke: #eee;
    stroke-width: 2.5;
}

.circle[b-sem2is9j39] {
    fill: none;
    stroke: #764ba2;
    stroke-width: 2.5;
    stroke-linecap: round;
    animation: progress-b-sem2is9j39 2s ease-in-out forwards;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

@keyframes progress-b-sem2is9j39 {
    0% {
        stroke-dasharray: 0 100;
    }
}

.percentage-text[b-sem2is9j39] {
    fill: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.5em;
    font-weight: 600;
    text-anchor: middle;
}

.chart-container h5[b-sem2is9j39] {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.data-boxes[b-sem2is9j39] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.data-box[b-sem2is9j39] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #fab62d;
    transition: all 0.3s ease;
}

.data-box:hover[b-sem2is9j39] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.data-box h5[b-sem2is9j39] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.data-box p[b-sem2is9j39] {
    color: #666;
    font-weight: 300;
}

/* Placeholder Content */
.placeholder-content[b-sem2is9j39] {
    text-align: left;
    padding: 4rem 2rem;
    color: #666;
}

.placeholder-content p[b-sem2is9j39] {
    font-size: 1.25rem;
    font-style: italic;
}

/* Recomendaciones Section */
.recomendaciones-content[b-sem2is9j39] {
    padding: 2rem 0;
}

.recomendaciones-content .intro-text[b-sem2is9j39] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.recommendation-cards[b-sem2is9j39] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.recommendation-card[b-sem2is9j39] {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recommendation-card:hover[b-sem2is9j39] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.recommendation-card[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.recommendation-card:hover[b-sem2is9j39]::before {
    transform: scaleX(1);
}

.card-decoration[b-sem2is9j39] {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    pointer-events: none;
}

.recommendation-card:hover .card-decoration[b-sem2is9j39] {
    transform: scale(1.5);
    opacity: 0.5;
}

.card-icon[b-sem2is9j39] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.recommendation-card:hover .card-icon[b-sem2is9j39] {
    transform: rotateY(360deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.card-icon svg[b-sem2is9j39] {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 2;
    flex-shrink: 0;
}

.card-content[b-sem2is9j39] {
    position: relative;
    z-index: 1;
}

.card-title[b-sem2is9j39] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-description[b-sem2is9j39] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 300;
}

.info-button[b-sem2is9j39] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.info-button[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.info-button:hover[b-sem2is9j39]::before {
    left: 100%;
}

.info-button:hover[b-sem2is9j39] {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.info-button svg[b-sem2is9j39] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.info-button:hover svg[b-sem2is9j39] {
    transform: translateX(5px);
}

.info-button span[b-sem2is9j39] {
    position: relative;
    z-index: 1;
}

/* Recommendation Detail View Styles */
.recommendation-cards[b-sem2is9j39] {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendation-cards.expanding .recommendation-card[b-sem2is9j39] {
    opacity: 0;
    transform: scale(0.95);
}

.recommendation-detail-view[b-sem2is9j39] {
    display: none;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendation-detail-view.active[b-sem2is9j39] {
    opacity: 1;
    transform: translateY(0);
}

.detail-card-summary[b-sem2is9j39] {
    flex: 0 0 320px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.detail-card-summary[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.detail-card-summary .card-icon[b-sem2is9j39] {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.detail-card-summary .card-icon svg[b-sem2is9j39] {
    width: 45px;
    height: 45px;
    color: white;
    stroke: white;
    stroke-width: 2;
    flex-shrink: 0;
}

.detail-card-summary .card-title[b-sem2is9j39] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detail-card-summary .card-description[b-sem2is9j39] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

.detail-card-content[b-sem2is9j39] {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow-y: auto;
    max-height: 600px;
}

.detail-card-content[b-sem2is9j39]::-webkit-scrollbar {
    width: 8px;
}

.detail-card-content[b-sem2is9j39]::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
}

.detail-card-content[b-sem2is9j39]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.back-button[b-sem2is9j39] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.back-button:hover[b-sem2is9j39] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.back-button svg[b-sem2is9j39] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.back-button:hover svg[b-sem2is9j39] {
    transform: translateX(-5px);
}

#detail-content h3[b-sem2is9j39] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#detail-content h4[b-sem2is9j39] {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#detail-content p[b-sem2is9j39] {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

#detail-content ul[b-sem2is9j39] {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

#detail-content ul li[b-sem2is9j39] {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

#detail-content ul li[b-sem2is9j39]::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Devolución Section */
.devolucion-content[b-sem2is9j39] {
    padding: 2rem 0;
}

.devolucion-content .intro-text[b-sem2is9j39] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.devolucion-content .intro-text strong[b-sem2is9j39] {
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Progress Overview */
.progress-overview[b-sem2is9j39] {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.progress-bar-container[b-sem2is9j39] {
    display: flex;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.progress-segment[b-sem2is9j39] {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-segment[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer-b-sem2is9j39 3s infinite;
}

@keyframes shimmer-b-sem2is9j39 {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.progress-segment.implemented[b-sem2is9j39] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.progress-segment.partial[b-sem2is9j39] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.progress-segment.discarded[b-sem2is9j39] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.progress-segment:hover[b-sem2is9j39] {
    filter: brightness(1.1);
    transform: scaleY(1.05);
}

.segment-label[b-sem2is9j39] {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.progress-legend[b-sem2is9j39] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item[b-sem2is9j39] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color[b-sem2is9j39] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.legend-color.implemented[b-sem2is9j39] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.legend-color.partial[b-sem2is9j39] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.legend-color.discarded[b-sem2is9j39] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.legend-text[b-sem2is9j39] {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Proposal Cards */
.proposal-cards[b-sem2is9j39] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.proposal-card[b-sem2is9j39] {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.proposal-card:hover[b-sem2is9j39] {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.card-header[b-sem2is9j39] {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.implemented-card .card-header[b-sem2is9j39] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.partial-card .card-header[b-sem2is9j39] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.discarded-card .card-header[b-sem2is9j39] {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(75, 85, 99, 0.1) 100%);
}

.status-icon[b-sem2is9j39] {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.implemented-card .status-icon[b-sem2is9j39] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.partial-card .status-icon[b-sem2is9j39] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.discarded-card .status-icon[b-sem2is9j39] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.proposal-card:hover .status-icon[b-sem2is9j39] {
    transform: rotate(360deg) scale(1.1);
}

.status-icon svg[b-sem2is9j39] {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2.5;
}

.percentage-badge[b-sem2is9j39] {
    text-align: right;
}

.percentage-value[b-sem2is9j39] {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.implemented-card .percentage-value[b-sem2is9j39] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partial-card .percentage-value[b-sem2is9j39] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.discarded-card .percentage-value[b-sem2is9j39] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.percentage-count[b-sem2is9j39] {
    display: block;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.card-body[b-sem2is9j39] {
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 1;
}

.proposal-title[b-sem2is9j39] {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.proposal-description[b-sem2is9j39] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.proposal-stats[b-sem2is9j39] {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
}

.stat-item[b-sem2is9j39] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon[b-sem2is9j39] {
    font-size: 1.2rem;
}

.stat-text[b-sem2is9j39] {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.proposal-button[b-sem2is9j39] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.implemented-btn[b-sem2is9j39] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.partial-btn[b-sem2is9j39] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.discarded-btn[b-sem2is9j39] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.proposal-button[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.proposal-button:hover[b-sem2is9j39]::before {
    left: 100%;
}

.implemented-btn:hover[b-sem2is9j39] {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.partial-btn:hover[b-sem2is9j39] {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.discarded-btn:hover[b-sem2is9j39] {
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
    transform: translateY(-2px);
}

.proposal-button svg[b-sem2is9j39] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.proposal-button:hover svg[b-sem2is9j39] {
    transform: translateX(4px);
}

/* Proposal Cards Expansion Animation */
.proposal-cards.expanding .proposal-card[b-sem2is9j39] {
    opacity: 0;
    transform: scale(0.95);
}

/* Proposal Detail View */
.proposal-detail-view[b-sem2is9j39] {
    display: none;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.proposal-detail-view.active[b-sem2is9j39] {
    opacity: 1;
    transform: translateY(0);
}

.detail-proposal-summary[b-sem2is9j39] {
    flex: 0 0 340px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.detail-proposal-summary .card-header[b-sem2is9j39] {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.detail-proposal-summary.implemented-summary .card-header[b-sem2is9j39] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.detail-proposal-summary.partial-summary .card-header[b-sem2is9j39] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.detail-proposal-summary.discarded-summary .card-header[b-sem2is9j39] {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(75, 85, 99, 0.1) 100%);
}

.detail-proposal-summary .status-icon[b-sem2is9j39] {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.detail-proposal-summary .status-icon svg[b-sem2is9j39] {
    width: 40px;
    height: 40px;
    stroke-width: 2.5;
}

.detail-proposal-summary .percentage-badge[b-sem2is9j39] {
    text-align: right;
}

.detail-proposal-summary .percentage-value[b-sem2is9j39] {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.detail-proposal-summary .percentage-count[b-sem2is9j39] {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.detail-proposal-summary .card-body[b-sem2is9j39] {
    padding: 1.5rem 2rem 2rem;
    text-align: left;
}

.detail-proposal-summary .proposal-title[b-sem2is9j39] {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.detail-proposal-summary .proposal-description[b-sem2is9j39] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
    font-weight: 300;
}

.detail-proposal-content[b-sem2is9j39] {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    max-height: 600px;
}

.detail-proposal-content[b-sem2is9j39]::-webkit-scrollbar {
    width: 8px;
}

.detail-proposal-content[b-sem2is9j39]::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
}

.detail-proposal-content[b-sem2is9j39]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.detail-proposal-content[b-sem2is9j39]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

#proposal-detail-content h3[b-sem2is9j39] {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#proposal-detail-content h4[b-sem2is9j39] {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#proposal-detail-content p[b-sem2is9j39] {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

#proposal-detail-content ul[b-sem2is9j39] {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

#proposal-detail-content ul li[b-sem2is9j39] {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

#proposal-detail-content ul li[b-sem2is9j39]::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   ASAMBLEAS SECTION STYLES
   ============================================ */

.asambleas-content[b-sem2is9j39] {
    padding: 1rem 0;
}

/* Filter Container */
.filter-container[b-sem2is9j39] {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.search-box[b-sem2is9j39] {
    position: relative;
    margin-bottom: 1rem;
}

.search-icon[b-sem2is9j39] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #6b7280;
    pointer-events: none;
}

.filter-input[b-sem2is9j39] {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.filter-input:focus[b-sem2is9j39] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-input[b-sem2is9j39]::placeholder {
    color: #9ca3af;
}

.results-count[b-sem2is9j39] {
    font-size: 0.95rem;
    color: #6b7280;
    text-align: right;
    padding: 0.5rem 0;
}

.results-count span[b-sem2is9j39] {
    font-weight: 700;
    color: #667eea;
}

/* Asambleistas Grid */
.asambleistas-grid[b-sem2is9j39] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    animation: fadeIn-b-sem2is9j39 0.5s ease;
}

@keyframes fadeIn-b-sem2is9j39 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for cards */
.asambleista-card[b-sem2is9j39] {
    animation: slideInUp-b-sem2is9j39 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.asambleista-card:nth-child(1)[b-sem2is9j39] { animation-delay: 0.1s; }
.asambleista-card:nth-child(2)[b-sem2is9j39] { animation-delay: 0.15s; }
.asambleista-card:nth-child(3)[b-sem2is9j39] { animation-delay: 0.2s; }
.asambleista-card:nth-child(4)[b-sem2is9j39] { animation-delay: 0.25s; }
.asambleista-card:nth-child(5)[b-sem2is9j39] { animation-delay: 0.3s; }
.asambleista-card:nth-child(6)[b-sem2is9j39] { animation-delay: 0.35s; }
.asambleista-card:nth-child(n+7)[b-sem2is9j39] { animation-delay: 0.4s; }

@keyframes slideInUp-b-sem2is9j39 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Asambleista Card */
.asambleista-card[b-sem2is9j39] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.asambleista-card[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.asambleista-card:hover[b-sem2is9j39]::before {
    opacity: 1;
}

.asambleista-card:hover[b-sem2is9j39] {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

/* Card Photo/Avatar */
.card-photo[b-sem2is9j39] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #667eea 0%, #764ba2 100%) border-box;
    transition: all 0.3s ease;
}

.asambleista-card:hover .card-photo[b-sem2is9j39] {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.card-photo img[b-sem2is9j39] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Avatar Placeholder */
.avatar-placeholder[b-sem2is9j39] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.avatar-placeholder[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    transform: scale(1);
    animation: pulse-b-sem2is9j39 3s infinite;
}

@keyframes pulse-b-sem2is9j39 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.1;
    }
}

.asambleista-card:hover .avatar-placeholder[b-sem2is9j39] {
    transform: scale(1.1);
}

.asambleista-card:hover .avatar-placeholder[b-sem2is9j39]::before {
    animation-play-state: paused;
}

/* Card Info */
.card-info[b-sem2is9j39] {
    width: 100%;
    transition: all 0.3s ease;
}

.asambleista-card:hover .card-info[b-sem2is9j39] {
    transform: translateY(-2px);
}

.person-name[b-sem2is9j39] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.6rem 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.asambleista-card:hover .person-name[b-sem2is9j39] {
    color: #667eea;
}

.person-localidad[b-sem2is9j39] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.asambleista-card:hover .person-localidad[b-sem2is9j39] {
    color: #667eea;
}

.person-localidad svg[b-sem2is9j39] {
    width: 16px;
    height: 16px;
    color: #667eea;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.asambleista-card:hover .person-localidad svg[b-sem2is9j39] {
    color: #764ba2;
    transform: scale(1.1);
}

/* No Results */
.no-results[b-sem2is9j39] {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
    grid-column: 1 / -1;
    animation: fadeIn-b-sem2is9j39 0.5s ease;
}

.no-results svg[b-sem2is9j39] {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    color: #d1d5db;
    animation: bounce-b-sem2is9j39 2s infinite;
}

@keyframes bounce-b-sem2is9j39 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.no-results p[b-sem2is9j39] {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* Loading skeleton for cards */
.asambleista-card.loading[b-sem2is9j39] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-b-sem2is9j39 1.5s infinite;
}

@keyframes loading-b-sem2is9j39 {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.asambleista-card.loading .card-photo[b-sem2is9j39],
.asambleista-card.loading .person-name[b-sem2is9j39],
.asambleista-card.loading .person-localidad[b-sem2is9j39] {
    background: #e0e0e0;
    color: transparent;
    border-radius: 4px;
}

/* Gallery Section */
.gallery-content[b-sem2is9j39] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gallery-intro[b-sem2is9j39] {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: #4b5563;
}

.gallery-section[b-sem2is9j39] {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.gallery-section + .gallery-section[b-sem2is9j39] {
    margin-top: 1rem;
}

.gallery-section-header[b-sem2is9j39] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.gallery-section-header h3[b-sem2is9j39] {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #111827;
}

.gallery-section-header p[b-sem2is9j39] {
    margin: 0.25rem 0 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.gallery-chip[b-sem2is9j39] {
    background: rgba(227, 23, 46, 0.12);
    color: #e3172e;
    border-radius: 999px;
    padding: 0.3rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    align-self: flex-start;
}

.gallery-grid[b-sem2is9j39] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.gallery-item[b-sem2is9j39] {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.12);
    background: #0f172a;
}

.gallery-item img[b-sem2is9j39] {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: scale(1.04);
    filter: blur(8px);
    transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

.gallery-item img[data-loaded="true"][b-sem2is9j39] {
    opacity: 1;
    transform: scale(1);
    filter: none;
}

.gallery-item:hover img[data-loaded="true"][b-sem2is9j39] {
    transform: scale(1.08);
}

.gallery-item-label[b-sem2is9j39] {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: rgba(15, 23, 42, 0.75);
    color: #f9fafb;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gallery-video-grid[b-sem2is9j39] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery-video-card[b-sem2is9j39] {
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gallery-video-wrapper[b-sem2is9j39] {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.gallery-video-wrapper[b-sem2is9j39]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0.55) 50%, rgba(15, 23, 42, 0.25) 100%);
    animation: loading-b-sem2is9j39 1.4s linear infinite;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-video-wrapper.lazy-loaded[b-sem2is9j39]::after {
    opacity: 0;
}

.gallery-video-wrapper.lazy-pending[b-sem2is9j39] {
    background: #111827;
}

.gallery-video-wrapper iframe[b-sem2is9j39] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-video-wrapper iframe[data-loaded="true"][b-sem2is9j39] {
    opacity: 1;
}

.gallery-video-meta[b-sem2is9j39] {
    padding: 1.25rem 1.5rem 1.5rem;
}

.gallery-video-meta h4[b-sem2is9j39] {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
    color: #111827;
}

.gallery-video-meta p[b-sem2is9j39] {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .gallery-section[b-sem2is9j39] {
        padding: 1.25rem;
    }

    .gallery-grid[b-sem2is9j39] {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }

    .gallery-item img[b-sem2is9j39] {
        height: 180px;
    }

    .gallery-video-grid[b-sem2is9j39] {
        grid-template-columns: 1fr;
    }
}

/* Video Section */
.ciclo-video[b-sem2is9j39] {
    margin-top: 3rem; /* Adds space between description and video */
}

.video-placeholder[b-sem2is9j39] {
    position: relative;
    width: 100%;
    max-width: 900px; /* Limit max width */
    margin: 0 auto; /* Center the video container */
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ciclo-video-player[b-sem2is9j39] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Options Grid */
.options-grid[b-sem2is9j39] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.option-card[b-sem2is9j39] {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.option-card[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 182, 45, 0.1), transparent);
    transition: left 0.5s;
}

.option-card:hover[b-sem2is9j39]::before {
    left: 100%;
}

.option-card:hover[b-sem2is9j39] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #fab62d;
}

.option-card.active[b-sem2is9j39] {
    background: linear-gradient(135deg, rgba(250, 182, 45, 0.1) 0%, rgba(227, 23, 46, 0.1) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(227, 23, 46, 0.2);
    border-color: #e3172e;
}

.option-icon[b-sem2is9j39] {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: #e3172e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.option-card:hover .option-icon[b-sem2is9j39] {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(227, 23, 46, 0.3);
}

.option-icon svg[b-sem2is9j39] {
    width: 30px;
    height: 30px;
    color: white;
}

.option-card h3[b-sem2is9j39] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.option-card p[b-sem2is9j39] {
    opacity: 0.8;
    font-weight: 300;
}

/* Collapsible Sections */
.collapsible-sections[b-sem2is9j39] {
    position: relative;
    padding-bottom: 2rem;
}

.content-section[b-sem2is9j39] {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: #333;
    animation: slideUp-b-sem2is9j39 0.4s ease;
}

/* Generalidades section with gray background like Home page info section */
#generalidades-content[b-sem2is9j39] {
    background: #f8fafc;
}

.content-section.active[b-sem2is9j39] {
    display: block;
}

@keyframes slideUp-b-sem2is9j39 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header[b-sem2is9j39] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.section-header h2[b-sem2is9j39] {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.close-btn[b-sem2is9j39] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover[b-sem2is9j39] {
    background: #f0f0f0;
    color: #333;
}

/* Datos Content Specific Styles */
.datos-content[b-sem2is9j39] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Stats Grid - 2x2 layout */
.stats-grid[b-sem2is9j39] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-sem2is9j39] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #fab62d;
}

.stat-card:hover[b-sem2is9j39] {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-circle-small[b-sem2is9j39] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.percentage-circle-small[b-sem2is9j39] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#667eea 0deg, #667eea 162deg, #e0e0e0 162deg, #e0e0e0 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.percentage-circle-small[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    width: 75px;
    height: 75px;
    background: white;
    border-radius: 50%;
}

.percentage-number-small[b-sem2is9j39] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    z-index: 1;
    position: relative;
}

.stat-description-small h4[b-sem2is9j39] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.stat-description-small p[b-sem2is9j39] {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    font-weight: 300;
    margin: 0;
}

/* Old styles for backward compatibility */
.main-stat-container[b-sem2is9j39] {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.stat-circle[b-sem2is9j39] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.percentage-circle[b-sem2is9j39] {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#667eea 0deg, #667eea 162deg, #e0e0e0 162deg, #e0e0e0 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.percentage-circle[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
}

.percentage-number[b-sem2is9j39] {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    z-index: 1;
    position: relative;
}

.stat-description h3[b-sem2is9j39] {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.stat-description p[b-sem2is9j39] {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.secondary-content[b-sem2is9j39] {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 3rem;
    align-items: start;
}

.text-content h4[b-sem2is9j39] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.text-content p[b-sem2is9j39] {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.chart-container[b-sem2is9j39] {
    text-align: center;
}

.circular-chart[b-sem2is9j39] {
    display: block;
    margin: 0 auto;
    max-width: 200px;
}

.circular-chart-svg[b-sem2is9j39] {
    width: 100%;
    height: auto;
}

.circle-bg[b-sem2is9j39] {
    fill: none;
    stroke: #eee;
    stroke-width: 2.5;
}

.circle[b-sem2is9j39] {
    fill: none;
    stroke: #764ba2;
    stroke-width: 2.5;
    stroke-linecap: round;
    animation: progress-b-sem2is9j39 2s ease-in-out forwards;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

@keyframes progress-b-sem2is9j39 {
    0% {
        stroke-dasharray: 0 100;
    }
}

.percentage-text[b-sem2is9j39] {
    fill: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.5em;
    font-weight: 600;
    text-anchor: middle;
}

.chart-container h5[b-sem2is9j39] {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.data-boxes[b-sem2is9j39] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.data-box[b-sem2is9j39] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #fab62d;
    transition: all 0.3s ease;
}

.data-box:hover[b-sem2is9j39] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.data-box h5[b-sem2is9j39] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.data-box p[b-sem2is9j39] {
    color: #666;
    font-weight: 300;
}

/* Placeholder Content */
.placeholder-content[b-sem2is9j39] {
    text-align: left;
    padding: 4rem 2rem;
    color: #666;
}

.placeholder-content p[b-sem2is9j39] {
    font-size: 1.25rem;
    font-style: italic;
}

/* Recomendaciones Section */
.recomendaciones-content[b-sem2is9j39] {
    padding: 2rem 0;
}

.recomendaciones-content .intro-text[b-sem2is9j39] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.recommendation-cards[b-sem2is9j39] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.recommendation-card[b-sem2is9j39] {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recommendation-card:hover[b-sem2is9j39] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.recommendation-card[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.recommendation-card:hover[b-sem2is9j39]::before {
    transform: scaleX(1);
}

.card-decoration[b-sem2is9j39] {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    pointer-events: none;
}

.recommendation-card:hover .card-decoration[b-sem2is9j39] {
    transform: scale(1.5);
    opacity: 0.5;
}

.card-icon[b-sem2is9j39] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.recommendation-card:hover .card-icon[b-sem2is9j39] {
    transform: rotateY(360deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.card-icon svg[b-sem2is9j39] {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 2;
    flex-shrink: 0;
}

.card-content[b-sem2is9j39] {
    position: relative;
    z-index: 1;
}

.card-title[b-sem2is9j39] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-description[b-sem2is9j39] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 300;
}

.info-button[b-sem2is9j39] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.info-button[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.info-button:hover[b-sem2is9j39]::before {
    left: 100%;
}

.info-button:hover[b-sem2is9j39] {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.info-button svg[b-sem2is9j39] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.info-button:hover svg[b-sem2is9j39] {
    transform: translateX(5px);
}

.info-button span[b-sem2is9j39] {
    position: relative;
    z-index: 1;
}

/* Recommendation Detail View Styles */
.recommendation-cards[b-sem2is9j39] {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendation-cards.expanding .recommendation-card[b-sem2is9j39] {
    opacity: 0;
    transform: scale(0.95);
}

.recommendation-detail-view[b-sem2is9j39] {
    display: none;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendation-detail-view.active[b-sem2is9j39] {
    opacity: 1;
    transform: translateY(0);
}

.detail-card-summary[b-sem2is9j39] {
    flex: 0 0 320px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.detail-card-summary[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.detail-card-summary .card-icon[b-sem2is9j39] {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.detail-card-summary .card-icon svg[b-sem2is9j39] {
    width: 45px;
    height: 45px;
    color: white;
    stroke: white;
    stroke-width: 2;
    flex-shrink: 0;
}

.detail-card-summary .card-title[b-sem2is9j39] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detail-card-summary .card-description[b-sem2is9j39] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

.detail-card-content[b-sem2is9j39] {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow-y: auto;
    max-height: 600px;
}

.detail-card-content[b-sem2is9j39]::-webkit-scrollbar {
    width: 8px;
}

.detail-card-content[b-sem2is9j39]::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
}

.detail-card-content[b-sem2is9j39]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.back-button[b-sem2is9j39] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.back-button:hover[b-sem2is9j39] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.back-button svg[b-sem2is9j39] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.back-button:hover svg[b-sem2is9j39] {
    transform: translateX(-5px);
}

#detail-content h3[b-sem2is9j39] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#detail-content h4[b-sem2is9j39] {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#detail-content p[b-sem2is9j39] {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

#detail-content ul[b-sem2is9j39] {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

#detail-content ul li[b-sem2is9j39] {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

#detail-content ul li[b-sem2is9j39]::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Devolución Section */
.devolucion-content[b-sem2is9j39] {
    padding: 2rem 0;
}

.devolucion-content .intro-text[b-sem2is9j39] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.devolucion-content .intro-text strong[b-sem2is9j39] {
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Progress Overview */
.progress-overview[b-sem2is9j39] {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.progress-bar-container[b-sem2is9j39] {
    display: flex;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.progress-segment[b-sem2is9j39] {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-segment[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer-b-sem2is9j39 3s infinite;
}

@keyframes shimmer-b-sem2is9j39 {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.progress-segment.implemented[b-sem2is9j39] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.progress-segment.partial[b-sem2is9j39] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.progress-segment.discarded[b-sem2is9j39] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.progress-segment:hover[b-sem2is9j39] {
    filter: brightness(1.1);
    transform: scaleY(1.05);
}

.segment-label[b-sem2is9j39] {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.progress-legend[b-sem2is9j39] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item[b-sem2is9j39] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color[b-sem2is9j39] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.legend-color.implemented[b-sem2is9j39] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.legend-color.partial[b-sem2is9j39] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.legend-color.discarded[b-sem2is9j39] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.legend-text[b-sem2is9j39] {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Proposal Cards */
.proposal-cards[b-sem2is9j39] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.proposal-card[b-sem2is9j39] {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.proposal-card:hover[b-sem2is9j39] {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.card-header[b-sem2is9j39] {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.implemented-card .card-header[b-sem2is9j39] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.partial-card .card-header[b-sem2is9j39] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.discarded-card .card-header[b-sem2is9j39] {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(75, 85, 99, 0.1) 100%);
}

.status-icon[b-sem2is9j39] {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.implemented-card .status-icon[b-sem2is9j39] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.partial-card .status-icon[b-sem2is9j39] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.discarded-card .status-icon[b-sem2is9j39] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.proposal-card:hover .status-icon[b-sem2is9j39] {
    transform: rotate(360deg) scale(1.1);
}

.status-icon svg[b-sem2is9j39] {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2.5;
}

.percentage-badge[b-sem2is9j39] {
    text-align: right;
}

.percentage-value[b-sem2is9j39] {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.implemented-card .percentage-value[b-sem2is9j39] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partial-card .percentage-value[b-sem2is9j39] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.discarded-card .percentage-value[b-sem2is9j39] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.percentage-count[b-sem2is9j39] {
    display: block;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.card-body[b-sem2is9j39] {
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 1;
}

.proposal-title[b-sem2is9j39] {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.proposal-description[b-sem2is9j39] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.proposal-stats[b-sem2is9j39] {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
}

.stat-item[b-sem2is9j39] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon[b-sem2is9j39] {
    font-size: 1.2rem;
}

.stat-text[b-sem2is9j39] {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.proposal-button[b-sem2is9j39] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.implemented-btn[b-sem2is9j39] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.partial-btn[b-sem2is9j39] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.discarded-btn[b-sem2is9j39] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.proposal-button[b-sem2is9j39]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.proposal-button:hover[b-sem2is9j39]::before {
    left: 100%;
}

.implemented-btn:hover[b-sem2is9j39] {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.partial-btn:hover[b-sem2is9j39] {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.discarded-btn:hover[b-sem2is9j39] {
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
    transform: translateY(-2px);
}

.proposal-button svg[b-sem2is9j39] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.proposal-button:hover svg[b-sem2is9j39] {
    transform: translateX(4px);
}

/* Proposal Cards Expansion Animation */
.proposal-cards.expanding .proposal-card[b-sem2is9j39] {
    opacity: 0;
    transform: scale(0.95);
}

/* Proposal Detail View */
.proposal-detail-view[b-sem2is9j39] {
    display: none;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.proposal-detail-view.active[b-sem2is9j39] {
    opacity: 1;
    transform: translateY(0);
}

.detail-proposal-summary[b-sem2is9j39] {
    flex: 0 0 340px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.detail-proposal-summary .card-header[b-sem2is9j39] {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.detail-proposal-summary.implemented-summary .card-header[b-sem2is9j39] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.detail-proposal-summary.partial-summary .card-header[b-sem2is9j39] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.detail-proposal-summary.discarded-summary .card-header[b-sem2is9j39] {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(75, 85, 99, 0.1) 100%);
}

.detail-proposal-summary .status-icon[b-sem2is9j39] {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.detail-proposal-summary .status-icon svg[b-sem2is9j39] {
    width: 40px;
    height: 40px;
    stroke-width: 2.5;
}

.detail-proposal-summary .percentage-badge[b-sem2is9j39] {
    text-align: right;
}

.detail-proposal-summary .percentage-value[b-sem2is9j39] {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.detail-proposal-summary .percentage-count[b-sem2is9j39] {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.detail-proposal-summary .card-body[b-sem2is9j39] {
    padding: 1.5rem 2rem 2rem;
    text-align: left;
}

.detail-proposal-summary .proposal-title[b-sem2is9j39] {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.detail-proposal-summary .proposal-description[b-sem2is9j39] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
    font-weight: 300;
}

.detail-proposal-content[b-sem2is9j39] {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    max-height: 600px;
}

.detail-proposal-content[b-sem2is9j39]::-webkit-scrollbar {
    width: 8px;
}

.detail-proposal-content[b-sem2is9j39]::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
}

.detail-proposal-content[b-sem2is9j39]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.detail-proposal-content[b-sem2is9j39]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

#proposal-detail-content h3[b-sem2is9j39] {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#proposal-detail-content h4[b-sem2is9j39] {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#proposal-detail-content p[b-sem2is9j39] {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

#proposal-detail-content ul[b-sem2is9j39] {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

#proposal-detail-content ul li[b-sem2is9j39] {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

#proposal-detail-content ul li[b-sem2is9j39]::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .ciclo-page[b-sem2is9j39] {
        padding-top: 120px;
    }

    .stats-grid[b-sem2is9j39] {
        grid-template-columns: 1fr;
    }

    .stat-card[b-sem2is9j39] {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .secondary-content[b-sem2is9j39] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .chart-container[b-sem2is9j39] {
        order: -1;
        margin-bottom: 1rem;
    }

    .recommendation-detail-view[b-sem2is9j39] {
        flex-direction: column;
    }

    .detail-card-summary[b-sem2is9j39] {
        flex: 0 0 auto;
        width: 100%;
    }

    .proposal-detail-view[b-sem2is9j39] {
        flex-direction: column;
    }

    .detail-proposal-summary[b-sem2is9j39] {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ciclo-page[b-sem2is9j39] {
        padding-top: 100px;
    }

    .ciclo-title[b-sem2is9j39] {
        font-size: 2rem;
    }

    .section-header[b-sem2is9j39] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-header h2[b-sem2is9j39] {
        font-size: 1.5rem;
    }

    .percentage-circle-small[b-sem2is9j39] {
        width: 80px;
        height: 80px;
    }

    .percentage-circle-small[b-sem2is9j39]::before {
        width: 60px;
        height: 60px;
    }

    .percentage-number-small[b-sem2is9j39] {
        font-size: 1.2rem;
    }

    .options-grid[b-sem2is9j39] {
        grid-template-columns: 1fr;
    }
    
    .recommendation-card[b-sem2is9j39] {
        padding: 1.5rem;
    }
    
    .card-title[b-sem2is9j39] {
        font-size: 1.5rem;
    }
}
/* /Pages/Ciclo2026.razor.rz.scp.css */
/* Ensure Poppins is applied to all elements on this page */
*[b-k8v2didvaa] {
    font-family: 'Poppins', sans-serif;
}

/* Cycle Page Styles */
.ciclo-page[b-k8v2didvaa] {
    padding-top: 160px;
    min-height: 100vh;
    background: #f8fafc;
    padding-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.container[b-k8v2didvaa] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Section */
.ciclo-header[b-k8v2didvaa] {
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.ciclo-title[b-k8v2didvaa] {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #e3172e;
}

.ciclo-intro[b-k8v2didvaa] {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    font-weight: 300;
}

/* Options Grid */
.options-grid[b-k8v2didvaa] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.option-card[b-k8v2didvaa] {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.option-card[b-k8v2didvaa]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 182, 45, 0.1), transparent);
    transition: left 0.5s;
}

.option-card:hover[b-k8v2didvaa]::before {
    left: 100%;
}

.option-card:hover[b-k8v2didvaa] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #fab62d;
}

.option-card.active[b-k8v2didvaa] {
    background: linear-gradient(135deg, rgba(250, 182, 45, 0.1) 0%, rgba(227, 23, 46, 0.1) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(227, 23, 46, 0.2);
    border-color: #e3172e;
}

.option-icon[b-k8v2didvaa] {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: #e3172e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.option-card:hover .option-icon[b-k8v2didvaa] {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(227, 23, 46, 0.3);
}

.option-icon svg[b-k8v2didvaa] {
    width: 30px;
    height: 30px;
    color: white;
}

.option-card h3[b-k8v2didvaa] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.option-card p[b-k8v2didvaa] {
    opacity: 0.8;
    font-weight: 300;
}

/* Collapsible Sections */
.collapsible-sections[b-k8v2didvaa] {
    position: relative;
    padding-bottom: 2rem;
}

.content-section[b-k8v2didvaa] {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: #333;
    animation: slideUp-b-k8v2didvaa 0.4s ease;
}

/* Generalidades section with gray background like Home page info section */
#generalidades-content[b-k8v2didvaa] {
    background: #f8fafc;
}

.content-section.active[b-k8v2didvaa] {
    display: block;
}

@keyframes slideUp-b-k8v2didvaa {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header[b-k8v2didvaa] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.section-header h2[b-k8v2didvaa] {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.close-btn[b-k8v2didvaa] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover[b-k8v2didvaa] {
    background: #f0f0f0;
    color: #333;
}

/* Datos Content Specific Styles */
.datos-content[b-k8v2didvaa] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Stats Grid - 2x2 layout */
.stats-grid[b-k8v2didvaa] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-k8v2didvaa] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.stat-card:hover[b-k8v2didvaa] {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-circle-small[b-k8v2didvaa] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.percentage-circle-small[b-k8v2didvaa] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#667eea 0deg, #667eea 162deg, #e0e0e0 162deg, #e0e0e0 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.percentage-circle-small[b-k8v2didvaa]::before {
    content: '';
    position: absolute;
    width: 75px;
    height: 75px;
    background: white;
    border-radius: 50%;
}

.percentage-number-small[b-k8v2didvaa] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    z-index: 1;
    position: relative;
}

.stat-description-small h4[b-k8v2didvaa] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.stat-description-small p[b-k8v2didvaa] {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    font-weight: 300;
    margin: 0;
}

/* Old styles for backward compatibility */
.main-stat-container[b-k8v2didvaa] {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.stat-circle[b-k8v2didvaa] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.percentage-circle[b-k8v2didvaa] {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#667eea 0deg, #667eea 162deg, #e0e0e0 162deg, #e0e0e0 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.percentage-circle[b-k8v2didvaa]::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
}

.percentage-number[b-k8v2didvaa] {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    z-index: 1;
    position: relative;
}

.stat-description h3[b-k8v2didvaa] {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.stat-description p[b-k8v2didvaa] {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.secondary-content[b-k8v2didvaa] {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 3rem;
    align-items: start;
}

.text-content h4[b-k8v2didvaa] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.text-content p[b-k8v2didvaa] {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.chart-container[b-k8v2didvaa] {
    text-align: center;
}

.circular-chart[b-k8v2didvaa] {
    display: block;
    margin: 0 auto;
    max-width: 200px;
}

.circular-chart-svg[b-k8v2didvaa] {
    width: 100%;
    height: auto;
}

.circle-bg[b-k8v2didvaa] {
    fill: none;
    stroke: #eee;
    stroke-width: 2.5;
}

.circle[b-k8v2didvaa] {
    fill: none;
    stroke: #764ba2;
    stroke-width: 2.5;
    stroke-linecap: round;
    animation: progress-b-k8v2didvaa 2s ease-in-out forwards;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

@keyframes progress-b-k8v2didvaa {
    0% {
        stroke-dasharray: 0 100;
    }
}

.percentage-text[b-k8v2didvaa] {
    fill: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.5em;
    font-weight: 600;
    text-anchor: middle;
}

.chart-container h5[b-k8v2didvaa] {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.data-boxes[b-k8v2didvaa] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.data-box[b-k8v2didvaa] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.data-box:hover[b-k8v2didvaa] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.data-box h5[b-k8v2didvaa] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.data-box p[b-k8v2didvaa] {
    color: #666;
    font-weight: 300;
}

/* Placeholder Content */
.placeholder-content[b-k8v2didvaa] {
    text-align: left;
    padding: 4rem 2rem;
    color: #666;
}

.placeholder-content p[b-k8v2didvaa] {
    font-size: 1.25rem;
    font-style: italic;
}

/* Recomendaciones Section */
.recomendaciones-content[b-k8v2didvaa] {
    padding: 2rem 0;
}

.recomendaciones-content .intro-text[b-k8v2didvaa] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.recommendation-cards[b-k8v2didvaa] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.recommendation-card[b-k8v2didvaa] {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recommendation-card:hover[b-k8v2didvaa] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.recommendation-card[b-k8v2didvaa]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.recommendation-card:hover[b-k8v2didvaa]::before {
    transform: scaleX(1);
}

.card-decoration[b-k8v2didvaa] {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    pointer-events: none;
}

.recommendation-card:hover .card-decoration[b-k8v2didvaa] {
    transform: scale(1.5);
    opacity: 0.5;
}

.card-icon[b-k8v2didvaa] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.recommendation-card:hover .card-icon[b-k8v2didvaa] {
    transform: rotateY(360deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.card-icon svg[b-k8v2didvaa] {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 2;
    flex-shrink: 0;
}

.card-content[b-k8v2didvaa] {
    position: relative;
    z-index: 1;
}

.card-title[b-k8v2didvaa] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-description[b-k8v2didvaa] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 300;
}

.info-button[b-k8v2didvaa] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.info-button[b-k8v2didvaa]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.info-button:hover[b-k8v2didvaa]::before {
    left: 100%;
}

.info-button:hover[b-k8v2didvaa] {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.info-button svg[b-k8v2didvaa] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.info-button:hover svg[b-k8v2didvaa] {
    transform: translateX(5px);
}

.info-button span[b-k8v2didvaa] {
    position: relative;
    z-index: 1;
}

/* Recommendation Detail View Styles */
.recommendation-cards[b-k8v2didvaa] {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendation-cards.expanding .recommendation-card[b-k8v2didvaa] {
    opacity: 0;
    transform: scale(0.95);
}

.recommendation-detail-view[b-k8v2didvaa] {
    display: none;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendation-detail-view.active[b-k8v2didvaa] {
    opacity: 1;
    transform: translateY(0);
}

.detail-card-summary[b-k8v2didvaa] {
    flex: 0 0 320px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.detail-card-summary[b-k8v2didvaa]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.detail-card-summary .card-icon[b-k8v2didvaa] {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.detail-card-summary .card-icon svg[b-k8v2didvaa] {
    width: 45px;
    height: 45px;
    color: white;
    stroke: white;
    stroke-width: 2;
    flex-shrink: 0;
}

.detail-card-summary .card-title[b-k8v2didvaa] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detail-card-summary .card-description[b-k8v2didvaa] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

.detail-card-content[b-k8v2didvaa] {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow-y: auto;
    max-height: 600px;
}

.detail-card-content[b-k8v2didvaa]::-webkit-scrollbar {
    width: 8px;
}

.detail-card-content[b-k8v2didvaa]::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
}

.detail-card-content[b-k8v2didvaa]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.back-button[b-k8v2didvaa] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.back-button:hover[b-k8v2didvaa] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.back-button svg[b-k8v2didvaa] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.back-button:hover svg[b-k8v2didvaa] {
    transform: translateX(-5px);
}

#detail-content h3[b-k8v2didvaa] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#detail-content h4[b-k8v2didvaa] {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#detail-content p[b-k8v2didvaa] {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

#detail-content ul[b-k8v2didvaa] {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

#detail-content ul li[b-k8v2didvaa] {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

#detail-content ul li[b-k8v2didvaa]::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Devolución Section */
.devolucion-content[b-k8v2didvaa] {
    padding: 2rem 0;
}

.devolucion-content .intro-text[b-k8v2didvaa] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.devolucion-content .intro-text strong[b-k8v2didvaa] {
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Progress Overview */
.progress-overview[b-k8v2didvaa] {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.progress-bar-container[b-k8v2didvaa] {
    display: flex;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.progress-segment[b-k8v2didvaa] {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-segment[b-k8v2didvaa]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer-b-k8v2didvaa 3s infinite;
}

@keyframes shimmer-b-k8v2didvaa {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.progress-segment.implemented[b-k8v2didvaa] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.progress-segment.partial[b-k8v2didvaa] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.progress-segment.discarded[b-k8v2didvaa] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.progress-segment:hover[b-k8v2didvaa] {
    filter: brightness(1.1);
    transform: scaleY(1.05);
}

.segment-label[b-k8v2didvaa] {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.progress-legend[b-k8v2didvaa] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item[b-k8v2didvaa] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color[b-k8v2didvaa] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.legend-color.implemented[b-k8v2didvaa] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.legend-color.partial[b-k8v2didvaa] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.legend-color.discarded[b-k8v2didvaa] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.legend-text[b-k8v2didvaa] {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Proposal Cards */
.proposal-cards[b-k8v2didvaa] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.proposal-card[b-k8v2didvaa] {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.proposal-card:hover[b-k8v2didvaa] {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.card-header[b-k8v2didvaa] {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.implemented-card .card-header[b-k8v2didvaa] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.partial-card .card-header[b-k8v2didvaa] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.discarded-card .card-header[b-k8v2didvaa] {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(75, 85, 99, 0.1) 100%);
}

.status-icon[b-k8v2didvaa] {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.implemented-card .status-icon[b-k8v2didvaa] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.partial-card .status-icon[b-k8v2didvaa] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.discarded-card .status-icon[b-k8v2didvaa] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.proposal-card:hover .status-icon[b-k8v2didvaa] {
    transform: rotate(360deg) scale(1.1);
}

.status-icon svg[b-k8v2didvaa] {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2.5;
}

.percentage-badge[b-k8v2didvaa] {
    text-align: right;
}

.percentage-value[b-k8v2didvaa] {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.implemented-card .percentage-value[b-k8v2didvaa] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partial-card .percentage-value[b-k8v2didvaa] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.discarded-card .percentage-value[b-k8v2didvaa] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.percentage-count[b-k8v2didvaa] {
    display: block;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.card-body[b-k8v2didvaa] {
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 1;
}

.proposal-title[b-k8v2didvaa] {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.proposal-description[b-k8v2didvaa] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.proposal-stats[b-k8v2didvaa] {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
}

.stat-item[b-k8v2didvaa] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon[b-k8v2didvaa] {
    font-size: 1.2rem;
}

.stat-text[b-k8v2didvaa] {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.proposal-button[b-k8v2didvaa] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.implemented-btn[b-k8v2didvaa] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.partial-btn[b-k8v2didvaa] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.discarded-btn[b-k8v2didvaa] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.proposal-button[b-k8v2didvaa]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.proposal-button:hover[b-k8v2didvaa]::before {
    left: 100%;
}

.implemented-btn:hover[b-k8v2didvaa] {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.partial-btn:hover[b-k8v2didvaa] {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.discarded-btn:hover[b-k8v2didvaa] {
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
    transform: translateY(-2px);
}

.proposal-button svg[b-k8v2didvaa] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.proposal-button:hover svg[b-k8v2didvaa] {
    transform: translateX(4px);
}

/* Proposal Cards Expansion Animation */
.proposal-cards.expanding .proposal-card[b-k8v2didvaa] {
    opacity: 0;
    transform: scale(0.95);
}

/* Proposal Detail View */
.proposal-detail-view[b-k8v2didvaa] {
    display: none;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.proposal-detail-view.active[b-k8v2didvaa] {
    opacity: 1;
    transform: translateY(0);
}

.detail-proposal-summary[b-k8v2didvaa] {
    flex: 0 0 340px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.detail-proposal-summary .card-header[b-k8v2didvaa] {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.detail-proposal-summary.implemented-summary .card-header[b-k8v2didvaa] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.detail-proposal-summary.partial-summary .card-header[b-k8v2didvaa] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.detail-proposal-summary.discarded-summary .card-header[b-k8v2didvaa] {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(75, 85, 99, 0.1) 100%);
}

.detail-proposal-summary .status-icon[b-k8v2didvaa] {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.detail-proposal-summary .status-icon svg[b-k8v2didvaa] {
    width: 40px;
    height: 40px;
    stroke-width: 2.5;
}

.detail-proposal-summary .percentage-badge[b-k8v2didvaa] {
    text-align: right;
}

.detail-proposal-summary .percentage-value[b-k8v2didvaa] {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.detail-proposal-summary .percentage-count[b-k8v2didvaa] {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.detail-proposal-summary .card-body[b-k8v2didvaa] {
    padding: 1.5rem 2rem 2rem;
    text-align: left;
}

.detail-proposal-summary .proposal-title[b-k8v2didvaa] {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.detail-proposal-summary .proposal-description[b-k8v2didvaa] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
    font-weight: 300;
}

.detail-proposal-content[b-k8v2didvaa] {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    max-height: 600px;
}

.detail-proposal-content[b-k8v2didvaa]::-webkit-scrollbar {
    width: 8px;
}

.detail-proposal-content[b-k8v2didvaa]::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
}

.detail-proposal-content[b-k8v2didvaa]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.detail-proposal-content[b-k8v2didvaa]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

#proposal-detail-content h3[b-k8v2didvaa] {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#proposal-detail-content h4[b-k8v2didvaa] {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#proposal-detail-content p[b-k8v2didvaa] {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

#proposal-detail-content ul[b-k8v2didvaa] {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

#proposal-detail-content ul li[b-k8v2didvaa] {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

#proposal-detail-content ul li[b-k8v2didvaa]::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   ASAMBLEAS SECTION STYLES
   ============================================ */

.asambleas-content[b-k8v2didvaa] {
    padding: 1rem 0;
}

/* Filter Container */
.filter-container[b-k8v2didvaa] {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.search-box[b-k8v2didvaa] {
    position: relative;
    margin-bottom: 1rem;
}

.search-icon[b-k8v2didvaa] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #6b7280;
    pointer-events: none;
}

.filter-input[b-k8v2didvaa] {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.filter-input:focus[b-k8v2didvaa] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-input[b-k8v2didvaa]::placeholder {
    color: #9ca3af;
}

.results-count[b-k8v2didvaa] {
    font-size: 0.95rem;
    color: #6b7280;
    text-align: right;
    padding: 0.5rem 0;
}

.results-count span[b-k8v2didvaa] {
    font-weight: 700;
    color: #667eea;
}

/* Asambleistas Grid */
.asambleistas-grid[b-k8v2didvaa] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    animation: fadeIn-b-k8v2didvaa 0.5s ease;
}

@keyframes fadeIn-b-k8v2didvaa {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for cards */
.asambleista-card[b-k8v2didvaa] {
    animation: slideInUp-b-k8v2didvaa 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.asambleista-card:nth-child(1)[b-k8v2didvaa] { animation-delay: 0.1s; }
.asambleista-card:nth-child(2)[b-k8v2didvaa] { animation-delay: 0.15s; }
.asambleista-card:nth-child(3)[b-k8v2didvaa] { animation-delay: 0.2s; }
.asambleista-card:nth-child(4)[b-k8v2didvaa] { animation-delay: 0.25s; }
.asambleista-card:nth-child(5)[b-k8v2didvaa] { animation-delay: 0.3s; }
.asambleista-card:nth-child(6)[b-k8v2didvaa] { animation-delay: 0.35s; }
.asambleista-card:nth-child(n+7)[b-k8v2didvaa] { animation-delay: 0.4s; }

@keyframes slideInUp-b-k8v2didvaa {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Asambleista Card */
.asambleista-card[b-k8v2didvaa] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.asambleista-card[b-k8v2didvaa]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.asambleista-card:hover[b-k8v2didvaa]::before {
    opacity: 1;
}

.asambleista-card:hover[b-k8v2didvaa] {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

/* Card Photo/Avatar */
.card-photo[b-k8v2didvaa] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #667eea 0%, #764ba2 100%) border-box;
    transition: all 0.3s ease;
}

.asambleista-card:hover .card-photo[b-k8v2didvaa] {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.card-photo img[b-k8v2didvaa] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Avatar Placeholder */
.avatar-placeholder[b-k8v2didvaa] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.avatar-placeholder[b-k8v2didvaa]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    transform: scale(1);
    animation: pulse-b-k8v2didvaa 3s infinite;
}

@keyframes pulse-b-k8v2didvaa {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.1;
    }
}

.asambleista-card:hover .avatar-placeholder[b-k8v2didvaa] {
    transform: scale(1.1);
}

.asambleista-card:hover .avatar-placeholder[b-k8v2didvaa]::before {
    animation-play-state: paused;
}

/* Card Info */
.card-info[b-k8v2didvaa] {
    width: 100%;
    transition: all 0.3s ease;
}

.asambleista-card:hover .card-info[b-k8v2didvaa] {
    transform: translateY(-2px);
}

.person-name[b-k8v2didvaa] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.6rem 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.asambleista-card:hover .person-name[b-k8v2didvaa] {
    color: #667eea;
}

.person-localidad[b-k8v2didvaa] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.asambleista-card:hover .person-localidad[b-k8v2didvaa] {
    color: #667eea;
}

.person-localidad svg[b-k8v2didvaa] {
    width: 16px;
    height: 16px;
    color: #667eea;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.asambleista-card:hover .person-localidad svg[b-k8v2didvaa] {
    color: #764ba2;
    transform: scale(1.1);
}

/* No Results */
.no-results[b-k8v2didvaa] {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
    grid-column: 1 / -1;
    animation: fadeIn-b-k8v2didvaa 0.5s ease;
}

.no-results svg[b-k8v2didvaa] {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    color: #d1d5db;
    animation: bounce-b-k8v2didvaa 2s infinite;
}

@keyframes bounce-b-k8v2didvaa {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.no-results p[b-k8v2didvaa] {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* Loading skeleton for cards */
.asambleista-card.loading[b-k8v2didvaa] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-b-k8v2didvaa 1.5s infinite;
}

@keyframes loading-b-k8v2didvaa {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.asambleista-card.loading .card-photo[b-k8v2didvaa],
.asambleista-card.loading .person-name[b-k8v2didvaa],
.asambleista-card.loading .person-localidad[b-k8v2didvaa] {
    background: #e0e0e0;
    color: transparent;
    border-radius: 4px;
}

.proposal-button svg[b-k8v2didvaa] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.proposal-button:hover svg[b-k8v2didvaa] {
    transform: translateX(5px);
}

.proposal-button span[b-k8v2didvaa] {
    position: relative;
    z-index: 1;
}

.card-glow[b-k8v2didvaa] {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
    transition: all 0.4s ease;
}

.implemented-glow[b-k8v2didvaa] {
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
}

.partial-glow[b-k8v2didvaa] {
    background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
}

.discarded-glow[b-k8v2didvaa] {
    background: radial-gradient(circle, #6b7280 0%, transparent 70%);
}

.proposal-card:hover .card-glow[b-k8v2didvaa] {
    bottom: -50px;
    right: -50px;
    opacity: 0.5;
}

/* Animation Classes */
.animate-on-scroll[b-k8v2didvaa] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible[b-k8v2didvaa] {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1[b-k8v2didvaa] {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-2[b-k8v2didvaa] {
    transition-delay: 0.4s;
}

/* Mobile and Tablet Responsive Design */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .container[b-k8v2didvaa] {
        padding: 0 2rem;
    }
    
    .ciclo-page[b-k8v2didvaa] {
        padding-top: 140px;
    }
    
    .ciclo-title[b-k8v2didvaa] {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }
    
    .stats-grid[b-k8v2didvaa] {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .stat-card[b-k8v2didvaa] {
        padding: 1.25rem;
    }
    
    .ciclo-intro[b-k8v2didvaa] {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
        max-width: 700px;
    }
    
    .options-grid[b-k8v2didvaa] {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .main-stat-container[b-k8v2didvaa] {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .secondary-content[b-k8v2didvaa] {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .data-boxes[b-k8v2didvaa] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recommendation-detail-view[b-k8v2didvaa] {
        flex-direction: column;
    }
    
    .detail-card-summary[b-k8v2didvaa] {
        flex: 1;
    }
    
    .detail-card-content[b-k8v2didvaa] {
        max-height: 500px;
    }
    
    .proposal-detail-view[b-k8v2didvaa] {
        flex-direction: column;
    }
    
    .detail-proposal-summary[b-k8v2didvaa] {
        flex: 1;
    }
    
    .detail-proposal-content[b-k8v2didvaa] {
        max-height: 500px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .container[b-k8v2didvaa] {
        padding: 0 1rem;
    }
    
    .ciclo-page[b-k8v2didvaa] {
        padding-top: 120px;
    }
    
    .ciclo-header[b-k8v2didvaa] {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .ciclo-title[b-k8v2didvaa] {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .ciclo-intro[b-k8v2didvaa] {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        line-height: 1.5;
        max-width: 100%;
    }
    
    .options-grid[b-k8v2didvaa] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .option-card[b-k8v2didvaa] {
        padding: 1.8rem;
        text-align: center;
    }
    
    .option-card h3[b-k8v2didvaa] {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .option-card p[b-k8v2didvaa] {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .stats-grid[b-k8v2didvaa] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card[b-k8v2didvaa] {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .percentage-circle-small[b-k8v2didvaa] {
        width: 90px;
        height: 90px;
    }
    
    .percentage-circle-small[b-k8v2didvaa]::before {
        width: 68px;
        height: 68px;
    }
    
    .percentage-number-small[b-k8v2didvaa] {
        font-size: 1.3rem;
    }
    
    .stat-description-small h4[b-k8v2didvaa] {
        font-size: 1rem;
    }
    
    .stat-description-small p[b-k8v2didvaa] {
        font-size: 0.85rem;
    }
    
    .cta-button[b-k8v2didvaa] {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 200px;
    }
    
    .content-section[b-k8v2didvaa] {
        padding: 2rem;
        margin: 2rem 0;
        border-radius: 20px;
    }
    
    .section-header[b-k8v2didvaa] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-title[b-k8v2didvaa] {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin: 0;
    }
    
    .close-btn[b-k8v2didvaa] {
        align-self: flex-end;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .main-stat-container[b-k8v2didvaa] {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .percentage-circle[b-k8v2didvaa] {
        margin: 0 auto 1rem;
    }
    
    .secondary-content[b-k8v2didvaa] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .data-boxes[b-k8v2didvaa] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .data-box[b-k8v2didvaa] {
        padding: 1.5rem;
        text-align: center;
    }
    
    .data-box h4[b-k8v2didvaa] {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .data-box p[b-k8v2didvaa] {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .collapsible-sections[b-k8v2didvaa] {
        padding: 1.5rem;
    }
    
    .collapsible-header[b-k8v2didvaa] {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .collapsible-content[b-k8v2didvaa] {
        padding: 1rem;
    }
    
    .recommendation-cards[b-k8v2didvaa] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .recommendation-card[b-k8v2didvaa] {
        padding: 2rem;
    }
    
    .card-title[b-k8v2didvaa] {
        font-size: 1.5rem;
    }
    
    .card-description[b-k8v2didvaa] {
        font-size: 0.95rem;
    }
    
    .info-button[b-k8v2didvaa] {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .progress-overview[b-k8v2didvaa] {
        padding: 1.5rem;
    }
    
    .progress-bar-container[b-k8v2didvaa] {
        height: 50px;
    }
    
    .segment-label[b-k8v2didvaa] {
        font-size: 1rem;
    }
    
    .progress-legend[b-k8v2didvaa] {
        gap: 1.5rem;
    }
    
    .proposal-cards[b-k8v2didvaa] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .proposal-card[b-k8v2didvaa] {
        margin-bottom: 0;
    }
    
    .card-header[b-k8v2didvaa] {
        padding: 1.5rem;
    }
    
    .status-icon[b-k8v2didvaa] {
        width: 55px;
        height: 55px;
    }
    
    .status-icon svg[b-k8v2didvaa] {
        width: 28px;
        height: 28px;
    }
    
    .percentage-value[b-k8v2didvaa] {
        font-size: 1.8rem;
    }
    
    .card-body[b-k8v2didvaa] {
        padding: 0 1.5rem 1.5rem;
    }
    
    .proposal-title[b-k8v2didvaa] {
        font-size: 1.4rem;
    }
    
    .proposal-description[b-k8v2didvaa] {
        font-size: 0.95rem;
    }
    
    .proposal-stats[b-k8v2didvaa] {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .chart-container[b-k8v2didvaa] {
        height: 250px;
        margin: 1rem 0;
    }
    
    .detail-card-summary[b-k8v2didvaa] {
        flex: 1;
        padding: 2rem;
    }
    
    .detail-card-content[b-k8v2didvaa] {
        padding: 2rem;
        max-height: 400px;
    }
    
    #detail-content h3[b-k8v2didvaa] {
        font-size: 1.5rem;
    }
    
    #detail-content h4[b-k8v2didvaa] {
        font-size: 1.2rem;
    }

    /* Asambleas tablet responsive */
    .asambleas-content[b-k8v2didvaa] {
        padding: 1.5rem;
    }
    
    .filter-section[b-k8v2didvaa] {
        padding: 1.2rem;
    }
    
    .asambleistas-grid[b-k8v2didvaa] {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.2rem;
    }
    
    .avatar-container[b-k8v2didvaa] {
        width: 110px;
        height: 110px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container[b-k8v2didvaa] {
        padding: 0 0.75rem;
    }
    
    .ciclo-page[b-k8v2didvaa] {
        padding-top: 100px;
        padding-bottom: 0;
    }
    
    .ciclo-header[b-k8v2didvaa] {
        margin-bottom: 2rem;
    }
    
    .ciclo-title[b-k8v2didvaa] {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .ciclo-intro[b-k8v2didvaa] {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        line-height: 1.4;
    }
    
    .options-grid[b-k8v2didvaa] {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .option-card[b-k8v2didvaa] {
        padding: 1.5rem;
    }
    
    .option-card h3[b-k8v2didvaa] {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .option-card p[b-k8v2didvaa] {
        font-size: 0.9rem;
    }
    
    .cta-button[b-k8v2didvaa] {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .content-section[b-k8v2didvaa] {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 15px;
    }
    
    .section-header[b-k8v2didvaa] {
        margin-bottom: 1.5rem;
    }
    
    .section-title[b-k8v2didvaa] {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
    }
    
    .close-btn[b-k8v2didvaa] {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    
    .main-stat-container[b-k8v2didvaa] {
        gap: 1.5rem;
    }
    
    .percentage-circle[b-k8v2didvaa] {
        width: 150px;
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .percentage-circle[b-k8v2didvaa]::before {
        width: 120px;
        height: 120px;
    }
    
    .percentage-number[b-k8v2didvaa] {
        font-size: 2rem;
    }
    
    .percentage-label[b-k8v2didvaa] {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .secondary-content[b-k8v2didvaa] {
        gap: 1.5rem;
    }
    
    .data-boxes[b-k8v2didvaa] {
        gap: 1rem;
    }
    
    .data-box[b-k8v2didvaa] {
        padding: 1.2rem;
    }
    
    .data-box h4[b-k8v2didvaa] {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .data-box p[b-k8v2didvaa] {
        font-size: 0.85rem;
    }
    
    .collapsible-sections[b-k8v2didvaa] {
        padding: 1rem;
    }
    
    .collapsible-header[b-k8v2didvaa] {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .collapsible-content[b-k8v2didvaa] {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .recomendaciones-content .intro-text[b-k8v2didvaa] {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .recommendation-cards[b-k8v2didvaa] {
        gap: 1.5rem;
    }
    
    .recommendation-card[b-k8v2didvaa] {
        padding: 1.5rem;
    }
    
    .card-icon[b-k8v2didvaa] {
        width: 60px;
        height: 60px;
    }
    
    .card-icon svg[b-k8v2didvaa] {
        width: 30px;
        height: 30px;
    }
    
    .card-title[b-k8v2didvaa] {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .card-description[b-k8v2didvaa] {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .info-button[b-k8v2didvaa] {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.2rem;
    }
    
    .chart-container[b-k8v2didvaa] {
        height: 200px;
        margin: 0.8rem 0;
    }
    
    /* Devolución mobile responsive */
    .devolucion-content .intro-text[b-k8v2didvaa] {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .progress-overview h3[b-k8v2didvaa] {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .progress-bar-container[b-k8v2didvaa] {
        height: 45px;
        margin-bottom: 1.5rem;
    }
    
    .progress-segment span[b-k8v2didvaa] {
        font-size: 0.85rem;
    }
    
    .proposal-cards[b-k8v2didvaa] {
        gap: 1.5rem;
    }
    
    .proposal-card[b-k8v2didvaa] {
        padding: 1.5rem;
    }
    
    .proposal-card .status-icon[b-k8v2didvaa] {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .proposal-card .percentage-badge[b-k8v2didvaa] {
        top: 0.8rem;
        right: 0.8rem;
        padding: 0.4rem 0.9rem;
        font-size: 1.3rem;
    }
    
    .proposal-card h3[b-k8v2didvaa] {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .proposal-card .description[b-k8v2didvaa] {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .proposal-card .stats[b-k8v2didvaa] {
        gap: 1rem;
    }
    
    .stats .stat-item strong[b-k8v2didvaa] {
        font-size: 1.6rem;
    }
    
    .stats .stat-item span[b-k8v2didvaa] {
        font-size: 0.85rem;
    }
    
    .proposal-card .more-info-btn[b-k8v2didvaa] {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.2rem;
    }
    
    /* Asambleas mobile responsive */
    .asambleas-content[b-k8v2didvaa] {
        padding: 1.5rem;
    }
    
    .asambleas-content .intro-text[b-k8v2didvaa] {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .filter-section[b-k8v2didvaa] {
        padding: 1.2rem;
    }
    
    .custom-select[b-k8v2didvaa] {
        max-width: 100%;
    }
    
    .select-trigger[b-k8v2didvaa] {
        padding: 0.8rem 1rem;
    }
    
    .asambleistas-grid[b-k8v2didvaa] {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.2rem;
    }
    
    .asambleista-card[b-k8v2didvaa] {
        padding: 1.2rem;
    }
    
    .avatar-container[b-k8v2didvaa] {
        width: 100px;
        height: 100px;
    }
    
    .asambleista-name[b-k8v2didvaa] {
        font-size: 1rem;
    }
    
    .asambleista-localidad[b-k8v2didvaa] {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .container[b-k8v2didvaa] {
        padding: 0 0.5rem;
    }
    
    .ciclo-page[b-k8v2didvaa] {
        padding-top: 90px;
    }
    
    .ciclo-title[b-k8v2didvaa] {
        font-size: 1.4rem;
    }
    
    .ciclo-intro[b-k8v2didvaa] {
        font-size: 0.8rem;
    }
    
    .option-card[b-k8v2didvaa] {
        padding: 1rem;
    }
    
    .option-card h3[b-k8v2didvaa] {
        font-size: 1.1rem;
    }
    
    .option-card p[b-k8v2didvaa] {
        font-size: 0.8rem;
    }
    
    .content-section[b-k8v2didvaa] {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .section-title[b-k8v2didvaa] {
        font-size: 1.2rem;
    }
    
    .percentage-circle[b-k8v2didvaa] {
        width: 130px;
        height: 130px;
    }
    
    .percentage-circle[b-k8v2didvaa]::before {
        width: 105px;
        height: 105px;
    }
    
    .percentage-number[b-k8v2didvaa] {
        font-size: 1.8rem;
    }
    
    .data-box[b-k8v2didvaa] {
        padding: 1rem;
    }
    
    .collapsible-header[b-k8v2didvaa] {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
    
    .collapsible-content[b-k8v2didvaa] {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .recomendaciones-content .intro-text[b-k8v2didvaa] {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .recommendation-card[b-k8v2didvaa] {
        padding: 1.2rem;
    }
    
    .card-icon[b-k8v2didvaa] {
        width: 55px;
        height: 55px;
    }
    
    .card-icon svg[b-k8v2didvaa] {
        width: 28px;
        height: 28px;
    }
    
    .card-title[b-k8v2didvaa] {
        font-size: 1.2rem;
    }
    
    .card-description[b-k8v2didvaa] {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .info-button[b-k8v2didvaa] {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Devolución extra small mobile responsive */
    .devolucion-content .intro-text[b-k8v2didvaa] {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .progress-overview h3[b-k8v2didvaa] {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .progress-bar-container[b-k8v2didvaa] {
        height: 40px;
        margin-bottom: 1.2rem;
    }
    
    .progress-segment span[b-k8v2didvaa] {
        font-size: 0.75rem;
    }
    
    .proposal-cards[b-k8v2didvaa] {
        gap: 1.2rem;
    }
    
    .proposal-card[b-k8v2didvaa] {
        padding: 1.2rem;
    }
    
    .proposal-card .status-icon[b-k8v2didvaa] {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .proposal-card .percentage-badge[b-k8v2didvaa] {
        top: 0.6rem;
        right: 0.6rem;
        padding: 0.3rem 0.7rem;
        font-size: 1.1rem;
    }
    
    .proposal-card h3[b-k8v2didvaa] {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .proposal-card .description[b-k8v2didvaa] {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .proposal-card .stats[b-k8v2didvaa] {
        gap: 0.8rem;
    }
    
    .stats .stat-item strong[b-k8v2didvaa] {
        font-size: 1.4rem;
    }
    
    .stats .stat-item span[b-k8v2didvaa] {
        font-size: 0.75rem;
    }
    
    .proposal-card .more-info-btn[b-k8v2didvaa] {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Asambleas extra small mobile responsive */
    .asambleas-content[b-k8v2didvaa] {
        padding: 1rem;
    }
    
    .asambleas-content .intro-text[b-k8v2didvaa] {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .filter-section[b-k8v2didvaa] {
        padding: 1rem;
    }
    
    .filter-label[b-k8v2didvaa] {
        font-size: 0.9rem;
    }
    
    .select-trigger[b-k8v2didvaa] {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }
    
    .select-option[b-k8v2didvaa] {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }
    
    .results-count[b-k8v2didvaa] {
        font-size: 0.8rem;
    }
    
    .asambleistas-grid[b-k8v2didvaa] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .asambleista-card[b-k8v2didvaa] {
        padding: 1rem;
    }
    
    .avatar-container[b-k8v2didvaa] {
        width: 90px;
        height: 90px;
    }
    
    .asambleista-name[b-k8v2didvaa] {
        font-size: 0.95rem;
    }
    
    .asambleista-localidad[b-k8v2didvaa] {
        font-size: 0.8rem;
    }
    
    .no-results svg[b-k8v2didvaa] {
        width: 60px;
        height: 60px;
    }
    
    .no-results p[b-k8v2didvaa] {
        font-size: 0.95rem;
    }
}
/* Responsive Styles */
@media (max-width: 768px) {
    .ciclo-page[b-k8v2didvaa] {
        padding-top: 120px;
    }

    .stats-grid[b-k8v2didvaa] {
        grid-template-columns: 1fr;
    }

    .stat-card[b-k8v2didvaa] {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .secondary-content[b-k8v2didvaa] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .chart-container[b-k8v2didvaa] {
        order: -1;
        margin-bottom: 1rem;
    }

    .recommendation-detail-view[b-k8v2didvaa] {
        flex-direction: column;
    }

    .detail-card-summary[b-k8v2didvaa] {
        flex: 0 0 auto;
        width: 100%;
    }

    .proposal-detail-view[b-k8v2didvaa] {
        flex-direction: column;
    }

    .detail-proposal-summary[b-k8v2didvaa] {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ciclo-page[b-k8v2didvaa] {
        padding-top: 100px;
    }

    .ciclo-title[b-k8v2didvaa] {
        font-size: 2rem;
    }

    .section-header[b-k8v2didvaa] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-header h2[b-k8v2didvaa] {
        font-size: 1.5rem;
    }

    .percentage-circle-small[b-k8v2didvaa] {
        width: 80px;
        height: 80px;
    }

    .percentage-circle-small[b-k8v2didvaa]::before {
        width: 60px;
        height: 60px;
    }

    .percentage-number-small[b-k8v2didvaa] {
        font-size: 1.2rem;
    }

    .options-grid[b-k8v2didvaa] {
        grid-template-columns: 1fr;
    }
    
    .recommendation-card[b-k8v2didvaa] {
        padding: 1.5rem;
    }
    
    .card-title[b-k8v2didvaa] {
        font-size: 1.5rem;
    }
}
/* /Pages/Ciclo2027.razor.rz.scp.css */
/* Ensure Poppins is applied to all elements on this page */
*[b-tocszzbd6e] {
    font-family: 'Poppins', sans-serif;
}

/* Cycle Page Styles */
.ciclo-page[b-tocszzbd6e] {
    padding-top: 160px;
    min-height: 100vh;
    background: #f8fafc;
    padding-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.container[b-tocszzbd6e] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Section */
.ciclo-header[b-tocszzbd6e] {
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.ciclo-title[b-tocszzbd6e] {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #e3172e;
}

.ciclo-intro[b-tocszzbd6e] {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    font-weight: 300;
}

/* Options Grid */
.options-grid[b-tocszzbd6e] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.option-card[b-tocszzbd6e] {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.option-card[b-tocszzbd6e]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 182, 45, 0.1), transparent);
    transition: left 0.5s;
}

.option-card:hover[b-tocszzbd6e]::before {
    left: 100%;
}

.option-card:hover[b-tocszzbd6e] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #fab62d;
}

.option-card.active[b-tocszzbd6e] {
    background: linear-gradient(135deg, rgba(250, 182, 45, 0.1) 0%, rgba(227, 23, 46, 0.1) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(227, 23, 46, 0.2);
    border-color: #e3172e;
}

.option-icon[b-tocszzbd6e] {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: #e3172e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.option-card:hover .option-icon[b-tocszzbd6e] {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(227, 23, 46, 0.3);
}

.option-icon svg[b-tocszzbd6e] {
    width: 30px;
    height: 30px;
    color: white;
}

.option-card h3[b-tocszzbd6e] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.option-card p[b-tocszzbd6e] {
    opacity: 0.8;
    font-weight: 300;
}

/* Collapsible Sections */
.collapsible-sections[b-tocszzbd6e] {
    position: relative;
    padding-bottom: 2rem;
}

.content-section[b-tocszzbd6e] {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: #333;
    animation: slideUp-b-tocszzbd6e 0.4s ease;
}

/* Generalidades section with gray background like Home page info section */
#generalidades-content[b-tocszzbd6e] {
    background: #f8fafc;
}

.content-section.active[b-tocszzbd6e] {
    display: block;
}

@keyframes slideUp-b-tocszzbd6e {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header[b-tocszzbd6e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.section-header h2[b-tocszzbd6e] {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.close-btn[b-tocszzbd6e] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover[b-tocszzbd6e] {
    background: #f0f0f0;
    color: #333;
}

/* Datos Content Specific Styles */
.datos-content[b-tocszzbd6e] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Stats Grid - 2x2 layout */
.stats-grid[b-tocszzbd6e] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-tocszzbd6e] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.stat-card:hover[b-tocszzbd6e] {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-circle-small[b-tocszzbd6e] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.percentage-circle-small[b-tocszzbd6e] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#667eea 0deg, #667eea 162deg, #e0e0e0 162deg, #e0e0e0 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.percentage-circle-small[b-tocszzbd6e]::before {
    content: '';
    position: absolute;
    width: 75px;
    height: 75px;
    background: white;
    border-radius: 50%;
}

.percentage-number-small[b-tocszzbd6e] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    z-index: 1;
    position: relative;
}

.stat-description-small h4[b-tocszzbd6e] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.stat-description-small p[b-tocszzbd6e] {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    font-weight: 300;
    margin: 0;
}

/* Old styles for backward compatibility */
.main-stat-container[b-tocszzbd6e] {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.stat-circle[b-tocszzbd6e] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.percentage-circle[b-tocszzbd6e] {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#667eea 0deg, #667eea 162deg, #e0e0e0 162deg, #e0e0e0 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.percentage-circle[b-tocszzbd6e]::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
}

.percentage-number[b-tocszzbd6e] {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    z-index: 1;
    position: relative;
}

.stat-description h3[b-tocszzbd6e] {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.stat-description p[b-tocszzbd6e] {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.secondary-content[b-tocszzbd6e] {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 3rem;
    align-items: start;
}

.text-content h4[b-tocszzbd6e] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.text-content p[b-tocszzbd6e] {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.chart-container[b-tocszzbd6e] {
    text-align: center;
}

.circular-chart[b-tocszzbd6e] {
    display: block;
    margin: 0 auto;
    max-width: 200px;
}

.circular-chart-svg[b-tocszzbd6e] {
    width: 100%;
    height: auto;
}

.circle-bg[b-tocszzbd6e] {
    fill: none;
    stroke: #eee;
    stroke-width: 2.5;
}

.circle[b-tocszzbd6e] {
    fill: none;
    stroke: #764ba2;
    stroke-width: 2.5;
    stroke-linecap: round;
    animation: progress-b-tocszzbd6e 2s ease-in-out forwards;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

@keyframes progress-b-tocszzbd6e {
    0% {
        stroke-dasharray: 0 100;
    }
}

.percentage-text[b-tocszzbd6e] {
    fill: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.5em;
    font-weight: 600;
    text-anchor: middle;
}

.chart-container h5[b-tocszzbd6e] {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.data-boxes[b-tocszzbd6e] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.data-box[b-tocszzbd6e] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.data-box:hover[b-tocszzbd6e] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.data-box h5[b-tocszzbd6e] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.data-box p[b-tocszzbd6e] {
    color: #666;
    font-weight: 300;
}

/* Placeholder Content */
.placeholder-content[b-tocszzbd6e] {
    text-align: left;
    padding: 4rem 2rem;
    color: #666;
}

.placeholder-content p[b-tocszzbd6e] {
    font-size: 1.25rem;
    font-style: italic;
}

/* Recomendaciones Section */
.recomendaciones-content[b-tocszzbd6e] {
    padding: 2rem 0;
}

.recomendaciones-content .intro-text[b-tocszzbd6e] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.recommendation-cards[b-tocszzbd6e] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.recommendation-card[b-tocszzbd6e] {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recommendation-card:hover[b-tocszzbd6e] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.recommendation-card[b-tocszzbd6e]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.recommendation-card:hover[b-tocszzbd6e]::before {
    transform: scaleX(1);
}

.card-decoration[b-tocszzbd6e] {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    pointer-events: none;
}

.recommendation-card:hover .card-decoration[b-tocszzbd6e] {
    transform: scale(1.5);
    opacity: 0.5;
}

.card-icon[b-tocszzbd6e] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.recommendation-card:hover .card-icon[b-tocszzbd6e] {
    transform: rotateY(360deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.card-icon svg[b-tocszzbd6e] {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 2;
    flex-shrink: 0;
}

.card-content[b-tocszzbd6e] {
    position: relative;
    z-index: 1;
}

.card-title[b-tocszzbd6e] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-description[b-tocszzbd6e] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 300;
}

.info-button[b-tocszzbd6e] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.info-button[b-tocszzbd6e]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.info-button:hover[b-tocszzbd6e]::before {
    left: 100%;
}

.info-button:hover[b-tocszzbd6e] {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.info-button svg[b-tocszzbd6e] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.info-button:hover svg[b-tocszzbd6e] {
    transform: translateX(5px);
}

.info-button span[b-tocszzbd6e] {
    position: relative;
    z-index: 1;
}

/* Recommendation Detail View Styles */
.recommendation-cards[b-tocszzbd6e] {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendation-cards.expanding .recommendation-card[b-tocszzbd6e] {
    opacity: 0;
    transform: scale(0.95);
}

.recommendation-detail-view[b-tocszzbd6e] {
    display: none;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommendation-detail-view.active[b-tocszzbd6e] {
    opacity: 1;
    transform: translateY(0);
}

.detail-card-summary[b-tocszzbd6e] {
    flex: 0 0 320px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.detail-card-summary[b-tocszzbd6e]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.detail-card-summary .card-icon[b-tocszzbd6e] {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.detail-card-summary .card-icon svg[b-tocszzbd6e] {
    width: 45px;
    height: 45px;
    color: white;
    stroke: white;
    stroke-width: 2;
    flex-shrink: 0;
}

.detail-card-summary .card-title[b-tocszzbd6e] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detail-card-summary .card-description[b-tocszzbd6e] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
}

.detail-card-content[b-tocszzbd6e] {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow-y: auto;
    max-height: 600px;
}

.detail-card-content[b-tocszzbd6e]::-webkit-scrollbar {
    width: 8px;
}

.detail-card-content[b-tocszzbd6e]::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
}

.detail-card-content[b-tocszzbd6e]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.back-button[b-tocszzbd6e] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.back-button:hover[b-tocszzbd6e] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.back-button svg[b-tocszzbd6e] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.back-button:hover svg[b-tocszzbd6e] {
    transform: translateX(-5px);
}

#detail-content h3[b-tocszzbd6e] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#detail-content h4[b-tocszzbd6e] {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#detail-content p[b-tocszzbd6e] {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

#detail-content ul[b-tocszzbd6e] {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

#detail-content ul li[b-tocszzbd6e] {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

#detail-content ul li[b-tocszzbd6e]::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Devolución Section */
.devolucion-content[b-tocszzbd6e] {
    padding: 2rem 0;
}

.devolucion-content .intro-text[b-tocszzbd6e] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.devolucion-content .intro-text strong[b-tocszzbd6e] {
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Progress Overview */
.progress-overview[b-tocszzbd6e] {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.progress-bar-container[b-tocszzbd6e] {
    display: flex;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.progress-segment[b-tocszzbd6e] {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-segment[b-tocszzbd6e]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer-b-tocszzbd6e 3s infinite;
}

@keyframes shimmer-b-tocszzbd6e {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.progress-segment.implemented[b-tocszzbd6e] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.progress-segment.partial[b-tocszzbd6e] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.progress-segment.discarded[b-tocszzbd6e] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.progress-segment:hover[b-tocszzbd6e] {
    filter: brightness(1.1);
    transform: scaleY(1.05);
}

.segment-label[b-tocszzbd6e] {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.progress-legend[b-tocszzbd6e] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item[b-tocszzbd6e] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color[b-tocszzbd6e] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.legend-color.implemented[b-tocszzbd6e] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.legend-color.partial[b-tocszzbd6e] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.legend-color.discarded[b-tocszzbd6e] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.legend-text[b-tocszzbd6e] {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Proposal Cards */
.proposal-cards[b-tocszzbd6e] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.proposal-card[b-tocszzbd6e] {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.proposal-card:hover[b-tocszzbd6e] {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.card-header[b-tocszzbd6e] {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.implemented-card .card-header[b-tocszzbd6e] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.partial-card .card-header[b-tocszzbd6e] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.discarded-card .card-header[b-tocszzbd6e] {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(75, 85, 99, 0.1) 100%);
}

.status-icon[b-tocszzbd6e] {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.implemented-card .status-icon[b-tocszzbd6e] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.partial-card .status-icon[b-tocszzbd6e] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.discarded-card .status-icon[b-tocszzbd6e] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.proposal-card:hover .status-icon[b-tocszzbd6e] {
    transform: rotate(360deg) scale(1.1);
}

.status-icon svg[b-tocszzbd6e] {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2.5;
}

.percentage-badge[b-tocszzbd6e] {
    text-align: right;
}

.percentage-value[b-tocszzbd6e] {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.implemented-card .percentage-value[b-tocszzbd6e] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partial-card .percentage-value[b-tocszzbd6e] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.discarded-card .percentage-value[b-tocszzbd6e] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.percentage-count[b-tocszzbd6e] {
    display: block;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.card-body[b-tocszzbd6e] {
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 1;
}

.proposal-title[b-tocszzbd6e] {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.proposal-description[b-tocszzbd6e] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.proposal-stats[b-tocszzbd6e] {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
}

.stat-item[b-tocszzbd6e] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon[b-tocszzbd6e] {
    font-size: 1.2rem;
}

.stat-text[b-tocszzbd6e] {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.proposal-button[b-tocszzbd6e] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.implemented-btn[b-tocszzbd6e] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.partial-btn[b-tocszzbd6e] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.discarded-btn[b-tocszzbd6e] {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.proposal-button[b-tocszzbd6e]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.proposal-button:hover[b-tocszzbd6e]::before {
    left: 100%;
}

.implemented-btn:hover[b-tocszzbd6e] {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.partial-btn:hover[b-tocszzbd6e] {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.discarded-btn:hover[b-tocszzbd6e] {
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
    transform: translateY(-2px);
}

.proposal-button svg[b-tocszzbd6e] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.proposal-button:hover svg[b-tocszzbd6e] {
    transform: translateX(4px);
}

/* Proposal Cards Expansion Animation */
.proposal-cards.expanding .proposal-card[b-tocszzbd6e] {
    opacity: 0;
    transform: scale(0.95);
}

/* Proposal Detail View */
.proposal-detail-view[b-tocszzbd6e] {
    display: none;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.proposal-detail-view.active[b-tocszzbd6e] {
    opacity: 1;
    transform: translateY(0);
}

.detail-proposal-summary[b-tocszzbd6e] {
    flex: 0 0 340px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.detail-proposal-summary .card-header[b-tocszzbd6e] {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.detail-proposal-summary.implemented-summary .card-header[b-tocszzbd6e] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}

.detail-proposal-summary.partial-summary .card-header[b-tocszzbd6e] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.detail-proposal-summary.discarded-summary .card-header[b-tocszzbd6e] {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(75, 85, 99, 0.1) 100%);
}

.detail-proposal-summary .status-icon[b-tocszzbd6e] {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.detail-proposal-summary .status-icon svg[b-tocszzbd6e] {
    width: 40px;
    height: 40px;
    stroke-width: 2.5;
}

.detail-proposal-summary .percentage-badge[b-tocszzbd6e] {
    text-align: right;
}

.detail-proposal-summary .percentage-value[b-tocszzbd6e] {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.detail-proposal-summary .percentage-count[b-tocszzbd6e] {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.detail-proposal-summary .card-body[b-tocszzbd6e] {
    padding: 1.5rem 2rem 2rem;
    text-align: left;
}

.detail-proposal-summary .proposal-title[b-tocszzbd6e] {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.detail-proposal-summary .proposal-description[b-tocszzbd6e] {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
    font-weight: 300;
}

.detail-proposal-content[b-tocszzbd6e] {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    max-height: 600px;
}

.detail-proposal-content[b-tocszzbd6e]::-webkit-scrollbar {
    width: 8px;
}

.detail-proposal-content[b-tocszzbd6e]::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
}

.detail-proposal-content[b-tocszzbd6e]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.detail-proposal-content[b-tocszzbd6e]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

#proposal-detail-content h3[b-tocszzbd6e] {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#proposal-detail-content h4[b-tocszzbd6e] {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#proposal-detail-content p[b-tocszzbd6e] {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

#proposal-detail-content ul[b-tocszzbd6e] {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

#proposal-detail-content ul li[b-tocszzbd6e] {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

#proposal-detail-content ul li[b-tocszzbd6e]::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   ASAMBLEAS SECTION STYLES
   ============================================ */

.asambleas-content[b-tocszzbd6e] {
    padding: 1rem 0;
}

/* Filter Container */
.filter-container[b-tocszzbd6e] {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.search-box[b-tocszzbd6e] {
    position: relative;
    margin-bottom: 1rem;
}

.search-icon[b-tocszzbd6e] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #6b7280;
    pointer-events: none;
}

.filter-input[b-tocszzbd6e] {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.filter-input:focus[b-tocszzbd6e] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-input[b-tocszzbd6e]::placeholder {
    color: #9ca3af;
}

.results-count[b-tocszzbd6e] {
    font-size: 0.95rem;
    color: #6b7280;
    text-align: right;
    padding: 0.5rem 0;
}

.results-count span[b-tocszzbd6e] {
    font-weight: 700;
    color: #667eea;
}

/* Asambleistas Grid */
.asambleistas-grid[b-tocszzbd6e] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    animation: fadeIn-b-tocszzbd6e 0.5s ease;
}

@keyframes fadeIn-b-tocszzbd6e {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for cards */
.asambleista-card[b-tocszzbd6e] {
    animation: slideInUp-b-tocszzbd6e 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.asambleista-card:nth-child(1)[b-tocszzbd6e] { animation-delay: 0.1s; }
.asambleista-card:nth-child(2)[b-tocszzbd6e] { animation-delay: 0.15s; }
.asambleista-card:nth-child(3)[b-tocszzbd6e] { animation-delay: 0.2s; }
.asambleista-card:nth-child(4)[b-tocszzbd6e] { animation-delay: 0.25s; }
.asambleista-card:nth-child(5)[b-tocszzbd6e] { animation-delay: 0.3s; }
.asambleista-card:nth-child(6)[b-tocszzbd6e] { animation-delay: 0.35s; }
.asambleista-card:nth-child(n+7)[b-tocszzbd6e] { animation-delay: 0.4s; }

@keyframes slideInUp-b-tocszzbd6e {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Asambleista Card */
.asambleista-card[b-tocszzbd6e] {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.asambleista-card[b-tocszzbd6e]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.asambleista-card:hover[b-tocszzbd6e]::before {
    opacity: 1;
}

.asambleista-card:hover[b-tocszzbd6e] {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

/* Card Photo/Avatar */
.card-photo[b-tocszzbd6e] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #667eea 0%, #764ba2 100%) border-box;
    transition: all 0.3s ease;
}

.asambleista-card:hover .card-photo[b-tocszzbd6e] {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.card-photo img[b-tocszzbd6e] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Avatar Placeholder */
.avatar-placeholder[b-tocszzbd6e] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.avatar-placeholder[b-tocszzbd6e]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    transform: scale(1);
    animation: pulse-b-tocszzbd6e 3s infinite;
}

@keyframes pulse-b-tocszzbd6e {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.1;
    }
}

.asambleista-card:hover .avatar-placeholder[b-tocszzbd6e] {
    transform: scale(1.1);
}

.asambleista-card:hover .avatar-placeholder[b-tocszzbd6e]::before {
    animation-play-state: paused;
}

/* Card Info */
.card-info[b-tocszzbd6e] {
    width: 100%;
    transition: all 0.3s ease;
}

.asambleista-card:hover .card-info[b-tocszzbd6e] {
    transform: translateY(-2px);
}

.person-name[b-tocszzbd6e] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.6rem 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.asambleista-card:hover .person-name[b-tocszzbd6e] {
    color: #667eea;
}

.person-localidad[b-tocszzbd6e] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.asambleista-card:hover .person-localidad[b-tocszzbd6e] {
    color: #667eea;
}

.person-localidad svg[b-tocszzbd6e] {
    width: 16px;
    height: 16px;
    color: #667eea;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.asambleista-card:hover .person-localidad svg[b-tocszzbd6e] {
    color: #764ba2;
    transform: scale(1.1);
}

/* No Results */
.no-results[b-tocszzbd6e] {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
    grid-column: 1 / -1;
    animation: fadeIn-b-tocszzbd6e 0.5s ease;
}

.no-results svg[b-tocszzbd6e] {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    color: #d1d5db;
    animation: bounce-b-tocszzbd6e 2s infinite;
}

@keyframes bounce-b-tocszzbd6e {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.no-results p[b-tocszzbd6e] {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* Loading skeleton for cards */
.asambleista-card.loading[b-tocszzbd6e] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-b-tocszzbd6e 1.5s infinite;
}

@keyframes loading-b-tocszzbd6e {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.asambleista-card.loading .card-photo[b-tocszzbd6e],
.asambleista-card.loading .person-name[b-tocszzbd6e],
.asambleista-card.loading .person-localidad[b-tocszzbd6e] {
    background: #e0e0e0;
    color: transparent;
    border-radius: 4px;
}

.proposal-button svg[b-tocszzbd6e] {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.proposal-button:hover svg[b-tocszzbd6e] {
    transform: translateX(5px);
}

.proposal-button span[b-tocszzbd6e] {
    position: relative;
    z-index: 1;
}

.card-glow[b-tocszzbd6e] {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
    transition: all 0.4s ease;
}

.implemented-glow[b-tocszzbd6e] {
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
}

.partial-glow[b-tocszzbd6e] {
    background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
}

.discarded-glow[b-tocszzbd6e] {
    background: radial-gradient(circle, #6b7280 0%, transparent 70%);
}

.proposal-card:hover .card-glow[b-tocszzbd6e] {
    bottom: -50px;
    right: -50px;
    opacity: 0.5;
}

/* Animation Classes */
.animate-on-scroll[b-tocszzbd6e] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible[b-tocszzbd6e] {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1[b-tocszzbd6e] {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-2[b-tocszzbd6e] {
    transition-delay: 0.4s;
}

/* Mobile and Tablet Responsive Design */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .container[b-tocszzbd6e] {
        padding: 0 2rem;
    }
    
    .ciclo-page[b-tocszzbd6e] {
        padding-top: 140px;
    }
    
    .ciclo-title[b-tocszzbd6e] {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }
    
    .stats-grid[b-tocszzbd6e] {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .stat-card[b-tocszzbd6e] {
        padding: 1.25rem;
    }
    
    .ciclo-intro[b-tocszzbd6e] {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
        max-width: 700px;
    }
    
    .options-grid[b-tocszzbd6e] {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .main-stat-container[b-tocszzbd6e] {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .secondary-content[b-tocszzbd6e] {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .data-boxes[b-tocszzbd6e] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recommendation-detail-view[b-tocszzbd6e] {
        flex-direction: column;
    }
    
    .detail-card-summary[b-tocszzbd6e] {
        flex: 1;
    }
    
    .detail-card-content[b-tocszzbd6e] {
        max-height: 500px;
    }
    
    .proposal-detail-view[b-tocszzbd6e] {
        flex-direction: column;
    }
    
    .detail-proposal-summary[b-tocszzbd6e] {
        flex: 1;
    }
    
    .detail-proposal-content[b-tocszzbd6e] {
        max-height: 500px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .container[b-tocszzbd6e] {
        padding: 0 1rem;
    }
    
    .ciclo-page[b-tocszzbd6e] {
        padding-top: 120px;
    }
    
    .ciclo-header[b-tocszzbd6e] {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .ciclo-title[b-tocszzbd6e] {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .ciclo-intro[b-tocszzbd6e] {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        line-height: 1.5;
        max-width: 100%;
    }
    
    .options-grid[b-tocszzbd6e] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .option-card[b-tocszzbd6e] {
        padding: 1.8rem;
        text-align: center;
    }
    
    .option-card h3[b-tocszzbd6e] {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .option-card p[b-tocszzbd6e] {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .stats-grid[b-tocszzbd6e] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card[b-tocszzbd6e] {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .percentage-circle-small[b-tocszzbd6e] {
        width: 90px;
        height: 90px;
    }
    
    .percentage-circle-small[b-tocszzbd6e]::before {
        width: 68px;
        height: 68px;
    }
    
    .percentage-number-small[b-tocszzbd6e] {
        font-size: 1.3rem;
    }
    
    .stat-description-small h4[b-tocszzbd6e] {
        font-size: 1rem;
    }
    
    .stat-description-small p[b-tocszzbd6e] {
        font-size: 0.85rem;
    }
    
    .cta-button[b-tocszzbd6e] {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 200px;
    }
    
    .content-section[b-tocszzbd6e] {
        padding: 2rem;
        margin: 2rem 0;
        border-radius: 20px;
    }
    
    .section-header[b-tocszzbd6e] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-title[b-tocszzbd6e] {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin: 0;
    }
    
    .close-btn[b-tocszzbd6e] {
        align-self: flex-end;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .main-stat-container[b-tocszzbd6e] {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .percentage-circle[b-tocszzbd6e] {
        margin: 0 auto 1rem;
    }
    
    .secondary-content[b-tocszzbd6e] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .data-boxes[b-tocszzbd6e] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .data-box[b-tocszzbd6e] {
        padding: 1.5rem;
        text-align: center;
    }
    
    .data-box h4[b-tocszzbd6e] {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .data-box p[b-tocszzbd6e] {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .collapsible-sections[b-tocszzbd6e] {
        padding: 1.5rem;
    }
    
    .collapsible-header[b-tocszzbd6e] {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .collapsible-content[b-tocszzbd6e] {
        padding: 1rem;
    }
    
    .recommendation-cards[b-tocszzbd6e] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .recommendation-card[b-tocszzbd6e] {
        padding: 2rem;
    }
    
    .card-title[b-tocszzbd6e] {
        font-size: 1.5rem;
    }
    
    .card-description[b-tocszzbd6e] {
        font-size: 0.95rem;
    }
    
    .info-button[b-tocszzbd6e] {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .progress-overview[b-tocszzbd6e] {
        padding: 1.5rem;
    }
    
    .progress-bar-container[b-tocszzbd6e] {
        height: 50px;
    }
    
    .segment-label[b-tocszzbd6e] {
        font-size: 1rem;
    }
    
    .progress-legend[b-tocszzbd6e] {
        gap: 1.5rem;
    }
    
    .proposal-cards[b-tocszzbd6e] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .proposal-card[b-tocszzbd6e] {
        margin-bottom: 0;
    }
    
    .card-header[b-tocszzbd6e] {
        padding: 1.5rem;
    }
    
    .status-icon[b-tocszzbd6e] {
        width: 55px;
        height: 55px;
    }
    
    .status-icon svg[b-tocszzbd6e] {
        width: 28px;
        height: 28px;
    }
    
    .percentage-value[b-tocszzbd6e] {
        font-size: 1.8rem;
    }
    
    .card-body[b-tocszzbd6e] {
        padding: 0 1.5rem 1.5rem;
    }
    
    .proposal-title[b-tocszzbd6e] {
        font-size: 1.4rem;
    }
    
    .proposal-description[b-tocszzbd6e] {
        font-size: 0.95rem;
    }
    
    .proposal-stats[b-tocszzbd6e] {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .chart-container[b-tocszzbd6e] {
        height: 250px;
        margin: 1rem 0;
    }
    
    .detail-card-summary[b-tocszzbd6e] {
        flex: 1;
        padding: 2rem;
    }
    
    .detail-card-content[b-tocszzbd6e] {
        padding: 2rem;
        max-height: 400px;
    }
    
    #detail-content h3[b-tocszzbd6e] {
        font-size: 1.5rem;
    }
    
    #detail-content h4[b-tocszzbd6e] {
        font-size: 1.2rem;
    }

    /* Asambleas tablet responsive */
    .asambleas-content[b-tocszzbd6e] {
        padding: 1.5rem;
    }
    
    .filter-section[b-tocszzbd6e] {
        padding: 1.2rem;
    }
    
    .asambleistas-grid[b-tocszzbd6e] {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.2rem;
    }
    
    .avatar-container[b-tocszzbd6e] {
        width: 110px;
        height: 110px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container[b-tocszzbd6e] {
        padding: 0 0.75rem;
    }
    
    .ciclo-page[b-tocszzbd6e] {
        padding-top: 100px;
        padding-bottom: 0;
    }
    
    .ciclo-header[b-tocszzbd6e] {
        margin-bottom: 2rem;
    }
    
    .ciclo-title[b-tocszzbd6e] {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .ciclo-intro[b-tocszzbd6e] {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        line-height: 1.4;
    }
    
    .options-grid[b-tocszzbd6e] {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .option-card[b-tocszzbd6e] {
        padding: 1.5rem;
    }
    
    .option-card h3[b-tocszzbd6e] {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .option-card p[b-tocszzbd6e] {
        font-size: 0.9rem;
    }
    
    .cta-button[b-tocszzbd6e] {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .content-section[b-tocszzbd6e] {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 15px;
    }
    
    .section-header[b-tocszzbd6e] {
        margin-bottom: 1.5rem;
    }
    
    .section-title[b-tocszzbd6e] {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
    }
    
    .close-btn[b-tocszzbd6e] {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    
    .main-stat-container[b-tocszzbd6e] {
        gap: 1.5rem;
    }
    
    .percentage-circle[b-tocszzbd6e] {
        width: 150px;
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .percentage-circle[b-tocszzbd6e]::before {
        width: 120px;
        height: 120px;
    }
    
    .percentage-number[b-tocszzbd6e] {
        font-size: 2rem;
    }
    
    .percentage-label[b-tocszzbd6e] {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .secondary-content[b-tocszzbd6e] {
        gap: 1.5rem;
    }
    
    .data-boxes[b-tocszzbd6e] {
        gap: 1rem;
    }
    
    .data-box[b-tocszzbd6e] {
        padding: 1.2rem;
    }
    
    .data-box h4[b-tocszzbd6e] {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .data-box p[b-tocszzbd6e] {
        font-size: 0.85rem;
    }
    
    .collapsible-sections[b-tocszzbd6e] {
        padding: 1rem;
    }
    
    .collapsible-header[b-tocszzbd6e] {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .collapsible-content[b-tocszzbd6e] {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .recomendaciones-content .intro-text[b-tocszzbd6e] {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .recommendation-cards[b-tocszzbd6e] {
        gap: 1.5rem;
    }
    
    .recommendation-card[b-tocszzbd6e] {
        padding: 1.5rem;
    }
    
    .card-icon[b-tocszzbd6e] {
        width: 60px;
        height: 60px;
    }
    
    .card-icon svg[b-tocszzbd6e] {
        width: 30px;
        height: 30px;
    }
    
    .card-title[b-tocszzbd6e] {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .card-description[b-tocszzbd6e] {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .info-button[b-tocszzbd6e] {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.2rem;
    }
    
    .chart-container[b-tocszzbd6e] {
        height: 200px;
        margin: 0.8rem 0;
    }
    
    /* Devolución mobile responsive */
    .devolucion-content .intro-text[b-tocszzbd6e] {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .progress-overview h3[b-tocszzbd6e] {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .progress-bar-container[b-tocszzbd6e] {
        height: 45px;
        margin-bottom: 1.5rem;
    }
    
    .progress-segment span[b-tocszzbd6e] {
        font-size: 0.85rem;
    }
    
    .proposal-cards[b-tocszzbd6e] {
        gap: 1.5rem;
    }
    
    .proposal-card[b-tocszzbd6e] {
        padding: 1.5rem;
    }
    
    .proposal-card .status-icon[b-tocszzbd6e] {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .proposal-card .percentage-badge[b-tocszzbd6e] {
        top: 0.8rem;
        right: 0.8rem;
        padding: 0.4rem 0.9rem;
        font-size: 1.3rem;
    }
    
    .proposal-card h3[b-tocszzbd6e] {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .proposal-card .description[b-tocszzbd6e] {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .proposal-card .stats[b-tocszzbd6e] {
        gap: 1rem;
    }
    
    .stats .stat-item strong[b-tocszzbd6e] {
        font-size: 1.6rem;
    }
    
    .stats .stat-item span[b-tocszzbd6e] {
        font-size: 0.85rem;
    }
    
    .proposal-card .more-info-btn[b-tocszzbd6e] {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.2rem;
    }
    
    /* Asambleas mobile responsive */
    .asambleas-content[b-tocszzbd6e] {
        padding: 1.5rem;
    }
    
    .asambleas-content .intro-text[b-tocszzbd6e] {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .filter-section[b-tocszzbd6e] {
        padding: 1.2rem;
    }
    
    .custom-select[b-tocszzbd6e] {
        max-width: 100%;
    }
    
    .select-trigger[b-tocszzbd6e] {
        padding: 0.8rem 1rem;
    }
    
    .asambleistas-grid[b-tocszzbd6e] {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.2rem;
    }
    
    .asambleista-card[b-tocszzbd6e] {
        padding: 1.2rem;
    }
    
    .avatar-container[b-tocszzbd6e] {
        width: 100px;
        height: 100px;
    }
    
    .asambleista-name[b-tocszzbd6e] {
        font-size: 1rem;
    }
    
    .asambleista-localidad[b-tocszzbd6e] {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .container[b-tocszzbd6e] {
        padding: 0 0.5rem;
    }
    
    .ciclo-page[b-tocszzbd6e] {
        padding-top: 90px;
    }
    
    .ciclo-title[b-tocszzbd6e] {
        font-size: 1.4rem;
    }
    
    .ciclo-intro[b-tocszzbd6e] {
        font-size: 0.8rem;
    }
    
    .option-card[b-tocszzbd6e] {
        padding: 1rem;
    }
    
    .option-card h3[b-tocszzbd6e] {
        font-size: 1.1rem;
    }
    
    .option-card p[b-tocszzbd6e] {
        font-size: 0.8rem;
    }
    
    .content-section[b-tocszzbd6e] {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .section-title[b-tocszzbd6e] {
        font-size: 1.2rem;
    }
    
    .percentage-circle[b-tocszzbd6e] {
        width: 130px;
        height: 130px;
    }
    
    .percentage-circle[b-tocszzbd6e]::before {
        width: 105px;
        height: 105px;
    }
    
    .percentage-number[b-tocszzbd6e] {
        font-size: 1.8rem;
    }
    
    .data-box[b-tocszzbd6e] {
        padding: 1rem;
    }
    
    .collapsible-header[b-tocszzbd6e] {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
    
    .collapsible-content[b-tocszzbd6e] {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .recomendaciones-content .intro-text[b-tocszzbd6e] {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .recommendation-card[b-tocszzbd6e] {
        padding: 1.2rem;
    }
    
    .card-icon[b-tocszzbd6e] {
        width: 55px;
        height: 55px;
    }
    
    .card-icon svg[b-tocszzbd6e] {
        width: 28px;
        height: 28px;
    }
    
    .card-title[b-tocszzbd6e] {
        font-size: 1.2rem;
    }
    
    .card-description[b-tocszzbd6e] {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .info-button[b-tocszzbd6e] {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Devolución extra small mobile responsive */
    .devolucion-content .intro-text[b-tocszzbd6e] {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .progress-overview h3[b-tocszzbd6e] {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .progress-bar-container[b-tocszzbd6e] {
        height: 40px;
        margin-bottom: 1.2rem;
    }
    
    .progress-segment span[b-tocszzbd6e] {
        font-size: 0.75rem;
    }
    
    .proposal-cards[b-tocszzbd6e] {
        gap: 1.2rem;
    }
    
    .proposal-card[b-tocszzbd6e] {
        padding: 1.2rem;
    }
    
    .proposal-card .status-icon[b-tocszzbd6e] {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .proposal-card .percentage-badge[b-tocszzbd6e] {
        top: 0.6rem;
        right: 0.6rem;
        padding: 0.3rem 0.7rem;
        font-size: 1.1rem;
    }
    
    .proposal-card h3[b-tocszzbd6e] {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .proposal-card .description[b-tocszzbd6e] {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .proposal-card .stats[b-tocszzbd6e] {
        gap: 0.8rem;
    }
    
    .stats .stat-item strong[b-tocszzbd6e] {
        font-size: 1.4rem;
    }
    
    .stats .stat-item span[b-tocszzbd6e] {
        font-size: 0.75rem;
    }
    
    .proposal-card .more-info-btn[b-tocszzbd6e] {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Asambleas extra small mobile responsive */
    .asambleas-content[b-tocszzbd6e] {
        padding: 1rem;
    }
    
    .asambleas-content .intro-text[b-tocszzbd6e] {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .filter-section[b-tocszzbd6e] {
        padding: 1rem;
    }
    
    .filter-label[b-tocszzbd6e] {
        font-size: 0.9rem;
    }
    
    .select-trigger[b-tocszzbd6e] {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }
    
    .select-option[b-tocszzbd6e] {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }
    
    .results-count[b-tocszzbd6e] {
        font-size: 0.8rem;
    }
    
    .asambleistas-grid[b-tocszzbd6e] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .asambleista-card[b-tocszzbd6e] {
        padding: 1rem;
    }
    
    .avatar-container[b-tocszzbd6e] {
        width: 90px;
        height: 90px;
    }
    
    .asambleista-name[b-tocszzbd6e] {
        font-size: 0.95rem;
    }
    
    .asambleista-localidad[b-tocszzbd6e] {
        font-size: 0.8rem;
    }
    
    .no-results svg[b-tocszzbd6e] {
        width: 60px;
        height: 60px;
    }
    
    .no-results p[b-tocszzbd6e] {
        font-size: 0.95rem;
    }
}
/* Responsive Styles */
@media (max-width: 768px) {
    .ciclo-page[b-tocszzbd6e] {
        padding-top: 120px;
    }

    .stats-grid[b-tocszzbd6e] {
        grid-template-columns: 1fr;
    }

    .stat-card[b-tocszzbd6e] {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .secondary-content[b-tocszzbd6e] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .chart-container[b-tocszzbd6e] {
        order: -1;
        margin-bottom: 1rem;
    }

    .recommendation-detail-view[b-tocszzbd6e] {
        flex-direction: column;
    }

    .detail-card-summary[b-tocszzbd6e] {
        flex: 0 0 auto;
        width: 100%;
    }

    .proposal-detail-view[b-tocszzbd6e] {
        flex-direction: column;
    }

    .detail-proposal-summary[b-tocszzbd6e] {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ciclo-page[b-tocszzbd6e] {
        padding-top: 100px;
    }

    .ciclo-title[b-tocszzbd6e] {
        font-size: 2rem;
    }

    .section-header[b-tocszzbd6e] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-header h2[b-tocszzbd6e] {
        font-size: 1.5rem;
    }

    .percentage-circle-small[b-tocszzbd6e] {
        width: 80px;
        height: 80px;
    }

    .percentage-circle-small[b-tocszzbd6e]::before {
        width: 60px;
        height: 60px;
    }

    .percentage-number-small[b-tocszzbd6e] {
        font-size: 1.2rem;
    }

    .options-grid[b-tocszzbd6e] {
        grid-template-columns: 1fr;
    }
    
    .recommendation-card[b-tocszzbd6e] {
        padding: 1.5rem;
    }
    
    .card-title[b-tocszzbd6e] {
        font-size: 1.5rem;
    }
}
/* /Pages/DocumentosMetodologicos.razor.rz.scp.css */
/* Documentos Metodológicos Page Styles */

.documentos-page[b-ag2h5t6say] {
    min-height: 100vh;
    background: #f5f8fa;
    padding: 2rem 0;
    font-family: 'Poppins', sans-serif;
}

.container[b-ag2h5t6say] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Section */
.documentos-header[b-ag2h5t6say] {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.page-title[b-ag2h5t6say] {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-subtitle[b-ag2h5t6say] {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Documents Grid */
.documents-grid[b-ag2h5t6say] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.document-card[b-ag2h5t6say] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.document-card[b-ag2h5t6say]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.document-card:hover[b-ag2h5t6say]::before {
    left: 100%;
}

.document-card:hover[b-ag2h5t6say] {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.document-icon[b-ag2h5t6say] {
    width: 60px;
    height: 60px;
    background: #fab62d;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(250, 182, 45, 0.3);
}

.document-icon svg[b-ag2h5t6say] {
    width: 28px;
    height: 28px;
    color: white;
}

.document-content[b-ag2h5t6say] {
    margin-bottom: 2rem;
}

.document-title[b-ag2h5t6say] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fab62d;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.document-description[b-ag2h5t6say] {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.document-actions[b-ag2h5t6say] {
    margin-top: 1rem;
}

.download-btn[b-ag2h5t6say] {
    background: #fab62d;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(250, 182, 45, 0.3);
    text-decoration: none;
}

.download-btn:hover[b-ag2h5t6say] {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(250, 182, 45, 0.5);
    background: #f9a825;
}

.download-btn:active[b-ag2h5t6say] {
    transform: translateY(0);
}

.download-btn svg[b-ag2h5t6say] {
    width: 18px;
    height: 18px;
}

/* Info Section */
.info-section[b-ag2h5t6say] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.info-card[b-ag2h5t6say] {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.info-icon[b-ag2h5t6say] {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.info-icon svg[b-ag2h5t6say] {
    width: 24px;
    height: 24px;
    color: white;
}

.info-content h3[b-ag2h5t6say] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.info-content p[b-ag2h5t6say] {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.support-section[b-ag2h5t6say] {
    padding-top: 2rem;
    border-top: 1px solid rgba(160, 174, 192, 0.2);
}

.support-section h4[b-ag2h5t6say] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.support-section p[b-ag2h5t6say] {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-actions[b-ag2h5t6say] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.support-btn[b-ag2h5t6say] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.support-btn:not(.secondary)[b-ag2h5t6say] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.support-btn:not(.secondary):hover[b-ag2h5t6say] {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.support-btn.secondary[b-ag2h5t6say] {
    background: transparent;
    color: #667eea;
    border-color: #667eea;
}

.support-btn.secondary:hover[b-ag2h5t6say] {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.support-btn svg[b-ag2h5t6say] {
    width: 16px;
    height: 16px;
}

/* Animation Classes */
.animate-on-scroll[b-ag2h5t6say] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible[b-ag2h5t6say] {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1[b-ag2h5t6say] {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-2[b-ag2h5t6say] {
    transition-delay: 0.4s;
}

.animate-on-scroll.delay-3[b-ag2h5t6say] {
    transition-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .documentos-page[b-ag2h5t6say] {
        padding: 1rem 0;
    }

    .page-title[b-ag2h5t6say] {
        font-size: 2.5rem;
    }

    .page-subtitle[b-ag2h5t6say] {
        font-size: 1.1rem;
    }

    .documents-grid[b-ag2h5t6say] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .document-card[b-ag2h5t6say] {
        padding: 1.5rem;
    }

    .info-section[b-ag2h5t6say] {
        padding: 2rem;
    }

    .info-card[b-ag2h5t6say] {
        flex-direction: column;
        gap: 1rem;
    }

    .support-actions[b-ag2h5t6say] {
        flex-direction: column;
    }

    .support-btn[b-ag2h5t6say] {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container[b-ag2h5t6say] {
        padding: 0 0.75rem;
    }

    .page-title[b-ag2h5t6say] {
        font-size: 2rem;
    }

    .document-card[b-ag2h5t6say] {
        padding: 1.25rem;
    }

    .info-section[b-ag2h5t6say] {
        padding: 1.5rem;
    }

    .document-meta[b-ag2h5t6say] {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* Global Styles */
*[b-woqcb8km5y] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-woqcb8km5y], html[b-woqcb8km5y] {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Ensure Poppins is applied to all elements on this page */
.hero-section[b-woqcb8km5y], .hero-section *[b-woqcb8km5y],
.info-section[b-woqcb8km5y], .info-section *[b-woqcb8km5y],
.carousel-section[b-woqcb8km5y], .carousel-section *[b-woqcb8km5y],
.datos-section[b-woqcb8km5y], .datos-section *[b-woqcb8km5y],
.aliados-section[b-woqcb8km5y], .aliados-section *[b-woqcb8km5y] {
    font-family: 'Poppins', sans-serif;
}

.container[b-woqcb8km5y] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title[b-woqcb8km5y] {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #e3172e;
    position: relative;
}

.section-title[b-woqcb8km5y]::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e3172e;
    border-radius: 2px;
}

/* Hero Section */
.hero-section[b-woqcb8km5y] {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed navbar */
}

.hero-background[b-woqcb8km5y] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-banner-image[b-woqcb8km5y] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image-placeholder[b-woqcb8km5y] {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 50%, rgba(240, 147, 251, 0.7) 100%), 
                url('/images/Banner.jpg') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.hero-image-placeholder[b-woqcb8km5y]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    z-index: 2;
}

.image-overlay[b-woqcb8km5y] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 3;
}

.hero-content[b-woqcb8km5y] {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 2rem;
    padding-top: 0.2rem;
}

.hero-title[b-woqcb8km5y] {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description[b-woqcb8km5y] {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta[b-woqcb8km5y] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button[b-woqcb8km5y] {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-button.primary[b-woqcb8km5y] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.cta-button.primary:hover[b-woqcb8km5y] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary[b-woqcb8km5y] {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover[b-woqcb8km5y] {
    background: white;
    color: #fab62d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.scroll-indicator[b-woqcb8km5y] {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow[b-woqcb8km5y] {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce-b-woqcb8km5y 2s infinite;
}

@keyframes bounce-b-woqcb8km5y {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Info Section - Carousel */
.info-section[b-woqcb8km5y] {
    padding: 6rem 0;
    background: #f8fafc;
}

.info-carousel-container[b-woqcb8km5y] {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.info-carousel-wrapper[b-woqcb8km5y] {
    position: relative;
    overflow: hidden;
}

.info-carousel-track[b-woqcb8km5y] {
    display: flex;
    transition: transform 0.5s ease;
}

.info-carousel-slide[b-woqcb8km5y] {
    min-width: 100%;
    padding: 0 1rem;
}

.info-grid[b-woqcb8km5y] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-image .image-placeholder[b-woqcb8km5y] {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #1976d2;
    font-size: 1.2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 300px;
    overflow: hidden;
}

.info-card-image[b-woqcb8km5y] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
}

.info-carousel-btn[b-woqcb8km5y] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-carousel-btn:hover[b-woqcb8km5y] {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.info-carousel-btn:disabled[b-woqcb8km5y] {
    opacity: 0.5;
    cursor: not-allowed;
}

.info-carousel-btn.prev[b-woqcb8km5y] {
    left: 1rem;
}

.info-carousel-btn.next[b-woqcb8km5y] {
    right: 1rem;
}

.info-carousel-btn svg[b-woqcb8km5y] {
    width: 24px;
    height: 24px;
    color: #fab62d;
}

.info-carousel-dots[b-woqcb8km5y] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.info-carousel-dot[b-woqcb8km5y] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-carousel-dot.active[b-woqcb8km5y],
.info-carousel-dot:hover[b-woqcb8km5y] {
    background: #fab62d;
    transform: scale(1.2);
}

.placeholder-content[b-woqcb8km5y] {
    text-align: left;
    padding: 2rem;
}

.info-content h2[b-woqcb8km5y] {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.info-content p[b-woqcb8km5y] {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.learn-more-btn[b-woqcb8km5y] {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, #fab62d, #f59e0b);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(250, 182, 45, 0.3);
}

.learn-more-btn:hover[b-woqcb8km5y] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 182, 45, 0.4);
}

/* Carousel Section */
.carousel-section[b-woqcb8km5y] {
    padding: 6rem 0;
    background: white;
}

.carousel-container[b-woqcb8km5y] {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel-wrapper[b-woqcb8km5y] {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-track[b-woqcb8km5y] {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide[b-woqcb8km5y] {
    min-width: 33.333%;
    padding: 0 0.5rem;
}

.carousel-slide .image-placeholder[b-woqcb8km5y] {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #d84315;
    font-size: 1.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 200px;
    overflow: hidden;
}

.carousel-image[b-woqcb8km5y] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.video-placeholder[b-woqcb8km5y] {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.carousel-video[b-woqcb8km5y] {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 13px;
}

.carousel-slide .image-placeholder:hover[b-woqcb8km5y] {
    transform: translateY(-5px);
}

.carousel-btn[b-woqcb8km5y] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover[b-woqcb8km5y] {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled[b-woqcb8km5y] {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-btn.prev[b-woqcb8km5y] {
    left: 1rem;
}

.carousel-btn.next[b-woqcb8km5y] {
    right: 1rem;
}

.carousel-btn svg[b-woqcb8km5y] {
    width: 24px;
    height: 24px;
    color: #fab62d;
}

.carousel-dots[b-woqcb8km5y] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot[b-woqcb8km5y] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active[b-woqcb8km5y],
.carousel-dot:hover[b-woqcb8km5y] {
    background: #fab62d;
    transform: scale(1.2);
}

/* Video Container Single */
.video-container-single[b-woqcb8km5y] {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-container-single .video-placeholder[b-woqcb8km5y] {
    aspect-ratio: 16/9;
    background: #000;
}

.info-static-section[b-woqcb8km5y] {
    padding: 6rem 0;
}

/* Data Statistics Section */
.datos-section[b-woqcb8km5y] {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.datos-grid[b-woqcb8km5y] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.datos-item[b-woqcb8km5y] {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.datos-item:hover[b-woqcb8km5y] {
    transform: translateY(-10px);
}

.stat-container[b-woqcb8km5y] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-number[b-woqcb8km5y] {
    font-size: 4rem;
    font-weight: 800;
    color: #e3172e;
    min-width: 120px;
}

.stat-icon[b-woqcb8km5y] {
    width: 80px;
    height: 80px;
    background: #fab62d;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.stat-icon svg[b-woqcb8km5y] {
    width: 40px;
    height: 40px;
    color: white;
}

.stat-description h3[b-woqcb8km5y] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fab62d;
    margin-bottom: 1rem;
}

.stat-description p[b-woqcb8km5y] {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
}

/* Testimonios Section */
.testimonios-section[b-woqcb8km5y] {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonios-layout[b-woqcb8km5y] {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.testimonio-video-column[b-woqcb8km5y] {
    position: sticky;
    top: 100px;
}

.video-placeholder.vertical-format[b-woqcb8km5y] {
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-height: 750px;
    margin: 0 auto;
}

.testimonio-video-player[b-woqcb8km5y] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonios-list-column[b-woqcb8km5y] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonio-item[b-woqcb8km5y] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 220px;
}

.testimonio-item:hover[b-woqcb8km5y] {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonio-image[b-woqcb8km5y] {
    width: 35%;
    min-width: 200px;
    overflow: hidden;
    position: relative;
}

.testimonio-photo[b-woqcb8km5y] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonio-item:hover .testimonio-photo[b-woqcb8km5y] {
    transform: scale(1.05);
}

.testimonio-content[b-woqcb8km5y] {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 65%;
    justify-content: center;
}

.testimonio-quote[b-woqcb8km5y] {
    width: 40px;
    height: 40px;
    background: #e3172e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.testimonio-quote svg[b-woqcb8km5y] {
    width: 20px;
    height: 20px;
    color: white;
}

.testimonio-text[b-woqcb8km5y] {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    font-style: italic;
}

.testimonio-author[b-woqcb8km5y] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f1f5f9;
    margin-top: auto;
}

.author-info h4[b-woqcb8km5y] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fab62d;
    margin: 0;
}

.author-info p[b-woqcb8km5y] {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0.25rem 0 0 0;
}

/* Aliados Section */
.aliados-section[b-woqcb8km5y] {
    padding: 6rem 0;
    background: white;
}

.aliados-grid[b-woqcb8km5y] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.aliado-item[b-woqcb8km5y] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.aliado-logo[b-woqcb8km5y] {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(20%);
}

.aliado-logo:hover[b-woqcb8km5y] {
    transform: translateY(-5px) scale(1.05);
    filter: grayscale(0%);
}

.aliado-placeholder[b-woqcb8km5y] {
    width: 160px;
    height: 100px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #64748b;
    border: 2px dashed #64748b;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
}

.aliado-placeholder:hover[b-woqcb8km5y] {
    border-color: #fab62d;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
    transform: translateY(-5px);
}

/* Scroll Animations */
.animate-on-scroll[b-woqcb8km5y] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible[b-woqcb8km5y] {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1[b-woqcb8km5y] {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-2[b-woqcb8km5y] {
    transition-delay: 0.4s;
}

.animate-on-scroll.slide-left[b-woqcb8km5y] {
    transform: translateX(-50px);
}

.animate-on-scroll.slide-left.visible[b-woqcb8km5y] {
    transform: translateX(0);
}

.animate-on-scroll.slide-right[b-woqcb8km5y] {
    transform: translateX(50px);
}

.animate-on-scroll.slide-right.visible[b-woqcb8km5y] {
    transform: translateX(0);
}

/* Navbar scrolled state */
.navbar.scrolled[b-woqcb8km5y] {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

/* Mobile and Tablet Responsive Design */

/* Tablet Landscape and Large Mobile */
@media (max-width: 1024px) {
    .container[b-woqcb8km5y] {
        padding: 0 2rem;
    }
    
    .hero-section[b-woqcb8km5y] {
        padding: 3rem 0;
        height: auto;
        min-height: 70vh;
    }
    
    .hero-title[b-woqcb8km5y] {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-subtitle[b-woqcb8km5y] {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .info-grid[b-woqcb8km5y] {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .carousel-slide[b-woqcb8km5y] {
        min-width: 33.33%; /* 3 slides visible on tablet */
    }
    
    .datos-grid[b-woqcb8km5y] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .datos-item[b-woqcb8km5y] {
        padding: 1.5rem;
    }

    .testimonios-layout[b-woqcb8km5y] {
        grid-template-columns: 1fr;
    }
    
    .testimonio-video-column[b-woqcb8km5y] {
        position: static;
        max-width: 600px;
        margin: 0 auto 3rem auto;
    }

    .testimonios-grid[b-woqcb8km5y] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .aliados-grid[b-woqcb8km5y] {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .container[b-woqcb8km5y] {
        padding: 0 1rem;
    }
    
    .hero-section[b-woqcb8km5y] {
        height: calc(100vh - 70px);
        min-height: 500px;
        margin-top: 70px; /* Adjust for smaller navbar on mobile */
        padding: 2rem 0;
        text-align: center;
    }
    
    .hero-content[b-woqcb8km5y] {
        padding: 1rem;
    }
    
    .info-grid[b-woqcb8km5y] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-carousel-btn[b-woqcb8km5y] {
        width: 40px;
        height: 40px;
    }
    
    .info-carousel-btn svg[b-woqcb8km5y] {
        width: 20px;
        height: 20px;
    }
    
    .hero-title[b-woqcb8km5y] {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle[b-woqcb8km5y] {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 2rem;
        line-height: 1.4;
    }
    
    .hero-cta[b-woqcb8km5y] {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button[b-woqcb8km5y] {
        width: 100%;
        max-width: 250px;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .info-section[b-woqcb8km5y] {
        padding: 3rem 0;
    }
    
    .info-grid[b-woqcb8km5y] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-card[b-woqcb8km5y] {
        padding: 2rem;
        text-align: center;
    }
    
    .info-card h3[b-woqcb8km5y] {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .info-card p[b-woqcb8km5y] {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .carousel-section[b-woqcb8km5y] {
        padding: 3rem 0;
    }
    
    .section-title[b-woqcb8km5y] {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 2rem;
    }
    
    .carousel-slide[b-woqcb8km5y] {
        min-width: 50%;
    }
    
    .carousel-card[b-woqcb8km5y] {
        padding: 1.5rem;
    }
    
    .carousel-card h3[b-woqcb8km5y] {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .carousel-card p[b-woqcb8km5y] {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .carousel-controls[b-woqcb8km5y] {
        margin-top: 1.5rem;
    }
    
    .carousel-btn[b-woqcb8km5y] {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-dots[b-woqcb8km5y] {
        gap: 0.5rem;
    }
    
    .carousel-dot[b-woqcb8km5y] {
        width: 8px;
        height: 8px;
    }
    
    .datos-section[b-woqcb8km5y] {
        padding: 3rem 0;
    }
    
    .datos-grid[b-woqcb8km5y] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .datos-item[b-woqcb8km5y] {
        padding: 1.5rem;
    }
    
    .stat-container[b-woqcb8km5y] {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-number[b-woqcb8km5y] {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 0.5rem;
    }
    
    .stat-text[b-woqcb8km5y] {
        font-size: 1rem;
        line-height: 1.4;
    }

    .testimonios-section[b-woqcb8km5y] {
        padding: 3rem 0;
    }

    .testimonio-item[b-woqcb8km5y] {
        flex-direction: column;
    }
    
    .testimonio-image[b-woqcb8km5y] {
        width: 100%;
        height: 250px;
        min-width: 0;
    }
    
    .testimonio-photo[b-woqcb8km5y] {
        position: relative;
    }
    
    .testimonio-content[b-woqcb8km5y] {
        width: 100%;
        padding: 1.5rem;
    }

    .testimonios-grid[b-woqcb8km5y] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container[b-woqcb8km5y] {
        padding: 0 0.75rem;
    }
    
    .hero-section[b-woqcb8km5y] {
        padding: 1.5rem 0;
        min-height: 450px;
    }
    
    .hero-content[b-woqcb8km5y] {
        padding: 0.5rem;
    }
    
    .hero-title[b-woqcb8km5y] {
        font-size: 1.25rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .hero-description[b-woqcb8km5y] {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .cta-button[b-woqcb8km5y] {
        width: 100%;
        max-width: none;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .info-section[b-woqcb8km5y],
    .carousel-section[b-woqcb8km5y],
    .datos-section[b-woqcb8km5y],
    .aliados-section[b-woqcb8km5y] {
        padding: 2rem 0;
    }
    
    .section-title[b-woqcb8km5y] {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-bottom: 1.5rem;
    }
    
    .info-card[b-woqcb8km5y] {
        padding: 1.5rem;
    }
    
    .info-card h3[b-woqcb8km5y] {
        font-size: 1.2rem;
    }
    
    .info-card p[b-woqcb8km5y] {
        font-size: 0.9rem;
    }
    
    .carousel-slide[b-woqcb8km5y] {
        min-width: 100%;
    }
    
    .carousel-card[b-woqcb8km5y] {
        padding: 1.2rem;
    }
    
    .carousel-card h3[b-woqcb8km5y] {
        font-size: 1rem;
    }
    
    .carousel-card p[b-woqcb8km5y] {
        font-size: 0.85rem;
    }
    
    .carousel-btn[b-woqcb8km5y] {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg[b-woqcb8km5y] {
        width: 20px;
        height: 20px;
    }
    
    .stat-container[b-woqcb8km5y] {
        padding: 1.5rem;
    }
    
    .stat-number[b-woqcb8km5y] {
        font-size: 3rem;
    }
    
    .stat-text[b-woqcb8km5y] {
        font-size: 0.9rem;
    }
    
    .datos-item[b-woqcb8km5y] {
        padding: 2rem;
    }
    
    .aliados-grid[b-woqcb8km5y] {
        grid-template-columns: 1fr;
    }

    /* Testimonios Section adjustments for mobile */
    .testimonios-section[b-woqcb8km5y] {
        padding: 2rem 0;
    }

    .testimonio-video-column[b-woqcb8km5y] {
        margin-bottom: 2rem;
    }

    .testimonio-item[b-woqcb8km5y] {
        border-radius: 15px;
    }

    .testimonio-image[b-woqcb8km5y] {
        height: 200px;
    }

    .testimonio-content[b-woqcb8km5y] {
        padding: 1.2rem;
    }

    .testimonio-text[b-woqcb8km5y] {
        font-size: 0.95rem;
    }
    
    .testimonio-quote[b-woqcb8km5y] {
        width: 32px;
        height: 32px;
    }
    
    .testimonio-quote svg[b-woqcb8km5y] {
        width: 16px;
        height: 16px;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .container[b-woqcb8km5y] {
        padding: 0 0.5rem;
    }
    
    .hero-title[b-woqcb8km5y] {
        font-size: 1.1rem;
    }
    
    .hero-subtitle[b-woqcb8km5y] {
        font-size: 0.8rem;
    }
    
    .section-title[b-woqcb8km5y] {
        font-size: 1.2rem;
    }
    
    .info-card[b-woqcb8km5y],
    .carousel-card[b-woqcb8km5y],
    .stat-container[b-woqcb8km5y] {
        padding: 1rem;
    }
    
    .carousel-btn[b-woqcb8km5y] {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg[b-woqcb8km5y] {
        width: 18px;
        height: 18px;
    }

    .testimonio-image[b-woqcb8km5y] {
        height: 180px;
    }
    
    .testimonio-content[b-woqcb8km5y] {
        padding: 1rem;
    }
}

/* High contrast and accessibility */
@media (prefers-contrast: high) {
    .hero-image-placeholder[b-woqcb8km5y] {
        background: #000;
    }
    
    .section-title[b-woqcb8km5y],
    .hero-title[b-woqcb8km5y] {
        background: none;
        -webkit-text-fill-color: initial;
        color: #000;
    }
    
    .cta-button.primary[b-woqcb8km5y] {
        background: #000;
        border-color: #000;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll[b-woqcb8km5y],
    .carousel-track[b-woqcb8km5y],
    .cta-button[b-woqcb8km5y],
    .learn-more-btn[b-woqcb8km5y] {
        transition: none;
    }
    
    .scroll-arrow[b-woqcb8km5y] {
        animation: none;
    }
}

/* Focus states for keyboard navigation */
.cta-button:focus[b-woqcb8km5y],
.learn-more-btn:focus[b-woqcb8km5y],
.carousel-btn:focus[b-woqcb8km5y],
.carousel-dot:focus[b-woqcb8km5y] {
    outline: 2px solid #fab62d;
    outline-offset: 2px;
}

.section-title[b-woqcb8km5y] {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #e3172e;
    position: relative;
}

.section-title[b-woqcb8km5y]::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e3172e;
    border-radius: 2px;
}

/* Hero Section */
.hero-section[b-woqcb8km5y] {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background[b-woqcb8km5y] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image-placeholder[b-woqcb8km5y] {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fab62d 0%, #f59e0b 50%, #e3172e 100%);
    position: relative;
}

.image-overlay[b-woqcb8km5y] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}

.hero-content[b-woqcb8km5y] {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 2rem;
    padding-top: 0.2rem;
}

.hero-title[b-woqcb8km5y] {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description[b-woqcb8km5y] {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta[b-woqcb8km5y] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button[b-woqcb8km5y] {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-button.primary[b-woqcb8km5y] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.cta-button.primary:hover[b-woqcb8km5y] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary[b-woqcb8km5y] {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover[b-woqcb8km5y] {
    background: white;
    color: #fab62d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.scroll-indicator[b-woqcb8km5y] {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow[b-woqcb8km5y] {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce-b-woqcb8km5y 2s infinite;
}

@keyframes bounce-b-woqcb8km5y {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Info Section */
.info-section[b-woqcb8km5y] {
    padding: 6rem 0;
    background: #f8fafc;
}

.info-grid[b-woqcb8km5y] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-image .image-placeholder[b-woqcb8km5y] {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #1976d2;
    font-size: 1.2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.info-card-image[b-woqcb8km5y] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
}

/* Video Section Styles - TikTok Format */
.info-video .video-placeholder[b-woqcb8km5y] {
    background: #000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.info-video .video-placeholder.tiktok-format[b-woqcb8km5y] {
    aspect-ratio: 9/16; /* TikTok vertical format ratio */
    max-height: 600px;
}

.info-video-player[b-woqcb8km5y] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
}

.info-content h2[b-woqcb8km5y] {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.info-content p[b-woqcb8km5y] {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.learn-more-btn[b-woqcb8km5y] {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, #fab62d, #f59e0b);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(250, 182, 45, 0.3);
}

.learn-more-btn:hover[b-woqcb8km5y] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 182, 45, 0.4);
}

/* Carousel Section */
.carousel-section[b-woqcb8km5y] {
    padding: 6rem 0;
    background: white;
}

.carousel-container[b-woqcb8km5y] {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel-wrapper[b-woqcb8km5y] {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-track[b-woqcb8km5y] {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide[b-woqcb8km5y] {
    min-width: 33.333%;
    padding: 0 0.5rem;
}

.carousel-slide .image-placeholder[b-woqcb8km5y] {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #d84315;
    font-size: 1.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.carousel-image[b-woqcb8km5y] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.carousel-slide .image-placeholder:hover[b-woqcb8km5y] {
    transform: translateY(-5px);
}

.carousel-btn[b-woqcb8km5y] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover[b-woqcb8km5y] {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled[b-woqcb8km5y] {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-btn.prev[b-woqcb8km5y] {
    left: 1rem;
}

.carousel-btn.next[b-woqcb8km5y] {
    right: 1rem;
}

.carousel-btn svg[b-woqcb8km5y] {
    width: 24px;
    height: 24px;
    color: #fab62d;
}

.carousel-dots[b-woqcb8km5y] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot[b-woqcb8km5y] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active[b-woqcb8km5y],
.carousel-dot:hover[b-woqcb8km5y] {
    background: #fab62d;
    transform: scale(1.2);
}

/* Data Statistics Section */
.datos-section[b-woqcb8km5y] {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.datos-grid[b-woqcb8km5y] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.datos-item[b-woqcb8km5y] {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.datos-item:hover[b-woqcb8km5y] {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-container[b-woqcb8km5y] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.stat-number[b-woqcb8km5y] {
    font-size: 3rem;
    font-weight: 800;
    color: #e3172e;
}

.stat-icon[b-woqcb8km5y] {
    width: 80px;
    height: 80px;
    background: #fab62d;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.stat-icon svg[b-woqcb8km5y] {
    width: 40px;
    height: 40px;
    color: white;
}

.stat-description h3[b-woqcb8km5y] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fab62d;
    margin-bottom: 1rem;
}

.stat-description p[b-woqcb8km5y] {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
}

/* Testimonios Section */
.testimonios-section[b-woqcb8km5y] {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonios-layout[b-woqcb8km5y] {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.testimonio-video-column[b-woqcb8km5y] {
    position: sticky;
    top: 100px;
}

.video-placeholder.vertical-format[b-woqcb8km5y] {
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-height: 750px;
    margin: 0 auto;
}

.testimonio-video-player[b-woqcb8km5y] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonios-list-column[b-woqcb8km5y] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonio-item[b-woqcb8km5y] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 220px;
}

.testimonio-item:hover[b-woqcb8km5y] {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonio-image[b-woqcb8km5y] {
    width: 35%;
    min-width: 200px;
    overflow: hidden;
    position: relative;
}

.testimonio-photo[b-woqcb8km5y] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonio-item:hover .testimonio-photo[b-woqcb8km5y] {
    transform: scale(1.05);
}

.testimonio-content[b-woqcb8km5y] {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 65%;
    justify-content: center;
}

.testimonio-quote[b-woqcb8km5y] {
    width: 40px;
    height: 40px;
    background: #e3172e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.testimonio-quote svg[b-woqcb8km5y] {
    width: 20px;
    height: 20px;
    color: white;
}

.testimonio-text[b-woqcb8km5y] {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    font-style: italic;
}

.testimonio-author[b-woqcb8km5y] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f1f5f9;
    margin-top: auto;
}

.author-info h4[b-woqcb8km5y] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fab62d;
    margin: 0;
}

.author-info p[b-woqcb8km5y] {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0.25rem 0 0 0;
}

/* Aliados Section */
.aliados-section[b-woqcb8km5y] {
    padding: 6rem 0;
    background: white;
}

.aliados-grid[b-woqcb8km5y] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.aliado-item[b-woqcb8km5y] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.aliado-logo[b-woqcb8km5y] {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(20%);
}

.aliado-logo:hover[b-woqcb8km5y] {
    transform: translateY(-5px) scale(1.05);
    filter: grayscale(0%);
}

.aliado-placeholder[b-woqcb8km5y] {
    width: 160px;
    height: 100px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #64748b;
    border: 2px dashed #64748b;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
}

.aliado-placeholder:hover[b-woqcb8km5y] {
    border-color: #fab62d;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
    transform: translateY(-5px);
}

/* Scroll Animations */
.animate-on-scroll[b-woqcb8km5y] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible[b-woqcb8km5y] {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1[b-woqcb8km5y] {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-2[b-woqcb8km5y] {
    transition-delay: 0.4s;
}

.animate-on-scroll.slide-left[b-woqcb8km5y] {
    transform: translateX(-50px);
}

.animate-on-scroll.slide-left.visible[b-woqcb8km5y] {
    transform: translateX(0);
}

.animate-on-scroll.slide-right[b-woqcb8km5y] {
    transform: translateX(50px);
}

.animate-on-scroll.slide-right.visible[b-woqcb8km5y] {
    transform: translateX(0);
}

/* Navbar scrolled state */
.navbar.scrolled[b-woqcb8km5y] {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .datos-grid[b-woqcb8km5y] {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .carousel-slide[b-woqcb8km5y] {
        min-width: 33.333%;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container[b-woqcb8km5y] {
        padding: 0 1rem;
    }
    
    .hero-content[b-woqcb8km5y] {
        padding: 1rem;
    }
    
    .hero-cta[b-woqcb8km5y] {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button[b-woqcb8km5y] {
        width: 200px;
        text-align: center;
    }
    
    .info-grid[b-woqcb8km5y] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-video .video-placeholder.tiktok-format[b-woqcb8km5y] {
        max-height: 500px;
        margin: 0 auto;
    }
    
    .carousel-slide[b-woqcb8km5y] {
        min-width: 50%;
    }
    
    .datos-grid[b-woqcb8km5y] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .datos-item[b-woqcb8km5y] {
        padding: 2rem;
    }
    
    .stat-container[b-woqcb8km5y] {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-number[b-woqcb8km5y] {
        font-size: 2.5rem;
    }
    
    .stat-description h3[b-woqcb8km5y] {
        font-size: 1.3rem;
    }
    
    .stat-description p[b-woqcb8km5y] {
        font-size: 0.95rem;
    }
    
    .carousel-btn[b-woqcb8km5y] {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg[b-woqcb8km5y] {
        width: 20px;
        height: 20px;
    }
    
    .aliados-grid[b-woqcb8km5y] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .aliado-placeholder[b-woqcb8km5y] {
        width: 120px;
        height: 80px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .carousel-slide[b-woqcb8km5y] {
        min-width: 100%;
    }
    
    .info-video .video-placeholder.tiktok-format[b-woqcb8km5y] {
        max-height: 400px;
    }
    
    .carousel-btn[b-woqcb8km5y] {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn.prev[b-woqcb8km5y] {
        left: 0.5rem;
    }
    
    .carousel-btn.next[b-woqcb8km5y] {
        right: 0.5rem;
    }
    
    .carousel-btn svg[b-woqcb8km5y] {
        width: 18px;
        height: 18px;
    }
    
    .datos-section[b-woqcb8km5y] {
        padding: 4rem 0;
    }
    
    .datos-grid[b-woqcb8km5y] {
        gap: 1.5rem;
    }
    
    .datos-item[b-woqcb8km5y] {
        padding: 1.5rem;
    }
    
    .stat-number[b-woqcb8km5y] {
        font-size: 2rem;
    }
    
    .stat-icon[b-woqcb8km5y] {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon svg[b-woqcb8km5y] {
        width: 30px;
        height: 30px;
    }
    
    .stat-description h3[b-woqcb8km5y] {
        font-size: 1.2rem;
    }
    
    .stat-description p[b-woqcb8km5y] {
        font-size: 0.9rem;
    }
    
    .aliados-grid[b-woqcb8km5y] {
        grid-template-columns: 1fr;
    }
}

/* High contrast and accessibility */
@media (prefers-contrast: high) {
    .hero-image-placeholder[b-woqcb8km5y] {
        background: #000;
    }
    
    .section-title[b-woqcb8km5y],
    .hero-title[b-woqcb8km5y] {
        background: none;
        -webkit-text-fill-color: initial;
        color: #000;
    }
    
    .cta-button.primary[b-woqcb8km5y] {
        background: #000;
        border-color: #000;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll[b-woqcb8km5y],
    .carousel-track[b-woqcb8km5y],
    .cta-button[b-woqcb8km5y],
    .learn-more-btn[b-woqcb8km5y] {
        transition: none;
    }
    
    .scroll-arrow[b-woqcb8km5y] {
        animation: none;
    }
}

/* Focus states for keyboard navigation */
.cta-button:focus[b-woqcb8km5y],
.learn-more-btn:focus[b-woqcb8km5y],
.carousel-btn:focus[b-woqcb8km5y],
.carousel-dot:focus[b-woqcb8km5y] {
    outline: 2px solid #fab62d;
    outline-offset: 2px;
}

/* Adjusted Testimonios Layout */
.testimonios-layout[b-woqcb8km5y] {
    grid-template-columns: 1fr 2fr;
}

.video-placeholder.vertical-format[b-woqcb8km5y] {
    max-height: 600px;
}

@media (max-width: 768px) {
    .video-placeholder.vertical-format[b-woqcb8km5y] {
        max-height: 500px;
    }
    
    /* Fix Testimonios Layout for mobile - Stack vertically */
    .testimonios-layout[b-woqcb8km5y] {
        grid-template-columns: 1fr !important;
    }

    .testimonio-video-column[b-woqcb8km5y] {
        position: static !important;
        width: 100%;
        margin-bottom: 2rem;
    }
}

/* --- Fixes for Responsiveness (Added) --- */

/* 1. Fix "Que son" section grid layout */
.info-grid.info-grid-2-1[b-woqcb8km5y] {
    grid-template-columns: 1fr 2fr;
}

/* 2. Ensure responsiveness on smaller screens */
@media (max-width: 768px) {
    /* Collapse "Que son" grid to 1 column */
    .info-grid.info-grid-2-1[b-woqcb8km5y] {
        grid-template-columns: 1fr;
    }
    
    /* Ensure Testimonios stack (Image top, content bottom) */
    .testimonio-item[b-woqcb8km5y] {
        flex-direction: column !important;
    }
    
    .testimonio-image[b-woqcb8km5y] {
        width: 100%;
        height: 250px;
    }
    
    .testimonio-content[b-woqcb8km5y] {
        width: 100%;
    }
    
    /* Ensure Carousel stacks */
    .info-carousel-slide .info-grid[b-woqcb8km5y] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .info-content p[b-woqcb8km5y] {
        text-align: left; /* Fix justification issues on small screens */
    }

    /* Position carousel buttons over the image on small screens */
    .info-carousel-btn[b-woqcb8km5y] {
        top: 40vw;
    }
}

@media (max-width: 480px) {
    /* Adjust Testimonios image height for smaller screens */
    .testimonio-image[b-woqcb8km5y] {
        height: 200px;
    }
    
    /* Ensure Carousel stacks on very small screens too */
    .info-carousel-slide .info-grid[b-woqcb8km5y] {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .info-carousel-slide[b-woqcb8km5y] {
        padding: 0; /* Remove side padding to give more space */
    }
    
    .info-content[b-woqcb8km5y] {
        padding: 0 0.5rem;
    }

    /* Fix overflow caused by fixed min-height on images */
    .info-image .image-placeholder[b-woqcb8km5y] {
        min-height: auto;
        aspect-ratio: 16/9; /* Change to landscape for mobile to save vertical space */
    }
    
    .info-card-image[b-woqcb8km5y] {
        height: auto;
    }
}
/* /Pages/Noticias.razor.rz.scp.css */
/* Ensure Poppins is applied to all elements on this page */
*[b-356ngom6f9] {
    font-family: 'Poppins', sans-serif;
}

/* Noticias Page Styles */
.noticias-page[b-356ngom6f9] {
    padding-top: 160px;
    min-height: 100vh;
    background: linear-gradient(135deg, #fab62d 0%, #f59e0b 100%);
    padding-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.container[b-356ngom6f9] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Section */
.noticias-header[b-356ngom6f9] {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.page-title[b-356ngom6f9] {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle[b-356ngom6f9] {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
}

/* Featured News Section */
.featured-news[b-356ngom6f9] {
    margin-bottom: 4rem;
}

.featured-article[b-356ngom6f9] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-article:hover[b-356ngom6f9] {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.featured-image[b-356ngom6f9] {
    position: relative;
    overflow: hidden;
}

.featured-image img[b-356ngom6f9] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article:hover .featured-image img[b-356ngom6f9] {
    transform: scale(1.05);
}

.featured-overlay[b-356ngom6f9] {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.featured-category[b-356ngom6f9] {
    background: linear-gradient(135deg, #fab62d 0%, #f59e0b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-content[b-356ngom6f9] {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-title[b-356ngom6f9] {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-excerpt[b-356ngom6f9] {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 300;
}

.featured-meta[b-356ngom6f9] {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.meta-date[b-356ngom6f9], .meta-author[b-356ngom6f9] {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.read-more-btn[b-356ngom6f9] {
    background: linear-gradient(135deg, #fab62d 0%, #f59e0b 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(250, 182, 45, 0.3);
}

.read-more-btn:hover[b-356ngom6f9] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 182, 45, 0.4);
}

/* News Grid */
.news-grid[b-356ngom6f9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.news-card[b-356ngom6f9] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.news-card:hover[b-356ngom6f9] {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image[b-356ngom6f9] {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img[b-356ngom6f9] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img[b-356ngom6f9] {
    transform: scale(1.1);
}

.news-category[b-356ngom6f9] {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #fab62d;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content[b-356ngom6f9] {
    padding: 1.5rem;
}

.news-title[b-356ngom6f9] {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt[b-356ngom6f9] {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta[b-356ngom6f9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.meta-info[b-356ngom6f9] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.news-date[b-356ngom6f9], .news-author[b-356ngom6f9] {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

.news-link[b-356ngom6f9] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fab62d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.news-link:hover[b-356ngom6f9] {
    color: #f59e0b;
    transform: translateX(5px);
}

.news-link svg[b-356ngom6f9] {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.news-link:hover svg[b-356ngom6f9] {
    transform: translateX(3px);
}

/* Newsletter Section */
.newsletter-section[b-356ngom6f9] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-content h3[b-356ngom6f9] {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p[b-356ngom6f9] {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.newsletter-form[b-356ngom6f9] {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input[b-356ngom6f9] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input[b-356ngom6f9]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus[b-356ngom6f9] {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn[b-356ngom6f9] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.newsletter-btn:hover[b-356ngom6f9] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Animation Classes */
.animate-on-scroll[b-356ngom6f9] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible[b-356ngom6f9] {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1[b-356ngom6f9] {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-2[b-356ngom6f9] {
    transition-delay: 0.4s;
}

.animate-on-scroll.delay-3[b-356ngom6f9] {
    transition-delay: 0.6s;
}

.animate-on-scroll.delay-4[b-356ngom6f9] {
    transition-delay: 0.8s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container[b-356ngom6f9] {
        padding: 0 1rem;
    }
    
    .noticias-page[b-356ngom6f9] {
        padding-top: 120px;
    }
    
    .page-title[b-356ngom6f9] {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .page-subtitle[b-356ngom6f9] {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    
    .featured-article[b-356ngom6f9] {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .featured-content[b-356ngom6f9] {
        padding: 2rem;
    }
    
    .featured-title[b-356ngom6f9] {
        font-size: 1.5rem;
    }
    
    .featured-excerpt[b-356ngom6f9] {
        font-size: 1rem;
    }
    
    .news-grid[b-356ngom6f9] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form[b-356ngom6f9] {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-section[b-356ngom6f9] {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .featured-content[b-356ngom6f9] {
        padding: 1.5rem;
    }
    
    .featured-title[b-356ngom6f9] {
        font-size: 1.3rem;
    }
    
    .news-content[b-356ngom6f9] {
        padding: 1.2rem;
    }
    
    .newsletter-section[b-356ngom6f9] {
        padding: 1.5rem;
    }
}
