/* ===== ESTILOS ESPECÍFICOS PARA LA PÁGINA DE POSTULACIÓN ===== */

/* Cuerpo de la página */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #F9F7EE 0% 0% no-repeat padding-box;
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    position: relative;
}

.dropdown-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background-color: #E0F3AB;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    font: normal normal normal 14px/18px 'Lato-Local', Arial, sans-serif;
    transition: background-color 0.3s ease;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    text-align: left;
}

.dropdown-menu .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #026751;
    flex-shrink: 0;
    margin-left: auto;
}

.dropdown-menu a:hover .arrow {
    transform: translateX(5px);
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #026751;
}

/* ===== MOBILE DROPDOWN MENU ===== */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-menu {
    display: none;
    background: #f8f9fa;
    border-left: 3px solid #026751;
    margin-left: 1rem;
    padding: 0.5rem 0;
    list-style: none;
    margin-top: 0.5rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li {
    list-style: none;
    margin: 0;
    position: relative;
}

.mobile-dropdown-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background-color: #E0F3AB;
}

.mobile-dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    font: normal normal normal 14px/18px 'Lato-Local', Arial, sans-serif;
    transition: color 0.3s ease;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    text-align: left;
}

.mobile-dropdown-menu .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #026751;
    flex-shrink: 0;
    margin-left: auto;
}

.mobile-dropdown-menu a:hover {
    color: #026751;
}

/* ===== CONTENEDOR PRINCIPAL CON MAX-WIDTH 1280PX ===== */
.postulacion-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ===== HERO SECTION DE POSTULACIÓN ===== */
.postulacion-hero {
    background: #F9F7EE;
    padding: 4rem 0 6rem 0;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: visible;
}

/* Elemento decorativo izquierdo - Círculo amarillo */
.postulacion-decorative-left-circle {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 87px;
    height: 87px;
    background: #E7E033 0% 0% no-repeat padding-box;
    border-radius: 44px;
    opacity: 1;
    z-index: 5;
}

/* Elemento decorativo derecho - Flores */
.postulacion-decorative-right {
    position: absolute;
    top: -13px;
    right: -53px;
    width: 362px;
    height: 362px;
    background: transparent url('../../assets/images/Collage_versiones.png') 0% 0% no-repeat padding-box;
    background-size: contain;
    background-position: center;
    opacity: 1;
    z-index: 100;
}

/* Título principal */
.postulacion-title {
    width: 222px;
    height: 48px;
    color: #313131;
    text-align: center;
    font: normal normal 900 40px/48px 'Lato-Local', Arial, sans-serif;
    letter-spacing: 0px;
    opacity: 1;
    margin: 2rem auto 2rem auto;
    z-index: 20;
    display: block;
}

