@import url('https://fonts.googleapis.com/css2?family=Bahianita&family=Cuprum:ital,wght@0,400..700;1,400..700&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

.faq-item {
    font-family: "Dancing Script", serif;
    font-optical-sizing: auto;
    font-weight: 20px;
    font-style: normal;
}

.faq-item:hover {
    color: #b18714;
}

.preguntas { 
    color: #DBC27C;
    font-size: 45px;
    font-family: "Bahianita", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.faq-question {
    cursor: pointer;
    padding: 1rem;
    margin: 0;
    position: relative;
}

.faq-question::after {
    font-family: "Font Awesome 6 Free";
    content: '\f24e';
    /* Código del ícono de balanza */
    position: absolute;
    right: 1rem;
    transition: transform 0.3s ease;
    font-weight: 900;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1rem;
}

.contact-form {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
}

.form-control:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.input-group .form-select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.countries-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 250px;
}

.country-option {
    padding: 8px 12px;
    cursor: pointer;
}

.country-option:hover {
    background-color: #f8f9fa;
}