/* Estilos customizados para um visual chique e moderno */

:root {
    --primary-color: #343a40; /* Cinza escuro, quase preto */
    --secondary-color: #fdfdfd; /* Branco suave */
    --accent-color: #c0a172; /* Dourado/Bronze para detalhes */
    --text-color: #555;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Lato', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--heading-font);
    color: var(--primary-color);
}

.navbar {
    transition: background-color 0.5s ease;
}

.navbar-brand {
    font-size: 1.75rem;
    color: var(--accent-color) !important;
}

.nav-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color) !important;
}

.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, #fdfdfd 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    text-align: left;
}

.hero-section h1.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
}

.hero-section .lead {
    font-size: 1.3rem;
    color: #6c757d;
}

.btn-custom {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #a98b5f;
    border-color: #a98b5f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-outline-custom {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-outline-custom:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
}

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title-left::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
}

.profile-img {
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card h5 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.specialty-card {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    height: 100%;
}

.specialty-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(192, 161, 114, 0.15);
}

.specialty-card h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.testimonial-card .stars {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 20px;
}

.price-card {
    background-color: #fff;
    border: 2px solid #eee;
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.price-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.price-card .badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffc107;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.contact-info-box {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info-box i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.contact-info-box h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

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

.quick-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3136 100%);
    color: #fff;
    padding: 40px 0;
}

.bg-light-custom {
    background-color: #f8f9fa;
}

footer {
    background-color: var(--primary-color);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

footer h5 {
    color: #fff;
    margin-bottom: 20px;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Media Queries para Mobile */
@media (max-width: 768px) {
    /* Ajustar título principal da hero section */
    .hero-section h1.hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    /* Ajustar espaçamento da hero section */
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    /* Ajustar tamanhos de seção */
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-left {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    /* Ajustes adicionais para telas muito pequenas */
    .hero-section h1.hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-section .lead {
        font-size: 0.95rem;
    }
}
