/* Ajustes para o banner principal */
.hero-section {
    position: relative;
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: left;
    padding: 0 100px;
}

/* Container principal de texto */
.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Estilo para o título principal */
.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Ajuste para a tag que mostra "Construindo o Futuro com Excelência" */
.slogan-principal {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Estilo para o subtítulo */
.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}


/* Estilo para o texto descritivo da empresa */
.descricao-empresa {
    max-width: 450px;
    line-height: 1.8;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Botão "Conheça Nossa História" */
.btn-conheca {
    display: inline-block;
    padding: 15px 30px;
    background-color: #0377C0;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(66, 153, 225, 0.5);
    text-align: center;
}

.btn-conheca:hover {
    background-color: #0261A0;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.7);
}

/* Ajustes de responsividade para o banner */
@media (max-width: 768px) {
    .hero-section {
        padding: 0 30px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .slogan-principal {
        font-size: 40px;
    }
    
    .descricao-empresa {
        font-size: 16px;
    }
}

/* Estilo para o botão de WhatsApp no topo */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}


/* Estilo para menu de navegação */
.navbar {
    padding: 15px 30px;
    background-color: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: white;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #0377C0;
}



/* Botão destacado semelhante ao "Conheça Nossa História" */
.hero-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0377C0;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0 15px rgba(66, 153, 225, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn:hover {
    background-color: #0261A0;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.7);
}

/* Seção de História */
.historia-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.historia-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.historia-texto {
    flex: 1;
    min-width: 300px;
}

.historia-texto h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #0066a4;
    font-family: 'Poppins';
    font-weight: 500;
    position: relative;
}

.historia-texto h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: -webkit-fill-available;
    height: 4px;
    background-color: #0377C0
}

.historia-texto p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Poppins';
    color: #232527;
    font-weight: 500;
}

.dark-mode .historia-texto h2{
    color: #4a9fd8;
}

.dark-mode .historia-texto p{
    color: white;
}

