/* Fix para alinear el botón "Comenzar" con el selector de idioma */

/* Asegurar que el contenedor CTA use flexbox con alineación vertical */
.cta-button {
    display: flex;
    align-items: center; /* Centrado vertical */
    gap: 15px;
    height: 48px; /* Altura fija para consistencia */
}

.language-selector {
    position: relative;
}

/* Selector de idioma con altura específica */
.language-selector select {
    background-color: white;
    color: black;
    border: 2px solid black;
    border-radius: 25px;
    padding: 0 35px 0 20px; /* Solo padding horizontal, sin vertical */
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    min-width: 120px;
    height: 48px; /* Altura exacta */
    line-height: 48px; /* Line-height igual a la altura para centrado vertical */
    vertical-align: top; /* Alineación superior para consistencia */
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
}

.language-selector select:hover {
    background-color: #f8f9fa;
    border-color: #333333; /* Gris oscuro para el hover */
    transform: translateY(-2px);
}

.language-selector select:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2); /* Sombra negra en lugar de azul */
}

/* Flecha personalizada */
.language-selector::after {
    content: '▼';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: black;
    font-size: 10px;
}

/* Responsive - mantener alineación en móviles */
@media (max-width: 768px) {
    .cta-button {
        flex-direction: row;
        gap: 10px;
        height: 42px; /* Altura reducida en móvil */
        align-items: center; /* Mantener centrado vertical */
    }
    
    .language-selector select {
        min-width: 100px;
        font-size: 13px;
        padding: 0 30px 0 15px;
        height: 42px;
        line-height: 42px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        gap: 8px;
        height: 38px;
    }
    
    .language-selector select {
        min-width: 90px;
        font-size: 12px;
        padding: 0 25px 0 12px;
        height: 38px;
        line-height: 38px;
    }
}