body {
    font-family: 'Montserrat', sans-serif;
}

/* Color Palette Variables */
:root {
    --primary-blue: #0d47a1; /* Azul escuro do logo */
    --secondary-blue: #1976d2; /* Azul médio do logo */
    --light-blue: #42a5f5; /* Azul claro para detalhes */
    --dark-gray: #343a40;
}

/* Barra de Contato Superior */
.top-bar {
    background-color: var(--secondary-blue);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}
.top-bar .contact-item a,
.top-bar .contact-item a:visited,
.top-bar .contact-item a:hover {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
}
.top-bar .contact-item a:hover {
    opacity: 0.8;
}
.top-bar .contact-item a i {
    color: #fff;
}
.top-bar .contact-item + .contact-item {
    margin-left: 1.5rem; 
}

/* Navbar */
.navbar {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    transition: padding 0.3s ease;
    align-items: flex-end;
}
.navbar .navbar-nav {
    padding-bottom: 1rem;
}
.navbar-brand img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}
.nav-link {
    font-weight: 600;
    color: var(--dark-gray);
}
.nav-link.active, .nav-link:hover {
    color: var(--primary-blue);
}
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    border-radius: 50rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    overflow: hidden;
    background-color: #000;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}
.hero-banner .container {
    position: relative;
    z-index: 3;
}

/* Page Header (for other pages) */
.page-header {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 4rem 0;
}

/* Sections General */
h2.fw-bold {
    color: var(--primary-blue);
}

/* Services Section Icons */
.icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: background-color 0.3s ease;
}
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.card:hover .icon-circle {
    background-color: var(--secondary-blue);
}

/* CTA Section */
#cta {
    background-color: var(--secondary-blue);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
}
footer a {
    transition: opacity 0.3s ease;
}
footer a:hover {
    opacity: 0.8;
}

/* Contact Page Icons */
.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    color: var(--primary-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

/* Seção de Diferenciais */
.icon-circle-lg {
    width: 100px;
    height: 100px;
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* Seção da Equipe (Sobre Nós) */
#team .team-member .team-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#team .team-member:hover .team-photo {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.2);
}

/* Botão Flutuante do WhatsApp */
.whatsapp-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    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.2s ease-in-out;
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-section-static {
    background-color: #f8f9fa; /* Fundo cinza claro para a seção */
}

.whatsapp-card-static {
    background-color: var(--primary-blue);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 100%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Efeito de "mexer" ao passar o mouse */
.whatsapp-card-static:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    color: white;
}

.whatsapp-card-static .whatsapp-card-text {
    padding-right: 1.5rem;
}

.whatsapp-card-static .whatsapp-card-text i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.whatsapp-card-static .whatsapp-card-text h4 {
    font-size: 1.2rem;
}

.whatsapp-card-static .whatsapp-card-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.whatsapp-card-static .whatsapp-card-link {
    font-weight: bold;
    text-decoration: underline;
}

.whatsapp-card-static .whatsapp-card-qr img {
    width: 130px; /* Tamanho do QR Code um pouco menor */
    height: 130px;
    background-color: white;
    padding: 8px;
    border-radius: 0.5rem;
}