/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.page-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section {
    margin-bottom: 4rem;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: none;
}

.section-header {
    background: linear-gradient(135deg, #e7520f 0%, #ff8c42 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    font-size: 1.25rem;
    margin: -2rem -2rem 2rem -2rem;
}

.section-content {
    padding: 1rem 0;
}

/* Estilos base para estrellas */
.star-link {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 50%;
    outline: none;
}

.star-link:focus {
    outline: 3px solid #e7520f;
    outline-offset: 4px;
}

.star-link:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.star-link:active {
    transform: scale(1.05);
}

.star-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.star-logo.small {
    width: 60px;
    height: 60px;
}

.star-logo.large {
    width: 100px;
    height: 100px;
}

/* ============================================
   PROPUESTA 1: Grid con Descripción
   ============================================ */
.proposal-1 {
    text-align: center;
}

.proposal-1-intro {
    margin-bottom: 2rem;
}

.proposal-1-intro h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    color: #e7520f;
    margin-bottom: 0.5rem;
}

.proposal-1-intro p {
    color: #666;
    font-size: 1rem;
}

.stars-grid-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.star-item-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.star-label-1 {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.proposal-1-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e7520f 0%, #ff8c42 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 1rem;
}

/* ============================================
   PROPUESTA 2: Banner Destacado con Contador
   ============================================ */
