/* Fale Conosco Page Styles */

/* Page Title */
.page-title {
    color: #cd6129;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: left;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 3%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #cd6129, #5c8c64);
    border-radius: 2px;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 2rem;
}

/* Form Styles */
.form-control {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.form-control:focus {
    border-color: #cd6129;
    box-shadow: 0 0 0 0.2rem rgba(205, 97, 41, 0.25);
}

.form-label {
    font-weight: 500;
    color: #444;
}

/* Button Styles */
.btn-outline-orange {
    color: #cd6129;
    border-color: rgba(205, 96, 41, 0.89);
    transition: all 0.2s ease;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.btn-outline-orange:hover,
.btn-outline-orange:focus {
    color: #fff;
    background-color: #5c8c64;
    border-color: rgba(58, 93, 64, 0.67);
}

/* Contact Info Styles */
.text-orange {
    color: #cd6129;
}

.card a {
    color: #cd6129;
    transition: color 0.2s ease;
}

.card a:hover {
    color: #5c8c64;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
} 