/* Párrafo introductorio */
.postulacion-intro {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 579px;
    height: 36px;
    color: #313131;
    text-align: center;
    font: normal normal normal 15px/18px 'Lato-Local', Arial, sans-serif;
    letter-spacing: 0px;
    opacity: 1;
    z-index: 20;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.postulacion-intro-line1 {
    margin: 0;
    padding: 0;
    font: normal normal normal 15px/18px 'Lato-Local', Arial, sans-serif;
    color: #313131;
}

.postulacion-intro-line2 {
    margin: 0;
    padding: 0;
    font: normal normal bold 15px/18px 'Lato-Local', Arial, sans-serif;
    color: #313131;
}

/* ===== SECCIÓN DE CONTENIDO PRINCIPAL ===== */
.postulacion-content {
    background: #F9F7EE;
    padding: 1rem 0;
    position: relative;
    z-index: 1;
    margin-top: -50px;
    overflow: visible;
}

.postulacion-content-container {
    max-width: 790px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

/* ===== SECCIONES DE PREGUNTAS ===== */
.postulacion-section {
    background: transparent;
    border-radius: 0;
    padding: 0.5rem 0;
    box-shadow: none;
    border: none;
}

.postulacion-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.postulacion-section-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 60px;
}

.postulacion-leaf-icon {
    font-size: 42px;
    color: #8B4513;
}

.postulacion-number {
    width: 20px;
    height: 42px;
    color: #026751;
    text-align: left;
    font: normal normal 900 35px/42px 'Lato-Local', Arial, sans-serif;
    letter-spacing: 0px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.postulacion-dash {
    width: 20px;
    height: 4px;
    background: #026751 0% 0% no-repeat padding-box;
    opacity: 1;
    margin-left: 0.5rem;
}

.postulacion-section-title {
    /* UI Properties */
    color: var(--unnamed-color-026751) !important;
    text-align: left !important;
    font-family: 'Lato-Local', Arial, sans-serif !important;
    font-size: 25px !important;
    line-height: 30px !important;
    font-weight: 900 !important;
    letter-spacing: 0px !important;
    color: #026751 !important;
    opacity: 1 !important;
    margin: 0 !important;
}

.postulacion-section-content {
    margin-left: 100px;
    text-align: left;
}

.postulacion-section-content .postulacion-section-text {
    /* UI Properties */
    color: var(--unnamed-color-313131) !important;
    text-align: left !important;
    font-family: 'Lato-Local', Arial, sans-serif !important;
    font-size: 15px !important;
    line-height: 18px !important;
    font-weight: normal !important;
    letter-spacing: -0.15px !important;
    color: #313131 !important;
    opacity: 1 !important;
    margin: 0 !important;
}

.postulacion-section-text:last-child {
    margin-bottom: 0;
}

/* ===== SUBSECCIONES ===== */
.postulacion-subsection {
    margin: 1.5rem 0;
}

.postulacion-subsection-title {
    color: #313131;
    text-align: left;
    font: normal normal 900 20px/26px 'Lato-Local', Arial, sans-serif;
    letter-spacing: 0px;
    opacity: 1;
    margin: 1.5rem 0 0.5rem 0;
}

/* Contenedor para las dos primeras subsecciones en columnas */
.postulacion-columns-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

/* Mejoras responsivas para el grid de columnas */
@media (max-width: 968px) {
    .postulacion-columns-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1rem 0;
    }
    
    .postulacion-column {
        margin: 0;
        padding: 0;
    }
}

.postulacion-column {
    margin: 0;
}

/* Estilos para párrafos con línea vertical (Para tener en cuenta) */
.postulacion-note-paragraph {
    position: relative;
    padding-left: 1rem;
    margin: 1rem 0;
    color: #313131;
    text-align: left;
    font: normal normal normal 15px/18px 'Lato-Local', Arial, sans-serif;
    letter-spacing: -0.15px;
    opacity: 1;
}

.postulacion-note-paragraph::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ccc;
}

.postulacion-list {
    margin: 0.5rem 0;
    padding-left: 0;
    list-style: none;
    text-align: left;
}