.historia-imagem {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.historia-imagem img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timeline-section {
    padding: 100px 0;
    background-color: #fff;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-header h2 {
    font-size: 36px;
    color: #0066a4;
    font-weight: 500;
    font-family: 'Poppins';
    margin-bottom: 20px;
}

.dark-mode .timeline-header h2{
    color: #4a9fd8;
}

.timeline-header p {
    font-size: 18px;
    font-family: 'Poppins';
    font-weight: 500;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
}

.dark-mode .timeline-header p{
    color: white;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #0377C0; /* Mudança para azul */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #fff;
    border: 4px solid #0377C0; /* Mudança para azul */
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -12px;
}

.timeline-item:nth-child(even)::after {
    left: -12px;
}

.timeline-content {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3{
    color: rgb(0, 0, 0);
}

.dark-mode .timeline-desc{
    color: white;
}

.dark-mode .timeline-content h3{
    color: white;
    font-weight: 500;
}

.timeline-date {
    font-weight: 600;
    color: #0377C0; /* Mudança para azul */
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #343a40;
}

.timeline-desc {
    font-weight: 500;
    font-size: 16px;
    font-family: 'Poppins';
    line-height: 1.6;
    color: #1d2023;
}

/* Modificação da seção de equipe para ficar consistente com a página inicial */
.equipe-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.equipe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.equipe-header {
    text-align: center;
    margin-bottom: 60px;
}

.equipe-header h2 {
    font-size: 36px;
    color: #343a40;
    margin-bottom: 20px;
}

.equipe-header p {
    font-size: 18px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.equipe-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.membro-card {
    width: 280px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e6e6e6; /* Adicionando borda leve como nos cards da página inicial */
}

.membro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.membro-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.membro-info {
    padding: 20px;
    text-align: center;
}

.membro-nome {
    font-size: 22px;
    margin-bottom: 5px;
    color: #343a40;
}

.membro-cargo {
    color: #0377C0; /* Mudança para azul */
    font-weight: 600;
    margin-bottom: 15px;
}

.membro-desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.membro-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.membro-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #0377C0; /* Mudança para azul */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.membro-social a:hover {
    background-color: #0261A0; /* Cor de hover ajustada */
}

/* Redesign da seção de valores para corresponder aos cards da página inicial */
.valores-section {
    padding: 100px 0;
    background-color: #fff;
}

.valores-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.valores-header {
    text-align: center;
    margin-bottom: 60px;
}

.valores-header h2 {
    font-size: 36px;
    font-family: 'Poppins';
    color: rgb(0, 102, 164);
    font-weight: 500;
    margin-bottom: 20px;
}

.valores-header p {
    font-size: 18px;
    color: #2d2f31;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Poppins';
}

.dark-mode .valores-header p{
    color: white;
}

/* Modificação mais significativa para se assemelhar aos cards da página inicial */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.valor-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
    border: 1px solid #e6e6e6;
}

.valor-card:hover {
    transform: translateY(-5px);
}

.valor-icon {
    width: 70px;
    height: 70px;
    background-color: #f0f8ff; /* Fundo azul claro */
    color: #0377C0; /* Ícone azul */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.valor-titulo {
    color: #247cd8;
    font-size: 22px;
    font-family: 'Poppins';
    margin-bottom: 15px;
    font-weight: 500;
}

.valor-desc {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('caminho-para-sua-imagem.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

.dark-mode .cta-section {
    background-color: #151515;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #0377C0;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(66, 153, 225, 0.5);
}

.cta-btn:hover {
    background-color: #0261A0;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.7);
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: 'Poppins';
    font-weight: 300;
}



/* Responsividade */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .timeline::before {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::after {
        left: 18px;
    }

    .timeline-item:nth-child(odd)::after {
        right: auto;
        left: 18px;
    }
}

/* Modificações para todos os tipos de cards (valor-card, membro-card, etc.) */

/* Estilo base para cards com efeito neon */
.valor-card, .membro-card, .timeline-content {
    background-color: rgb(255 255 255 / 95%);
    border: 1px solid rgba(66, 153, 225, 0.6);
    box-shadow: 0 0 15px rgba(66, 153, 225, 0.35);
    transition: all 0.3s ease;
    color: #343a40;
}

.valor-card:hover, .membro-card:hover, .timeline-content:hover {
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.55);
    transform: translateY(-5px);
}

/* Dark mode para os cards */
.dark-mode .valor-card, 
.dark-mode .membro-card,
.dark-mode .timeline-content {
    background-color: rgba(18, 24, 38, 0.95);
    color: #e6e6e6;
}

/* Ajustes para botões */
.cta-btn, .hero-btn, .saiba-mais {
    border: 1px solid rgba(66, 153, 225, 0.7);
    color: #fff;
    background-color: #0377C0;
    transition: all 0.3s ease;
}

.cta-btn:hover, .hero-btn:hover, .saiba-mais:hover {
    background-color: rgba(66, 153, 225, 0.85);
    box-shadow: 0 0 10px rgba(66, 153, 225, 0.5);
}

/* Modificações específicas para os cards de valor */
.valor-card {
    padding: 30px;
    text-align: center;
}

.valor-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(66, 153, 225, 0.15);
    color: #0377C0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.valor-titulo {
    color: #247cd8;
    font-size: 22px;
    margin-bottom: 15px;
}

.valor-desc {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    font-family: 'Poppins';
}

.dark-mode .valor-desc {
    color: white;
}

/* Ajustes para a grade de valores */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modificações para os cards de serviços na seção de compromisso */
.reformas, .retrofit, .construcao, 
.projetos, .gerenciamento, .consultorias {
    background-color: rgb(255 255 255 / 95%);
    border: 1px solid rgba(66, 153, 225, 0.6);
    box-shadow: 0 0 15px rgba(66, 153, 225, 0.35);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    color: #343a40;
}

.dark-mode .reformas, 
.dark-mode .retrofit, 
.dark-mode .construcao,
.dark-mode .projetos, 
.dark-mode .gerenciamento, 
.dark-mode .consultorias {
    background-color: rgba(18, 24, 38, 0.95);
    color: #e6e6e6;
}

/* Efeito hover para cards de serviços */
.reformas:hover, 
.retrofit:hover, 
.construcao:hover,
.projetos:hover, 
.gerenciamento:hover, 
.consultorias:hover {
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.55);
    transform: translateY(-2px);
}

/* Estilo para botões Saiba Mais */
.saiba-mais {
    border: 1px solid rgba(66, 153, 225, 0.7);
    color: #4299e1;
    background-color: transparent;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.saiba-mais:hover {
    background-color: rgba(66, 153, 225, 0.15);
    color: #247cd8;
}

.dark-mode .saiba-mais {
    color: #4299e1;
    border-color: rgba(66, 153, 225, 0.7);
}

.dark-mode .saiba-mais:hover {
    background-color: rgba(66, 153, 225, 0.25);
}

/* Novo botão de orçamento compatível com dark mode */
.orcamento-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #0377C0;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(66, 153, 225, 0.5);
    border: 1px solid rgba(66, 153, 225, 0.7);
}

.orcamento-btn:hover {
    background-color: #0261A0;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.7);
}

/* Estilos específicos para dark mode */
.dark-mode .orcamento-btn {
    background-color: #0377C0;
    color: #ffffff;
    border-color: rgba(66, 153, 225, 0.7);
}

.dark-mode .orcamento-btn:hover {
    background-color: #0261A0;
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.7);
}

.cta-section {
    padding: 100px 0;
    background: white;    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    transition: background-color 0.3s ease;
}

.dark-mode .cta-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background: aquamarine;
}

.cta-container h2{
    font-size: 36px;
    font-family: 'Poppins';
    color: rgb(0, 102, 164);
    font-weight: 500;
    margin-bottom: 20px;
}

.dark-mode .cta-container p{
    color: white;
    
}

.showcase-cta {
    border-left: 4px solid #244c6f;
}