/* Importando uma fonte moderna para usar com Bootstrap */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

/* ========================================= */
/* ESTILOS DE BOTÕES GERAIS                  */
/* ========================================= */

.btn-primary {
    background-color: #f37021; /* Laranja da sua logo */
    border-color: #f37021;     /* Borda da mesma cor */
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d86018; /* Laranja um pouco mais escuro no hover */
    border-color: #d86018;
    transform: translateY(-2px); /* Efeito sutil de "levantar" no hover */
}

/* ========================================= */
/* ESTILOS DA SEÇÃO HERO COM VÍDEO DE FUNDO  */
/* ========================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.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;
}

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

/* ========================================= */
/* ESTILOS DA SEÇÃO DE DIFERENCIAIS          */
/* ========================================= */

.diferenciais-section {
    background-color: #f8f9fa;
}

.diferencial-icon img {
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.diferenciais-section .h4 {
    color: #343a40;
    margin-top: 1rem;
}

/* ========================================= */
/* ESTILOS DA SEÇÃO DE CONTATO               */
/* ========================================= */

.contato-section .col-lg-6:last-child {
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.map-responsive {
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: 75%;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .25rem;
}

.contato-section .form-control {
    border: 1px solid #e0e0e0;
    padding: 0.85rem 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.contato-section .form-control:focus {
    background-color: #ffffff;
    border-color: #f37021;
    box-shadow: 0 0 0 0.25rem rgba(243, 112, 33, 0.25);
}

/* O botão do contato agora herda as cores da regra geral .btn-primary */
.contato-section .btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
}

/* ========================================= */
/* ESTILOS DA PÁGINA "A EMPRESA"             */
/* ========================================= */

.filosofia-icon svg {
    color: #f37021; /* Laranja da logo */
    margin-bottom: 1rem;
}

.img-destaque-empresa {
    max-width: 450px;
    height: auto;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.img-estrutura-empresa {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.text-content-block {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* ========================================= */
/* ESTILOS DA PÁGINA "ESTRUTURA E QUALIDADE" */
/* ========================================= */

.hero-estrutura {
    /* LINHA CORRIGIDA ABAIXO */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/hero_estrutura.jpg");
    background-size: cover;
    background-position: center;
    height: 40vh; /* Altura do banner do topo */
    min-height: 300px;
}


/* ========================================= */
/* ESTILOS DA PÁGINA "NOSSOS SERVIÇOS"       */
/* ========================================= */

.hero-servicos {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/hero_servicos.png");
    background-size: cover;
    background-position: center;
    height: 40vh; /* Altura do banner do topo */
    min-height: 300px;
}

/* Ícones de checagem nas listas */
.detalhes-servico ul li i {
    color: #f37021; /* Laranja da logo */
}

.card {
    border: none; /* Remove a borda padrão do card */
}

.card img {
    max-width: 80px; /* Tamanho dos ícones nos cards de vantagens */
    height: auto;
}

/* Ajuste para o botão da CTA */
.cta-servicos .btn-primary {
    padding: 1rem 2.5rem; /* Botão maior e mais proeminente */
    font-size: 1.25rem;
}