/* Estilos específicos para a página de consulta */

/* Header da página de consulta */
.consultation-header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h1 {
    font-family: 'Cinzel Decorative', serif;
    color: #ffd700;
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.back-btn {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    color: #ffd700;
    transform: translateX(-5px);
}

/* Seção principal de consulta */
.consultation-section {
    padding: 120px 0 60px;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.consultation-section h2 {
    font-family: 'Cinzel Decorative', serif;
    color: #ffd700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* FORMULÁRIO COMPLETO DE CONSULTA */
.consultation-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section h3 {
    font-family: 'Cinzel Decorative', serif;
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    color: #f0f0f0;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group label.required::after {
    content: ' *';
    color: #ff6b6b;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #f0f0f0;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(240, 240, 240, 0.6);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Opções de consulta */
.consultation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.consultation-option {
    position: relative;
    cursor: pointer;
    display: block;
}

.consultation-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-content {
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.consultation-option:hover .option-content::before {
    left: 100%;
}

.consultation-option:hover .option-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.consultation-option input[type="radio"]:checked + .option-content {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(192, 192, 192, 0.1));
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.option-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.consultation-option:hover .option-icon {
    transform: scale(1.1);
}

.option-content h4 {
    color: #ffd700;
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.option-content p {
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.option-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.cards-count {
    color: #c0c0c0;
    font-size: 0.9rem;
    font-weight: 500;
}

.option-content .price {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Resumo de preço */
.price-summary {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.price-summary h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Cinzel Decorative', serif;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span {
    color: #c0c0c0;
    font-size: 1rem;
}

.summary-item strong {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
}

.summary-item.total {
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.summary-item.total span {
    font-size: 1.2rem;
    font-weight: 600;
}

.summary-item.total strong {
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Botão de envio */
.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.submit-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mensagens de erro */
.error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.error-message.show {
    display: block;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ESTADOS DE VALIDAÇÃO */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.form-group input.valid,
.form-group textarea.valid,
.form-group select.valid {
    border-color: #51cf66;
    box-shadow: 0 0 10px rgba(81, 207, 102, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .consultation-section {
        padding: 100px 0 40px;
    }
    
    .consultation-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .consultation-form {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .consultation-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .option-content {
        padding: 1rem;
    }
    
    .option-content h4 {
        font-size: 1.1rem;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .price-summary {
        padding: 1.5rem;
    }
    
    .total-price strong {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .consultation-form {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .consultation-section h2 {
        font-size: 1.8rem;
    }
    
    .form-section h3 {
        font-size: 1.3rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animações de entrada */
.form-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .consultation-option .option-content,
    .submit-btn,
    .form-group input,
    .form-group textarea {
        transition: none;
    }
    
    .option-content::before {
        display: none;
    }
}

/* Modo de alto contraste */
@media (prefers-contrast: high) {
    .consultation-form {
        border: 2px solid #ffd700;
    }
    
    .option-content {
        border: 2px solid #ffd700;
    }
    
    .form-group input,
    .form-group textarea {
        border: 2px solid #ffd700;
    }
}

/* CORREÇÕES PARA OS CARDS DE CONSULTA */
.consultation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.consultation-card {
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.consultation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.consultation-card:hover::before {
    left: 100%;
}

.consultation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.card-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.consultation-card:hover .card-icon {
    transform: scale(1.1);
}

.card-content h3 {
    font-family: 'Cinzel Decorative', serif;
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-content p {
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.cards-count {
    color: #c0c0c0;
    font-size: 0.9rem;
    font-weight: 500;
}

.consulta-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* CORREÇÕES PARA FORMULÁRIO */
.question-section {
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.question-section h3 {
    font-family: 'Cinzel Decorative', serif;
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.question-section p {
    color: #c0c0c0;
    text-align: center;
    margin-bottom: 2rem;
}

.question-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #f0f0f0;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #f0f0f0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group small {
    color: #c0c0c0;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #f0f0f0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

/* RESUMO DA CONSULTA COM PREÇO */
.consultation-summary {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.consultation-summary h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.5rem;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span {
    color: #c0c0c0;
    font-size: 1rem;
}

.summary-item strong {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
}

.summary-item.total {
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.summary-item.total span {
    font-size: 1.2rem;
    font-weight: 600;
}

.summary-item.total strong {
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* BOTÃO DE CHECKOUT */
.checkout-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.checkout-btn:hover::before {
    left: 100%;
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.checkout-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* CORREÇÕES PARA MENSAGENS */
.message {
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
}

.error-message {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.success-message {
    background: rgba(81, 207, 102, 0.1);
    border: 1px solid rgba(81, 207, 102, 0.3);
    color: #51cf66;
}

/* RESPONSIVIDADE PARA MOBILE */
@media (max-width: 768px) {
    .consultation-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .consultation-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .card-details {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .cards-count {
        font-size: 0.8rem;
    }
    
    .consulta-price {
        font-size: 1.1rem;
    }
    
    .question-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .question-section h3 {
        font-size: 1.3rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .consultation-summary {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .consultation-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .consultation-form {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
    }
    
    .form-section h3 {
        font-size: 1.3rem;
    }
    
    .consultation-summary {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .consultation-summary h3 {
        font-size: 1.3rem;
    }
    
    .summary-item.total strong {
        font-size: 1.5rem;
    }
    
    .checkout-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .consultation-card {
        padding: 1rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .question-section {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .consultation-summary {
        padding: 1rem;
    }
    
    .checkout-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* CORREÇÕES ESPECÍFICAS PARA MOBILE */
@media (max-width: 768px) {
    .consultation-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .consultation-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .card-details {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .cards-count {
        font-size: 0.8rem;
    }
    
    .consulta-price {
        font-size: 1.1rem;
    }
    
    .consultation-form {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
    }
    
    .form-section h3 {
        font-size: 1.3rem;
    }
    
    .consultation-summary {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .consultation-summary h3 {
        font-size: 1.3rem;
    }
    
    .summary-item.total strong {
        font-size: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .consultation-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    /* Correções específicas para botões de ação */
    .form-actions .btn {
        margin: 0.5rem 0;
        min-height: 50px;
    }
    
    /* Melhorar espaçamento do resumo */
    .summary-details {
        gap: 1.5rem;
    }
    
    .summary-item {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .summary-item.total {
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 2px solid rgba(255, 215, 0, 0.3);
    }
}

@media (max-width: 480px) {
    .consultation-card {
        padding: 1rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .consultation-form {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .consultation-summary {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 45px;
    }
    
    /* Melhorar visibilidade dos botões */
    .btn-primary {
        background: linear-gradient(45deg, #ffd700, #ffed4e);
        color: #1a1a2e;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    
    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: #f0f0f0;
        border: 1px solid rgba(255, 215, 0, 0.3);
    }
    
    /* Melhorar espaçamento dos elementos */
    .form-group {
        margin-bottom: 2rem;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .form-group small {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
}

/* Melhorias de acessibilidade para touch */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px; /* Tamanho mínimo recomendado para touch */
        padding: 12px 24px;
    }
    
    .consultation-card {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 215, 0, 0.3);
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Evita zoom no iOS */
    }
}
