/* --- GERAL & FONTES --- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #444;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section.section-dark {
    background-color: #212529;
}

/* --- NAVBAR --- */
.navbar {
    background: rgba(0,0,0,0.7);
    transition: background 0.3s ease-in-out;
}

.navbar-brand.logo {
    font-weight: 700;
    font-size: 1.8rem;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button-nav {
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 25px;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image-bg, .hero-image-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; 
}

.cta-button-hero {
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 1.2rem;
}

/* --- PROJETOS (GALERIA) --- */
.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* --- ESTILOS DO CARROSSEL DA GALERIA --- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
}

.gallery-item .gallery-img {
    display: block;
    width: 100%;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 15px 15px 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-caption p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
    background-size: 50% 50%;
}

/* --- COMO FUNCIONA & DIFERENCIAIS (FEATURE BOX) --- */
.feature-box {
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

/* --- NÚMEROS --- */
#numeros .counter {
    font-size: 3.5rem;
}

/* --- DEPOIMENTOS (VÍDEOS) --- */
.card-video {
    border: none;
    overflow: hidden;
}

.card-video .card-body {
    display: flex;
    flex-direction: column;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Proporção 16:9 */
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    transition: background 0.3s ease;
}

.play-button-overlay i {
    font-size: 5rem;
    color: white;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.video-thumbnail-container:hover .play-button-overlay i {
    transform: scale(1.1);
    opacity: 1;
}

.video-thumbnail-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- PARCEIROS --- */
.partner-logo {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- FAQ --- */
.accordion-button:not(.collapsed) {
    background-color: #ffc107;
    color: #212529;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

/* --- FORMULÁRIO ORÇAMENTO --- */
#quote-wizard .form-step {
    display: none;
}

#quote-wizard .form-step.active {
    display: block;
}

/* --- NOVA SECÇÃO DE ORÇAMENTO ATRATIVA --- */
.benefits-list li {
    display: flex;
    align-items: flex-start;
}
.benefits-list i {
    font-size: 1.5rem;
    line-height: 1.6;
}

/* --- PÁGINA DE CONTATO --- */
.contact-section {
    padding-top: 120px;
    padding-bottom: 80px;
}

.contact-info-list {
    font-size: 1rem;
    line-height: 1.8;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-list i {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
    color: #ffc107;
}

.contact-info-list a {
    text-decoration: none;
    color: #444;
    transition: color 0.3s ease;
}

.contact-info-list a:hover {
    color: #000;
}

.social-icons .social-icon {
    font-size: 2rem;
    margin-right: 15px;
    color: #212529;
    transition: color 0.3s ease;
}

.social-icons .social-icon:hover {
    color: #ffc107;
}

.contact-form .form-control {
    padding: 12px;
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- ANIMAÇÕES --- */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- FOOTER --- */
.footer a:hover {
    color: #fff !important;
}