/* Buscador Terapeutas - Estilos */

.buscador-terapeutas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.buscador-header {
    text-align: center;
    margin-bottom: 40px;
}

.buscador-header h2 {
    font-size: 2.5em;
    color: #5a9c92;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 1px;
}

.buscador-header p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.buscador-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-encuentra,
.btn-no-sabes {
    padding: 12px 25px;
    border: 2px solid #5a9c92;
    background: transparent;
    color: #5a9c92;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
}

.btn-encuentra.active,
.btn-no-sabes.active,
.btn-encuentra:hover,
.btn-no-sabes:hover {
    background: #5a9c92;
    color: white;
}

.buscador-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: end;
}

.form-group {
    position: relative;
}

.form-group.focused {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #5a9c92;
    background: white;
    box-shadow: 0 0 0 3px rgba(90, 156, 146, 0.1);
}

.form-control:disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

/* Estilos para Select2 */
.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    min-height: 53px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333;
    line-height: 35px;
    padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: #5a9c92;
    border: 1px solid #5a9c92;
    color: white;
    border-radius: 15px;
    padding: 2px 8px;
    margin: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: white;
    border-right: 1px solid rgba(255,255,255,0.3);
    margin-right: 8px;
    padding-right: 8px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #fff;
    background: rgba(255,255,255,0.2);
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #5a9c92;
    background: white;
    box-shadow: 0 0 0 3px rgba(90, 156, 146, 0.1);
}

.select2-dropdown {
    border: 2px solid #5a9c92;
    border-radius: 8px;
    margin-top: 2px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #5a9c92;
    color: white;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 8px;
}

.btn-buscar {
    width: 100%;
    padding: 15px 30px;
    background: #5a9c92;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buscar:hover {
    background: #4a8c82;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 156, 146, 0.3);
}

/* Estilos para la página de resultados */
.terapeutas-results {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.search-header h1 {
    font-size: 2.5em;
    color: #333;
    margin: 0;
}

.btn-volver {
    color: #5a9c92;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 20px;
    border: 2px solid #5a9c92;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-volver:hover {
    background: #5a9c92;
    color: white;
}

.filtros-aplicados {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filtro-tag {
    background: #e8f4f2;
    color: #5a9c92;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    border: 1px solid #5a9c92;
}

.terapeutas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.terapeuta-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terapeuta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.terapeuta-image {
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

.terapeuta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5a9c92, #4a8c82);
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-image-placeholder::before {
    content: "👤";
    font-size: 3em;
    color: white;
    opacity: 0.7;
}

.terapeuta-info {
    padding: 25px;
}

.terapeuta-info h3 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.ubicacion {
    color: #e74c3c;
    font-size: 1em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-icon {
    font-size: 1.2em;
}

.terapias-list {
    margin-bottom: 15px;
}

.terapias-list p {
    margin: 5px 0;
    line-height: 1.5;
}

.modalidad {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.rating {
    margin-bottom: 20px;
}

.stars {
    color: #ffa500;
    font-size: 1.1em;
}

.btn-perfil {
    display: block;
    width: 100%;
    padding: 15px;
    background: #5a9c92;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-perfil:hover {
    background: #4a8c82;
    color: white;
    text-decoration: none;
}

.no-results {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    padding: 50px 20px;
    background: #f9f9f9;
    border-radius: 15px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .buscador-header h2 {
        font-size: 2em;
    }
    
    .buscador-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .search-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .search-header h1 {
        font-size: 2em;
    }
    
    .terapeutas-grid {
        grid-template-columns: 1fr;
    }
    
    .filtros-aplicados {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .buscador-terapeutas-container {
        padding: 20px 10px;
    }
    
    .buscador-form {
        padding: 20px;
    }
    
    .terapeuta-info {
        padding: 20px;
    }
} Roboto, sans-serif;
}

.buscador-header {
    text-align: center;
    margin-bottom: 40px;
}

.buscador-header h2 {
    font-size: 2.5em;
    color: #5a9c92;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 1px;
}

.buscador-header p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.buscador-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-encuentra,
.btn-no-sabes {
    padding: 12px 25px;
    border: 2px solid #5a9c92;
    background: transparent;
    color: #5a9c92;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
}

.btn-encuentra.active,
.btn-no-sabes.active,
.btn-encuentra:hover,
.btn-no-sabes:hover {
    background: #5a9c92;
    color: white;
}

.buscador-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: end;
}

.form-group {
    position: relative;
}

.form-group.focused {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #5a9c92;
    background: white;
    box-shadow: 0 0 0 3px rgba(90, 156, 146, 0.1);
}

.form-control:disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

.btn-buscar {
    width: 100%;
    padding: 15px 30px;
    background: #5a9c92;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buscar:hover {
    background: #4a8c82;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 156, 146, 0.3);
}

/* Estilos para la página de resultados */
.terapeutas-results {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.search-header h1 {
    font-size: 2.5em;
    color: #333;
    margin: 0;
}

.btn-volver {
    color: #5a9c92;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 20px;
    border: 2px solid #5a9c92;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-volver:hover {
    background: #5a9c92;
    color: white;
}

.filtros-aplicados {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filtro-tag {
    background: #e8f4f2;
    color: #5a9c92;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    border: 1px solid #5a9c92;
}

.terapeutas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.terapeuta-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terapeuta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.terapeuta-image {
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

.terapeuta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5a9c92, #4a8c82);
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-image-placeholder::before {
    content: "👤";
    font-size: 3em;
    color: white;
    opacity: 0.7;
}

.terapeuta-info {
    padding: 25px;
}

.terapeuta-info h3 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.ubicacion {
    color: #e74c3c;
    font-size: 1em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-icon {
    font-size: 1.2em;
}

.terapias-list {
    margin-bottom: 15px;
}

.terapias-list p {
    margin: 5px 0;
    line-height: 1.5;
}

.modalidad {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.rating {
    margin-bottom: 20px;
}

.stars {
    color: #ffa500;
    font-size: 1.1em;
}

.btn-perfil {
    display: block;
    width: 100%;
    padding: 15px;
    background: #5a9c92;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-perfil:hover {
    background: #4a8c82;
    color: white;
    text-decoration: none;
}

.no-results {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    padding: 50px 20px;
    background: #f9f9f9;
    border-radius: 15px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .buscador-header h2 {
        font-size: 2em;
    }
    
    .buscador-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .search-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .search-header h1 {
        font-size: 2em;
    }
    
    .terapeutas-grid {
        grid-template-columns: 1fr;
    }
    
    .filtros-aplicados {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .buscador-terapeutas-container {
        padding: 20px 10px;
    }
    
    .buscador-form {
        padding: 20px;
    }
    
    .terapeuta-info {
        padding: 20px;
    }
}