/* ===== SECCIÓN DE INFORMACIÓN ADICIONAL ===== */
.postulacion-info-section {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.postulacion-info-line {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin-bottom: 1rem;
}

.postulacion-info-text {
    color: #313131;
    text-align: center;
    font: normal normal normal 15px/18px 'Lato-Local', Arial, sans-serif;
    letter-spacing: -0.15px;
    opacity: 1;
    margin: 0;
}

.postulacion-manual-button {
    width: 424px;
    height: 45px;
    background: #8BC372 0% 0% no-repeat padding-box;
    border: none;
    border-radius: 23px;
    opacity: 1;
    color: #FFFFFF;
    text-align: center;
    font: normal normal bold 15px/23px 'Lato-Local', Arial, sans-serif;
    letter-spacing: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.postulacion-manual-button:hover {
    background-color: #026751;
    color: #FFFFFF;
    text-decoration: none;
}

.postulacion-list li {
    font: normal normal normal 16px/24px 'Lato-Local', Arial, sans-serif;
    color: #313131;
    margin: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.postulacion-list li::before {
    content: "•";
    color: #026751;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ===== LISTA DE REQUISITOS ===== */
.postulacion-requirements-list {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
    text-align: left;
}

.postulacion-requirements-list li {
    font: normal normal normal 16px/24px 'Lato-Local', Arial, sans-serif;
    color: #313131;
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.postulacion-arrow {
    position: absolute;
    left: 0;
    color: #026751;
    font-weight: bold;
}

/* ===== ELEMENTO DECORATIVO IZQUIERDO - HOJAS ===== */
.postulacion-decorative-left {
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 200px;
    height: 300px;
    background: transparent url('../../assets/images/hojas-decorativas.png') 0% 0% no-repeat padding-box;
    background-size: contain;
    background-position: center;
    opacity: 1;
    z-index: 10;
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .postulacion-container {
        padding: 0 1.5rem;
    }
    
    .postulacion-title {
        font-size: 42px;
        line-height: 52px;
        margin: 2rem auto 2rem auto;
    }
    
    .postulacion-intro {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 600px;
        font-size: 16px;
        line-height: 26px;
        margin: 0 auto 2rem auto;
        text-align: center;
    }
    
    .postulacion-decorative-right {
        width: 120px;
        height: 200px;
        right: 20px;
        opacity: 0.6;
    }
    
    .postulacion-decorative-left-circle {
        width: 50px;
        height: 50px;
        left: 20px;
        opacity: 0.7;
    }
    
    .postulacion-decorative-left {
        width: 120px;
        height: 200px;
        left: -30px;
        opacity: 0.5;
    }
    
    .postulacion-content {
        margin-top: -30px;
    }
    
    .postulacion-content-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .postulacion-hero {
        padding: 3rem 0 4rem 0;
    }
    
    .postulacion-container {
        padding: 0 1.5rem;
    }
    
    .postulacion-title {
        font-size: 36px;
        line-height: 46px;
        margin: 2rem auto 1.5rem auto;
        text-align: center;
    }
    
    .postulacion-intro {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 2rem auto;
        font-size: 15px;
        line-height: 24px;
        text-align: center;
        padding: 0;
    }
    
    .postulacion-decorative-right {
        width: 100px;
        height: 160px;
        right: 15px;
        opacity: 0.5;
    }
    
    .postulacion-decorative-left-circle {
        width: 40px;
        height: 40px;
        left: 15px;
        opacity: 0.6;
    }
    
    .postulacion-decorative-left {
        width: 100px;
        height: 160px;
        left: -20px;
        opacity: 0.4;
    }
    
    .postulacion-content {
        margin-top: -20px;
        padding: 2rem 0;
    }
    
    .postulacion-content-container {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }
    
    .postulacion-section-content {
        margin-left: 70px;
    }
    
    .postulacion-section-title {
        /* UI Properties */
        color: var(--unnamed-color-026751) !important;
        text-align: left !important;
        font-family: 'Lato-Local', Arial, sans-serif !important;
        font-size: 25px !important;
        line-height: 30px !important;
        font-weight: 900 !important;
        letter-spacing: 0px !important;
        color: #026751 !important;
        opacity: 1 !important;
        margin: 0 0 0.75rem 0 !important;
    }
    
    .postulacion-section-text {
        /* UI Properties */
        color: var(--unnamed-color-026751) !important;
        text-align: left !important;
        font-family: 'Lato-Local', Arial, sans-serif !important;
        font-size: 25px !important;
        line-height: 30px !important;
        font-weight: 900 !important;
        letter-spacing: 0px !important;
        color: #026751 !important;
        opacity: 1 !important;
        margin: 0 0 0.75rem 0 !important;
    }
    
    .postulacion-subsection-title {
        font-size: 18px;
        line-height: 24px;
    }
    
    .postulacion-manual-button {
        width: 320px;
        height: 45px;
        font-size: 14px;
    }
}

/* Tablets medianas */
@media (max-width: 968px) and (min-width: 769px) {
    .postulacion-hero {
        padding: 3rem 0 4rem 0;
    }
    
    .postulacion-title {
        font-size: 38px;
        line-height: 48px;
        margin: 2rem auto 1.5rem auto;
    }
    
    .postulacion-intro {
        max-width: 550px;
        margin: 0 auto 2rem auto;
        font-size: 16px;
        line-height: 24px;
    }
    
    .postulacion-content-container {
        padding: 0 2rem;
        gap: 2rem;
    }
    
    .postulacion-section-content {
        margin-left: 80px;
    }
    
    .postulacion-section-title {
        /* UI Properties */
        color: var(--unnamed-color-026751) !important;
        text-align: left !important;
        font-family: 'Lato-Local', Arial, sans-serif !important;
        font-size: 25px !important;
        line-height: 30px !important;
        font-weight: 900 !important;
        letter-spacing: 0px !important;
        color: #026751 !important;
        opacity: 1 !important;
        margin: 0 0 0.75rem 0 !important;
    }
    
    .postulacion-section-text {
        /* UI Properties */
        color: var(--unnamed-color-026751) !important;
        text-align: left !important;
        font-family: 'Lato-Local', Arial, sans-serif !important;
        font-size: 25px !important;
        line-height: 30px !important;
        font-weight: 900 !important;
        letter-spacing: 0px !important;
        color: #026751 !important;
        opacity: 1 !important;
        margin: 0 0 0.75rem 0 !important;
    }
    
    .postulacion-subsection-title {
        font-size: 18px;
        line-height: 24px;
    }
    
    .postulacion-manual-button {
        width: 350px;
        height: 45px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .postulacion-hero {
        min-height: auto;
        padding: 2rem 0 3rem 0;
        overflow: hidden;
    }
    
    .postulacion-container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .postulacion-title {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        font-size: 32px;
        line-height: 40px;
        margin: 2rem auto 3.5rem auto;
        text-align: center;
        width: auto;
        max-width: 100%;
        order: 1;
    }
    
    .postulacion-intro {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        font-size: 14px;
        line-height: 22px;
        margin: 0 auto 3rem auto;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
        order: 2;
    }
    
    .postulacion-intro-line1,
    .postulacion-intro-line2 {
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .postulacion-decorative-left-circle {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 35px;
        height: 35px;
        opacity: 0.6;
    }
    
    .postulacion-decorative-left {
        position: absolute;
        bottom: 0;
        left: -20px;
        width: 80px;
        height: 120px;
        opacity: 0.4;
    }
    
    .postulacion-decorative-right {
        position: absolute;
        top: 200px;
        right: -30px;
        width: 120px;
        height: 120px;
        z-index: 100;
        opacity: 0.3;
    }
    
    .postulacion-content {
        padding: 2rem 0;
        margin-top: -20px;
    }
    
    .postulacion-content-container {
        padding: 0 1rem;
        gap: 2.5rem;
    }
    
    .postulacion-section-header {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 0;
    }
    
    .postulacion-section-number {
        min-width: 60px;
        flex-shrink: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        padding-top: 0;
    }
    
    .postulacion-leaf-icon {
        display: none;
    }
    
    .postulacion-number {
        font-size: 32px;
        line-height: 36px;
        font-weight: 900;
        color: #026751;
        margin: 0;
    }
    
    .postulacion-dash {
        width: 20px;
        height: 3px;
        background: #026751;
        margin: 0;
    }
    
    .postulacion-section-title {
        font-size: 20px;
        line-height: 26px;
        margin: 0 0 1rem 0;
        text-align: left;
        color: #026751;
        font-weight: 900;
        flex: 1;
    }
    
    .postulacion-section-content {
        margin-left: 76px;
        padding-left: 0;
    }
    
    .postulacion-section-text {
        /* UI Properties */
        color: var(--unnamed-color-313131) !important;
        text-align: left !important;
        font-family: 'Lato-Local', Arial, sans-serif !important;
        font-size: 15px !important;
        line-height: 18px !important;
        font-weight: normal !important;
        letter-spacing: -0.15px !important;
        color: #313131 !important;
        opacity: 1 !important;
        margin: 1rem 0 !important;
    }
    
    .postulacion-subsection-title {
        font-size: 16px;
        line-height: 22px;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .postulacion-columns-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1rem 0;
    }
    
    .postulacion-column {
        margin: 0;
        padding: 0;
    }
    
    .postulacion-requirements-list {
        margin: 1rem 0;
    }
    
    .postulacion-requirements-list li {
        font-size: 14px;
        line-height: 20px;
        margin: 0.75rem 0;
        padding-left: 1.25rem;
    }
    
    .postulacion-note-paragraph {
        font-size: 14px;
        line-height: 20px;
        margin: 0.75rem 0;
        padding-left: 0.75rem;
    }
    
    .postulacion-info-section {
        margin-top: 2rem;
        padding: 0;
    }
    
    .postulacion-info-text {
        font-size: 14px;
        line-height: 20px;
        margin: 0 0 1rem 0;
        text-align: center;
    }
    
    .postulacion-manual-button {
        width: 100%;
        max-width: 340px;
        height: 45px;
        font-size: 14px;
        margin: 0.5rem auto 0 auto;
    }
}

@media (max-width: 480px) {
    .postulacion-hero {
        padding: 1.5rem 0 2rem 0;
    }
    
    .postulacion-container {
        padding: 0 0.75rem;
    }
    
    .postulacion-title {
        font-size: 28px;
        line-height: 36px;
        margin: 1.5rem auto 3.5rem auto;
        text-align: center;
        order: 1;
    }
    
    .postulacion-intro {
        font-size: 13px;
        line-height: 20px;
        margin: 0 auto 2.5rem auto;
        text-align: center;
        order: 2;
        padding: 0 0.75rem;
    }
    
    .postulacion-intro-line1,
    .postulacion-intro-line2 {
        margin-bottom: 0.25rem;
    }
    
    .postulacion-decorative-left-circle {
        width: 25px;
        height: 25px;
        left: 10px;
        top: 10px;
        opacity: 0.5;
    }
    
    .postulacion-decorative-left {
        width: 60px;
        height: 100px;
        left: -15px;
        opacity: 0.3;
    }
    
    .postulacion-decorative-right {
        width: 80px;
        height: 80px;
        right: -20px;
        top: 150px;
        opacity: 0.2;
    }
    
    .postulacion-content {
        padding: 1.5rem 0;
        margin-top: -10px;
    }
    
    .postulacion-content-container {
        padding: 0 0.75rem;
        gap: 2rem;
    }
    
    .postulacion-section-header {
        gap: 0.75rem;
    }
    
    .postulacion-section-number {
        min-width: 50px;
        padding-top: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.4rem;
    }
    
    .postulacion-leaf-icon {
        display: none;
    }
    
    .postulacion-number {
        font-size: 28px;
        line-height: 32px;
        margin: 0;
    }
    
    .postulacion-dash {
        width: 16px;
        height: 3px;
        margin: 0;
    }
    
    .postulacion-section-title {
        font-size: 18px;
        line-height: 24px;
        margin: 0 0 0.75rem 0;
    }
    
    .postulacion-section-content {
        margin-left: 66px;
    }
    
    .postulacion-section-text {
        /* UI Properties */
        color: var(--unnamed-color-313131) !important;
        text-align: left !important;
        font-family: 'Lato-Local', Arial, sans-serif !important;
        font-size: 15px !important;
        line-height: 18px !important;
        font-weight: normal !important;
        letter-spacing: -0.15px !important;
        color: #313131 !important;
        opacity: 1 !important;
        margin: 0.75rem 0 !important;
    }
    
    .postulacion-subsection-title {
        font-size: 14px;
        line-height: 18px;
        margin: 1.25rem 0 0.5rem 0;
    }
    
    .postulacion-columns-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0.75rem 0;
    }
    
    .postulacion-requirements-list {
        margin: 0.75rem 0;
    }
    
    .postulacion-requirements-list li {
        font-size: 13px;
        line-height: 18px;
        margin: 0.5rem 0;
        padding-left: 1rem;
    }
    
    .postulacion-note-paragraph {
        font-size: 13px;
        line-height: 18px;
        margin: 0.5rem 0;
        padding-left: 0.5rem;
    }
    
    .postulacion-info-section {
        margin-top: 1.5rem;
    }
    
    .postulacion-info-text {
        font-size: 13px;
        line-height: 18px;
        margin: 0 0 0.75rem 0;
    }
    
    .postulacion-manual-button {
        width: 100%;
        max-width: 340px;
        height: 40px;
        font-size: 13px;
        margin: 0.25rem auto 0 auto;
    }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
    .postulacion-container {
        padding: 0 0.5rem;
    }
    
    .postulacion-title {
        font-size: 24px;
        line-height: 30px;
        margin: 1rem auto 3.5rem auto;
        text-align: center;
        order: 1;
    }
    
    .postulacion-intro {
        font-size: 12px;
        line-height: 18px;
        margin: 0 auto 2rem auto;
        text-align: center;
        order: 2;
        padding: 0 0.5rem;
    }
    
    .postulacion-decorative-left-circle {
        width: 20px;
        height: 20px;
        left: 8px;
        top: 8px;
    }
    
    .postulacion-decorative-left {
        width: 50px;
        height: 80px;
        left: -10px;
    }
    
    .postulacion-decorative-right {
        width: 60px;
        height: 60px;
        right: -15px;
        top: 120px;
    }
    
    .postulacion-content-container {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .postulacion-section-header {
        gap: 0.5rem;
    }
    
    .postulacion-section-number {
        min-width: 40px;
        padding-top: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.3rem;
    }
    
    .postulacion-leaf-icon {
        display: none;
    }
    
    .postulacion-number {
        font-size: 24px;
        line-height: 28px;
        margin: 0;
    }
    
    .postulacion-dash {
        width: 14px;
        height: 2px;
        margin: 0;
    }
    
    .postulacion-section-title {
        font-size: 16px;
        line-height: 22px;
        margin: 0 0 0.5rem 0;
    }
    
    .postulacion-section-content {
        margin-left: 56px;
    }
    
    .postulacion-section-text {
        /* UI Properties */
        color: var(--unnamed-color-313131) !important;
        text-align: left !important;
        font-family: 'Lato-Local', Arial, sans-serif !important;
        font-size: 15px !important;
        line-height: 18px !important;
        font-weight: normal !important;
        letter-spacing: -0.15px !important;
        color: #313131 !important;
        opacity: 1 !important;
        margin: 0.5rem 0 !important;
    }
    
    .postulacion-subsection-title {
        font-size: 13px;
        line-height: 17px;
        margin: 1rem 0 0.25rem 0;
    }
    
    .postulacion-requirements-list li {
        font-size: 12px;
        line-height: 16px;
        margin: 0.25rem 0;
        padding-left: 0.75rem;
    }
    
    .postulacion-note-paragraph {
        font-size: 12px;
        line-height: 16px;
        margin: 0.25rem 0;
        padding-left: 0.5rem;
    }
    
    .postulacion-info-text {
        font-size: 12px;
        line-height: 16px;
    }
    
    .postulacion-manual-button {
        width: 100%;
        max-width: 240px;
        height: 38px;
        font-size: 12px;
    }
}

/* Mejoras para tablets en landscape */
@media (max-width: 1024px) and (min-width: 769px) and (orientation: landscape) {
    .postulacion-hero {
        padding: 2rem 0 3rem 0;
    }
    
    .postulacion-title {
        font-size: 34px;
        line-height: 42px;
        margin: 1.5rem auto 1rem auto;
    }
    
    .postulacion-intro {
        margin: 0 auto 1.5rem auto;
    }
    
    .postulacion-content {
        margin-top: -15px;
    }
}

/* Escritorio grande - mantener orden con max-width */
@media (min-width: 1281px) {
    .postulacion-container {
        max-width: 1280px;
        padding: 0 2rem;
    }
    
    .postulacion-title {
        max-width: 600px;
    }
    
    .postulacion-intro {
        max-width: 800px;
    }
    
    .postulacion-content-container {
        max-width: 790px;
        padding: 0 2rem;
    }
}
