/* Estilos Gerais */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    padding-top: 56px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    height: 80vh;
    color: white;
    display: flex;
    align-items: center;
}

/* Seções */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #b89345;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Cards de Serviço */
.service-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: #b89345;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
}
.nav-link.active{
    font-weight: bold;
    color: #b89345;
}
.nav-link:hover {
    font-weight: bold;
    color: #b89345;
    padding: 0.5rem 1rem;
}

/* Contato */
.contact-info i {
    width: 20px;
    text-align: center;
}

.social-media a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    color: #333;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background-color: #b89345;
    color: white;
}

/* Rodapé */
footer {
    background-color: #212529;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}
/* Animações */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Carrossel */
.carousel-item {
    height: 80vh;
    min-height: 350px;
    background: no-repeat center center scroll;
    background-size: cover;
}

.carousel-caption {
    bottom: 100px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

/* Efeito hover nos cards */
.card-hover-effect {
    transition: transform 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-5px);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

.whatsapp-icon {
    margin-top: 5px;
}


/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/slides/img-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito parallax opcional */
    height: 100vh;
    min-height: 400px;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 100%;
    margin-left: 10%;
    padding: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Alterar todas as cores primary para #b89345 */
.bg-primary {
    background-color: #b89345 !important;
}

.btn-primary {
    background-color: #b89345;
    border-color: #b89345;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #a5823d;
    border-color: #a5823d;
}

.text-primary {
    color: #b89345 !important;
}

.border-primary {
    border-color: #b89345 !important;
}

/* Se estiver usando Bootstrap 5, adicione também: */
.btn-outline-primary {
    color: #b89345;
    border-color: #b89345;
}

.btn-outline-primary:hover {
    background-color: #b89345;
    color: white;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
        padding: 20px;
    }
}

/* Estilos para as redes sociais no footer */
.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white !important;
    transition: all 0.3s ease;
    text-align: center;
}

.social-links a:hover {
    background-color: #b89345; /* Sua cor dourada */
    transform: translateY(-3px);
    text-decoration: none;
}

/* Ajuste de responsividade */
@media (max-width: 767.98px) {
    .social-links {
        margin-bottom: 15px;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 0.9rem;
    }
}