/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
}

h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Estilo padrão para os itens do menu */
.navbar-nav .nav-link {
    position: relative;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s ease;
}

/* Linha que aparece no hover e quando ativo */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.4s ease, left 0.4s ease;
}

/* Expande a linha do centro para os lados no hover */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Navbar Styles */
.navbar {
    transition: background-color 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: #000;
}

.navbar-brand, .nav-link {
    color: #fff !important;
}


/* Hero Section */
.hero {
    height: 100vh;
}

.carousel-item img {
    height: 100vh;
    object-fit: cover;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

/* Parallax Section */
.parallax-section {
    height: 400px;
    background: url('https://images.unsplash.com/photo-1621605815971-fbc98d665033') fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.parallax-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
}

/* Videos Section */
.videos-section {
    padding: 100px 0;
    background-color: #fff;
}

video {
    width: 100%; /* faz o vídeo se ajustar ao tamanho do contêiner */
    height: auto; 
    
    /* mantém a proporção */
}

.video-container-2 {
    width: 100%; /* ou outra largura desejada */
    max-width: 600px; /* limite máximo para o tamanho */
    margin: 0 auto; /* centraliza o vídeo */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.contact-section form .form-control {
    margin-bottom: 20px;
}

.contact-section .btn-primary {
    width: 100%;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.social-links a {
    color: #fff;
    font-size: 24px;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}


/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #fff;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.service-box {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.service-box .icon {
    font-size: 50px;
    color: #007bff;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.service-box p {
    color: #555;
}

.service-box:hover {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none; /* Remove a linha embaixo do ícone */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #22bb5b;
}