.proposal-2 {
    background: linear-gradient(135deg, #e7520f 0%, #c4450c 100%);
    color: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.proposal-2-header {
    margin-bottom: 2rem;
}

.proposal-2-header h3 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.proposal-2-header p {
    font-size: 1.125rem;
    opacity: 0.95;
}

.stars-row-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.counter-2 {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Merriweather', serif;
    margin: 1rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.counter-label-2 {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* ============================================
   PROPUESTA 3: Tarjetas Informativas
   ============================================ */
.proposal-3-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.proposal-3-intro h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    color: #e7520f;
    margin-bottom: 0.5rem;
}

.stars-cards-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Rated Excellent escritorio: col 1 vacía, col 2-3 card (arriba Employability/Global Engagement), col 4 vacía */
#estrellas .stars-cards-3 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

#estrellas .stars-cards-3 .star-card-3 {
    grid-column: 2 / 4;
}

.star-card-3 {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.star-card-3:hover {
    border-color: #e7520f;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(231, 82, 15, 0.15);
}

.star-card-3 .star-logo {
    margin: 0 auto 1rem;
}

.star-card-3 h4 {
    font-size: 1rem;
    color: #343333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.star-card-3 p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

/* ============================================
   PROPUESTA 4: Timeline Visual
   ============================================ */
.proposal-4-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.proposal-4-intro h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    color: #e7520f;
    margin-bottom: 0.5rem;
}

.timeline-4 {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line-4 {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #e7520f, #ff8c42);
    transform: translateX(-50%);
}

.timeline-items-4 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item-4 {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.timeline-item-4:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-star-4 {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content-4 {
    flex: 1;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content-4 h4 {
    color: #e7520f;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content-4 p {
    color: #666;
    font-size: 0.9rem;
}

/* ============================================
   PROPUESTA 5: Slider Interactivo
   ============================================ */
.proposal-5-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.proposal-5-intro h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    color: #e7520f;
    margin-bottom: 0.5rem;
}

.slider-container-5 {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.slider-track-5 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-track-5::-webkit-scrollbar {
    display: none;
}

.slider-item-5 {
    flex: 0 0 200px;
    scroll-snap-align: center;
    text-align: center;
}

.slider-item-5 .star-logo {
    margin: 0 auto 1rem;
}

.slider-item-5 h4 {
    color: #343333;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.slider-item-5 p {
    color: #666;
    font-size: 0.875rem;
}

.slider-nav-5 {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dot-5 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c4c4c4;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot-5.active {
    background: #e7520f;
    transform: scale(1.2);
}

/* ============================================
   PROPUESTA 6: Tarjetas Informativas con Grid Especial
   ============================================ */
.proposal-6-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.proposal-6-intro h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    color: #e7520f;
    margin-bottom: 0.5rem;
}

.stars-cards-6 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
}

.star-card-6 {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.star-card-6:hover {
    border-color: #e7520f;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(231, 82, 15, 0.15);
}

.star-card-6 .star-link {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.star-card-6 .star-logo {
    margin: 0 auto 1.5rem;
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.star-card-6 h4 {
    font-size: 1.25rem;
    color: #343333;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.star-card-6 p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Estilos para enlaces de títulos de estrellas con jerarquía importante */
.star-card-6 h4 {
    margin-bottom: 0.75rem;
}

.star-title-link {
    color: #e7520f;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.star-title-link:hover {
    color: #c4450c;
    transform: translateY(-2px);
    outline: none;
}

.star-title-link:visited {
    color: #e7520f;
    outline: none;
}

.star-title-link:focus {
    outline: 2px solid #e7520f;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Ocultar enlaces "Conócelos" y "Conócelas" en la sección estrellas */
#estrellas .star-card-link {
    display: none;
}

/* Quitar borde/outline al hacer clic en los logos de QS Stars */
#estrellas .star-link:focus,
#estrellas .star-link:focus-visible {
    outline: none;
}

.star-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #e7520f;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.star-card-link:hover {
    color: #c4450c;
    transform: translateX(4px);
}

.star-card-link .arrow-icon {
    transition: transform 0.3s ease;
}

.star-card-link:hover .arrow-icon {
    transform: translateX(4px);
}

/* ============================================
   PROPUESTA 7: Tarjetas con Borde Superior Destacado
   ============================================ */
.proposal-7-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.proposal-7-intro h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    color: #e7520f;
    margin-bottom: 0.5rem;
}

.stars-cards-7 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
}

.star-card-7 {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-top: 4px solid #e7520f;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.star-card-7:hover {
    border-top-color: #c4450c;
    border-color: #e7520f;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(231, 82, 15, 0.15);
}

.star-card-7 .star-link {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.star-card-7 .star-logo {
    margin: 0 auto 1.5rem;
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.star-card-7 h4 {
    font-size: 1rem;
    color: #343333;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.star-card-7 p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* ============================================
   PROPUESTA 8: Tarjetas con Fondo Degradado
   ============================================ */
.proposal-8-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.proposal-8-intro h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    color: #e7520f;
    margin-bottom: 0.5rem;
}

.stars-cards-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
}

.star-card-8 {
    background: linear-gradient(135deg, #f8f9fa 0%, #f8f9fa 100%);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.star-card-8:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #f8f9fa 100%);
    border-color: #e7520f;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(231, 82, 15, 0.15);
}

.star-card-8 .star-link {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.star-card-8 .star-logo {
    margin: 0 auto 1.5rem;
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.star-card-8 h4 {
    font-size: 1rem;
    color: #343333;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.star-card-8 p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* ============================================
   PROPUESTA 9: Tarjetas Minimalistas con Líneas
   ============================================ */
.proposal-9-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.proposal-9-intro h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    color: #e7520f;
    margin-bottom: 0.5rem;
}

.stars-cards-9 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
}

.star-card-9 {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-top: 2px solid #e7520f;
    border-bottom: 1px solid #e5e7eb;
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    position: relative;
}

.star-card-9::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: #e7520f;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.star-card-9:hover {
    border-top-color: #c4450c;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(231, 82, 15, 0.1);
}

.star-card-9:hover::before {
    opacity: 1;
}

.star-card-9 .star-link {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.star-card-9 .star-logo {
    margin: 0 auto 1.5rem;
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.star-card-9 h4 {
    font-size: 1rem;
    color: #343333;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.star-card-9 p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Accesibilidad - Mejoras de contraste y navegación por teclado */
.star-link:focus-visible {
    outline: 3px solid #e7520f;
    outline-offset: 4px;
    border-radius: 50%;
}

.slider-dot-5:focus {
    outline: 2px solid #e7520f;
    outline-offset: 2px;
}

.slider-dot-5:focus-visible {
    outline: 2px solid #e7520f;
    outline-offset: 2px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section {
        padding: 1.5rem;
    }

    .stars-grid-1 {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 1.5rem;
    }

    .stars-cards-3 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .stars-cards-6,
    .stars-cards-7,
    .stars-cards-8,
    .stars-cards-9 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    /* Tablet: Rated Excellent 2 columnas centradas */
    #estrellas .stars-cards-3 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    #estrellas .stars-cards-3 .star-card-3 {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .star-card-6,
    .star-card-7,
    .star-card-8,
    .star-card-9 {
        min-height: 300px;
    }

    .star-card-6 .star-logo,
    .star-card-7 .star-logo,
    .star-card-8 .star-logo,
    .star-card-9 .star-logo {
        width: 100px;
        height: 100px;
    }

    .timeline-content-4 {
        padding: 1.25rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .container {
        padding: 1rem 0.75rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .section {
        padding: 1rem;
        margin-bottom: 2.5rem;
    }

    .section-header {
        padding: 0.875rem 1.25rem;
        font-size: 1.125rem;
        margin: -1rem -1rem 1.5rem -1rem;
    }

    .proposal-1-intro h3,
    .proposal-3-intro h3,
    .proposal-4-intro h3,
    .proposal-5-intro h3 {
        font-size: 1.5rem;
    }

    .proposal-2-header h3 {
        font-size: 1.75rem;
    }

    .stars-grid-1 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 100%;
    }

    .star-item-1 {
        gap: 0.5rem;
    }

    .star-label-1 {
        font-size: 0.75rem;
    }

    .stars-row-2 {
        gap: 0.75rem;
    }

    .star-logo {
        width: 60px;
        height: 60px;
    }

    .star-link:hover {
        transform: scale(1.05);
    }

    .counter-2 {
        font-size: 3rem;
    }

    .counter-label-2 {
        font-size: 1.125rem;
    }

    .proposal-2 {
        padding: 2rem 1.5rem;
    }

    .stars-cards-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Móvil: Rated Excellent 1 columna centrada, igual que resto de logos */
    #estrellas .stars-cards-3 {
        grid-template-columns: 1fr;
    }

    #estrellas .stars-cards-3 .star-card-3 {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .star-card-3 {
        padding: 1.25rem;
    }

    .stars-cards-6,
    .stars-cards-7,
    .stars-cards-8,
    .stars-cards-9 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .star-card-6,
    .star-card-7,
    .star-card-8,
    .star-card-9 {
        padding: 1.25rem;
        min-height: 280px;
    }

    .star-card-6 .star-logo,
    .star-card-7 .star-logo,
    .star-card-8 .star-logo,
    .star-card-9 .star-logo {
        width: 90px;
        height: 90px;
    }

    .star-card-3 h4 {
        font-size: 0.95rem;
    }

    .star-card-3 p {
        font-size: 0.8125rem;
    }

    .timeline-4 {
        max-width: 100%;
    }

    .timeline-line-4 {
        left: 30px;
        width: 3px;
    }

    .timeline-item-4 {
        flex-direction: row !important;
        padding-left: 4rem;
        gap: 1rem;
    }

    .timeline-star-4 {
        position: absolute;
        left: 0;
    }

    .timeline-content-4 {
        flex: 1;
        padding: 1rem;
    }

    .timeline-content-4 h4 {
        font-size: 1rem;
    }

    .timeline-content-4 p {
        font-size: 0.875rem;
    }

    .slider-container-5 {
        max-width: 100%;
    }

    .slider-item-5 {
        flex: 0 0 160px;
    }

    .slider-item-5 h4 {
        font-size: 0.95rem;
    }

    .slider-item-5 p {
        font-size: 0.8125rem;
    }

    .proposal-1-badge {
        padding: 0.625rem 1.5rem;
        font-size: 1rem;
    }
}

/* iPad: Rated Excellent 2 columnas centradas (mismo que tablet) */
@media (min-width: 768px) and (max-width: 1024px) {
    #estrellas .stars-cards-3 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    #estrellas .stars-cards-3 .star-card-3 {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

/* Responsive - Mobile Pequeño */
@media (max-width: 480px) {
    .container {
        padding: 0.75rem 0.5rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-intro {
        font-size: 0.9375rem;
    }

    .section {
        padding: 0.875rem;
        border-radius: 8px;
    }

    .section-header {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        margin: -0.875rem -0.875rem 1rem -0.875rem;
    }

    .proposal-1-intro h3,
    .proposal-3-intro h3,
    .proposal-4-intro h3,
    .proposal-5-intro h3 {
        font-size: 1.25rem;
    }

    .proposal-2-header h3 {
        font-size: 1.5rem;
    }

    .proposal-2-header p {
        font-size: 1rem;
    }

    .stars-grid-1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .star-logo {
        width: 50px;
        height: 50px;
    }

    .star-label-1 {
        font-size: 0.6875rem;
    }

    .stars-row-2 {
        gap: 0.5rem;
    }

    .counter-2 {
        font-size: 2.5rem;
    }

    .counter-label-2 {
        font-size: 1rem;
    }

    .proposal-2 {
        padding: 1.5rem 1rem;
    }

    .star-card-3 {
        padding: 1rem;
    }

    .star-card-6,
    .star-card-7,
    .star-card-8,
    .star-card-9 {
        padding: 1rem;
        min-height: 260px;
    }

    .star-card-6 .star-logo,
    .star-card-7 .star-logo,
    .star-card-8 .star-logo,
    .star-card-9 .star-logo {
        width: 80px;
        height: 80px;
    }

    .timeline-item-4 {
        padding-left: 3.5rem;
    }

    .timeline-line-4 {
        left: 25px;
    }

    .timeline-star-4 {
        left: -5px;
    }

    .slider-item-5 {
        flex: 0 0 140px;
    }

    .proposal-1-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.9375rem;
    }
}

/* Mejoras de accesibilidad - Reducir animaciones si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .star-link:hover {
        transform: none;
    }

    .star-card-3:hover {
        transform: none;
    }
}

