/* Estilos específicos para a página churrasqueiro.html */

.service-header {
    padding: 20px 0;
}

.service-content {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .service-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .service-text {
        flex: 1;
        margin-right: 20px;
    }
    
    .service-image-container {
        flex: 1;
    }
}

.service-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .service-title {
        font-size: 36px;
        margin-top: 7px;
    }
}

.service-subtitle {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.service-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin: 15px 0;
}

.form-container {
    background: linear-gradient(140deg, #F2F0FF, #FFDDDD);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
    padding: 20px;
    margin: 0px 0;
    margin-bottom: 35px;
}

.form-title {
    font-size: 27px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 12px;
}

.form-emoji {
    margin-left: 5px;
}

.textarea-description {
    min-height: 100px;
    resize: vertical;
}

.main-content {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .main-content {
        flex-direction: row;
        gap: 30px;
    }
    
    .form-container {
        flex: 1.8;
    }
    
    .testimonials-container {
        flex: 1;
    }
}

.testimonials-container {
    margin-top: 0px;
}

.phone-confirmation-modal {
    text-align: center;
}

.phone-display {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    .modal-buttons {
        flex-direction: row;
    }
}

.modal-buttons .btn {
    flex: 1;
}

/* Ajustes específicos para mobile */
@media (max-width: 767px) {
    .service-title {
        font-size: 26px;
    }
    
    .service-subtitle {
        font-size: 17px;
    }
    
    .form-title {
        font-size: 24px;
        text-align: left;
    }
    
    .form-container {
        padding: 15px;
    }
}