@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('header.css');
@import url('home.css');
@import url('menu.css');
@import url('testimonials.css');
@import url('footer.css');

@keyframes slideInAndRotate {
    from {
        transform: translateX(-100px) rotate(43.487deg);
        opacity: 0;
    }
    to {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}


:root {
    --primary-color: #002f4b;
    --secondary-color: #ff4d00;
    --text-color: #333;
    --background-light: #fff;
  }

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}


section {
    padding: 50px;
    text-align: center;
}

.btn-default {
    border: 10px;
    display: flex;
    align-items: center;
    color: white;
    justify-content: center;
    background-color: #244c6f;
    border-radius: 12px;
    padding: 12px 15px;
    font-weight: 600;
    box-shadow: 5px 5px 19px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3sease;
}

.btn-default:hover {
    background-color:#244c6f ;
}

.social-media-buttons {
    display: flex;
    gap: 18px;
}

.social-media-buttons a {
    display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
        transition: all 0.3sease;
}

.social-media-buttons a:hover {
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}



.section-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}
  
  

.section-subtitle {
    color: #0066a4;
    font-size: 1.5rem;
    font-family: 'Poppins';
    font-weight: 400;
} 

#projects {
    text-align: center;
    padding: 50px 0;
    background: #000000;
}

#projects h2 {
    font-size: 2rem;
    color: black;
    font-weight: bold;
    margin-bottom: 20px;
}

.project-carousel {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 10px;
}







.slick-prev, .slick-next {
    background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro semi-transparente */
    color: white; /* Deixa as setas brancas */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

 /* Personalização dos botões */
 .slick-prev, .slick-next {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.slick-prev:hover, .slick-next:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Fundo mais escuro ao passar o mouse */
}


.slick-prev:before, .slick-next:before {
    color: white;
    font-size: 20px;
}


.carousel-item {
    width: 100%;
    height: 400px; /* Mantendo altura fixa para todas */
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantém proporção sem distorcer */
    border-radius: 10px;
}




/* Container centralizado */


/* Logo */
.logo {
    width: 150px;
    margin-bottom: 10px;
}

/* Título principal */
.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.about-title h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.about-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
}

.highlight {
    color: #f4a020;
    font-weight: bold;
}

/* Layout em três colunas */
.about-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Estilização dos blocos */
.about-box {
    background: none;
    padding: 20px;
    flex: 1;
    text-align: left;
}

.about-box h3 {
    font-size: 20px;
    color: #f4a020;
    margin-bottom: 10px;
}

/* Lista estilizada */
.about-box ul {
    list-style: none;
    padding: 0;
}

.about-box li {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

/* Adiciona os bullets estilizados */
.about-box li::before {
    content: "•";
    color: #f4a020;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Responsividade */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    
    .about-box {
        text-align: center;
    }
}


.section-divider {
    width: 100%;
    height: 3px;
    background-color: white; /* Linha branca */
    margin: 40px 0; /* Espaçamento para não ficar colado */
    opacity: 0.5; /* Deixa a linha mais sutil */
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

#sobre-nos {
    padding: 120px 20px 100px;
    position: relative;
}

#sobre-nos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0056b3, #4a8fe7, #0056b3);
}

.sobre-nos-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
}

.sobre-nos-imagem {
    flex: 1;
    min-width: 400px;
    animation: fadeInLeft 1s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.sobre-nos-imagem img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.sobre-nos-imagem img:hover {
    transform: scale(1.03);
}

.sobre-nos-texto {
    flex: 1;
    min-width: 400px;
    animation: fadeInRight 1s ease-out;
    padding: 20px 0;
}

@media (max-width: 992px) {
    .sobre-nos-container {
        flex-direction: column;
    }
    
    .sobre-nos-imagem, .sobre-nos-texto {
        width: 100%;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.sobre-nos-texto h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
    position: relative;
}

.sobre-nos-texto h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: -webkit-fill-available;
    height: 3px;
    background-color: #0056b3;
}

.sobre-nos-texto p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}



.card {
    background-color: #e6e6e6;
    box-shadow: inset -20px 13px 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    max-width: 300px;
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.card p{
    color: #555;
}

.card h3 {
    font-size: 1.5rem;
    color: #244c6f;
}

.card ul {
    list-style: none;
    padding: 0;
}

.card ul li {
    font-size: 1rem;
    margin: 5px 0;
    color: #555;
}

@media (max-width: 768px) {
    #missao-visao-valores {
        flex-direction: column;
        align-items: center;
    }
}

#missao-visao-valores {
    padding: 90px 20px 100px;
    position: relative;
    z-index: 1;
    background-color: #fafafa;
}

#missao-visao-valores::before {
    content: 'Nossos Objetivos';
    display: block;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

#missao-visao-valores::after {
    content: '';
    position: absolute;
    width: -webkit-fill-available;
    height: 3px;
    background-color: #0056b3;
    bottom: auto;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
}

/* Container para os cards */
#missao-visao-valores .cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

#missao-visao-valores .card {
    background-color: #e6e6e6;
    box-shadow: inset -20px 13px 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    max-width: 300px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    border-top: 4px solid transparent;
    transition: all 0.4s ease;
    overflow: hidden;
}

#missao-visao-valores .card:nth-child(1) {
    border-top-color: #2196f3; /* Azul para Missão */
}

#missao-visao-valores .card:nth-child(2) {
    border-top-color: #4caf50; /* Verde para Visão */
}

#missao-visao-valores .card:nth-child(3) {
    border-top-color: #ff9800; /* Laranja para Serviços */
}

#missao-visao-valores .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#missao-visao-valores .card:hover .mvv__icon {
    transform: translateY(-5px);
}


#missao-visao-valores .card:hover .mvv__icon::after {
    transform: scale(1.5);
}

.mvv__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, #fbf5f5, #0089ff);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mvv__icon img {
    width: 40px;
    height: auto;
}

#missao-visao-valores h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

#missao-visao-valores h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #0056b3;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

#missao-visao-valores p {
    font-size: 15px;
    line-height: 1.7;
    font-family: 'Poppins';
    color: #666;
    margin-bottom: 15px;
}

#missao-visao-valores ul {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%;
}

#missao-visao-valores ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}


#missao-visao-valores ul li:hover {
    transform: translateX(5px);
}


#missao-visao-valores ul li:before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #0056b3;
    font-size: 18px;
    transition: color 0.3s ease;
}

#missao-visao-valores .service-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

#missao-visao-valores .service-link:hover {
    color: #0056b3;
}


#missao-visao-valores ul li:hover:before {
    color: rgb(0 86 179);
}

#missao-visao-valores + footer {
    margin-top: 40px;
}

/* Responsividade */
@media (max-width: 992px) {
    #missao-visao-valores::before {
        font-size: 28px;
    }
    
    #missao-visao-valores .cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    #missao-visao-valores .card {
        width: 80%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    #missao-visao-valores {
        padding: 70px 15px 80px;
    }
    
    #missao-visao-valores::before {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    #missao-visao-valores::after {
        top: 120px;
    }
    
    #missao-visao-valores .card {
        width: 100%;
    }
}


.mvv__icon i {
    transform: rotate(-43.487deg); /* Corrige a rotação do ícone */
    font-size: 40px;
    color: white;
}

.mvv__icon.show {
    transform: rotate(45deg) translateX(0);
    opacity: 1;
    background: linear-gradient(314deg, #9187d7, #0089ff);;
}


.service-link {
    text-decoration: none;
    color: #244c6f; /* Cor escura para destaque */
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.service-link:hover {
    color: #244c6f; /* Cor ao passar o mouse */
    text-decoration: underline;
}

.mvv__icon img {
    width: 50px;
    height: 50px;
}

.mvv__icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 86, 179, 0.1);
    z-index: -1;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.mvv__icon:hover {
    transform: scale(1.1); /* Pequeno efeito de zoom */
    transition: transform 0.3s ease-in-out;
}



.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 3rem;
    margin: 10px 0;
}

h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #002244;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #004488;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}


body {
    overflow-x: hidden;
}
.hero {
    position: relative;
    width: -webkit-fill-available;
    height: 55vh;
    background: url("../images/obra2.jpeg") no-repeat center center;    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/obra1.jpeg") no-repeat center center;    background-size: cover;
}


.content {
    position: relative;
    max-width: 600px;
}

h3 {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
}
h1 {
    font-size: 52px;
    font-weight: bold;
    margin: 10px 0;
}
p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
}


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        body {
            overflow-x: hidden;
        }
       
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }
        .content {
            position: relative;
            max-width: 800px;
            padding: 20px;
        }
        h3 {
            font-size: 18px;
            letter-spacing: 2px;
            font-weight: 300;
        }
        h1 {
            font-size: 48px;
            font-weight: bold;
            margin: 10px 0;
        }
        p {
            color: #000000;
            font-size: 0.95rem;
            line-height: 1.6;
            flex-grow: 1;
            display: block;
            margin-bottom: 25px;
        }
      

        .image-container {
            flex: 1;
            display: flex;
            justify-content: center;
         
          }
          
          
        .info-section {
            display: flex;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
    text-align: center;
    padding: 50px;
    margin: auto;
        }
        .info-text {
            flex: 1;
            padding-right: 40px;
        }
        
        .info-image {
            flex: 1;
            text-align: center;
        }
        .info-image img {
            max-width: 115%;
            border-radius: 10px;
            max-height: 200px;
            vertical-align: middle;
            display: flex;
        }

        .text-content {
            flex: 1;
            max-width: 400px;
          }
          
          .text-content h1 {
            font-size: 2rem;
            font-weight: bold;
            color: var(--text-color);
            margin-bottom: 10px;
          }
          
          .text-content p {
            font-size: 1rem;
            color: var(--text-color);
            line-height: 1.5;
            margin-bottom: 20px;
          }

          .button {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
          }
          
          .button svg {
            margin-right: 8px;
          }

        .benefits {
  flex: 1;
  max-width: 400px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  

      

        .benefit-icon {
            color: var(--secondary-color);
            font-size: 24px;
            margin-right: 10px;
          }

        .benefit-item img {
            width: 150px;
            height: max-content;
            align-self: baseline;
            margin-right: 30px;        
        }
        .benefit-item h4 {
            font-size: 18px;
            font-weight: 600;
            color: #244c6f;
            margin-bottom: 5px;
            font-family: 'Poppins';
        }
        .benefit-item p {
            font-size: 14px;
            color: #555;
            font-family: 'Poppins';
            line-height: 1.4;
        }

        .benefit-text h3 {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--text-color);
            margin-bottom: 5px;
          }
          
          .benefit-text p {
            font-size: 1rem;
            color: var(--text-color);
          }
          

       

        /* Aplica o fundo escuro a toda a página */
.dark-mode {
    background-color: #121212;
    color: #ffffff;
}

/* Afeta todas as seções para ficarem escuras */
.dark-mode section,
.dark-mode main,
.dark-mode .servicos-container { /* Adapte esse seletor conforme o nome da classe dessa seção */
    background-color: #151515 !important;
    color: #ffffff;
}

/* Cartões de serviço no modo escuro */
.dark-mode .card {
    background-color: #252525 !important;
    color: #ffffff;
    border: 1px solid #333;
}

/* Estilo para os botões dentro dos cards */
.dark-mode .card button {
    background-color: #333 !important;
    color: #fff !important;
    border: 1px solid #555;
}

.dark-mode .card button:hover {
    background-color: #444 !important;
}

.dark-mode .banner {
    background-image: none; /* Remove a imagem no Dark Mode */
    background-color: #222222; /* Cor de fundo alternativa */
}

.dark-mode .banner .btn {
    background-color: #244c6f; /* Azul escuro */
    color: white;
}

.dark-mode .banner .btn:hover {
    background-color: #1a374d; /* Azul mais escuro no hover */
}

.banner.dark-mode {
    background-color: #111 !important;
}

.dark-mode .banner h1,
.dark-mode .banner p {
    color: #ffffff; /* Deixa o texto branco no Dark Mode */
}


#dark_mode_toggle {
    background: #244c6f;
    border: none;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

#dark_mode_toggle i {
    color: white;
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Efeito de hover */
#dark_mode_toggle:hover {
    background: #1a3a56;
    transform: scale(1.1);
}

/* Animação ao ativar o modo escuro */
.dark-mode #dark_mode_toggle {
    background: #f8f8f8;
}

.dark-mode #dark_mode_toggle i {
    color: #244c6f;
    transform: rotate(180deg);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1e3a5f; /* Amarelo do Sol */
    border-radius: 34px;
    transition: background-color 0.4s ease-in-out;
    display: flex;
    align-items: center;
    padding: 5px;
    overflow: hidden;
}

.slider img {
    width: 22px;
    height: 22px;
    position: absolute;
    transition: transform 0.5s ease-in-out, opacity 0.4s ease-in-out;
}

/* Sol começa visível */
.sun-icon {
    left: 5px;
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Lua começa oculta */
.moon-icon {
    left: 5px;
    opacity: 0;
    transform: translateX(-30px) scale(0.8);
}

/* Quando o modo escuro é ativado */
input:checked + .slider {
    background-color: #444; /* Cinza escuro */
}

/* Sol desliza para fora e some */
input:checked + .slider .sun-icon {
    opacity: 0;
    transform: translateX(30px) scale(0.5);
}

/* Lua desliza para dentro e aparece */
input:checked + .slider .moon-icon {
    opacity: 1;
    transform: translateX(0) scale(1);
}


#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px; /* Espessura da barra */
    background-color: #244c6f; /* Cor da barra */
    z-index: 9999;
    transition: width 0.2s ease-out;
}

.project-carousel {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 10px;
}



.carousel-item {
    width: 100%;
    height: 400px; /* Mantendo altura fixa para todas */
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantém proporção sem distorcer */
    border-radius: 10px;
}

.project-carousel {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


body.dark-mode .sobre-nos-texto p{
    color: white;
}

body.dark-mode .sobre-nos-texto{
    color: white;
}

body.dark-mode .sobre-nos-texto h2{
    color: white;
}

.dark-mode #missao-visao-valores::before{
    color: white;
    font-family: 'Poppins';
    font-weight: 400;
}

.dark-mode #missao-visao-valores h3{
    color: white;
}

.dark-mode #missao-visao-valores p{
    color: white;
    font-family: 'Poppins';

}

.dark-mode #missao-visao-valores ul{
    color: white;
}

.dark-mode #missao-visao-valores .service-link{
    color: white;
}

/* Estilos para o título e seção do carrossel */
.project-gallery {
    padding: 50px 0;
    position: relative;
    background-color: #f8f8f8;
}

.project-gallery h2 {
    text-align: center;
    font-size: 2.2rem;
    margin: 30px;
    position: relative;
    font-family: 'Poppins';
    color: #333;
    font-weight: 400;
}

.project-gallery h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: -webkit-fill-available;    
    height: 4px;
    background-color: #0056b3;
    border-radius: 2px;
}



/* Estilo do slider que contém todos os slides */
.project-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Itens individuais do carrossel */
.project-item {
    padding: 0 15px;
    flex: 0 0 20%;
    box-sizing: border-box;
}

.project-image-container {
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover .project-image-container img {
    transform: scale(1.05);
}

/* Informações do projeto */
.project-info {
    padding: 20px;
    background-color: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.project-info h3 {
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.3rem;
    line-height: normal;
    text-align: center;
}

.project-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Botões de navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: #003d82;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* Botão Saiba Mais */
.btn-leia-mais {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 auto;
    width: 100%;
}

.btn-leia-mais i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-leia-mais:hover {
    color: #003d82;
}

.btn-leia-mais:hover i {
    transform: translateX(5px);
}

/* Media queries para responsividade */
@media (max-width: 1200px) {
    .project-item {
        flex: 0 0 25%; /* 4 itens visíveis */
    }
}

@media (max-width: 992px) {
    .project-item {
        flex: 0 0 33.333%; /* 3 itens visíveis */
    }
}

@media (max-width: 768px) {
    .project-item {
        flex: 0 0 50%; /* 2 itens visíveis */
    }
    
    .project-gallery h2 {
        font-size: 1.8rem;
    }
}



/* Dark Mode Abaaxio  */


.dark-mode .project-gallery h2{ 
    text-align: center;
    font-size: 2.2rem;
    margin: 30px;
    position: relative;
    font-family: 'Poppins';
    color: #ffffff;
    font-weight: 400;
}

.dark-mode .project-info{
    background-color: #1e1c1c;
}

.dark-mode .project-info h3{
    color: #ffffff
}

.dark-mode .project-info p{
    color: white;
}


.about-execution {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    position: relative;
}
  
.section-title:after {
    content: '';
    display: block;
    width: -webkit-fill-available;    
    height: 3px;
    background-color: #2f96e6;
    margin: 15px auto 0;
}
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
 
  
  .feature-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1.5rem;
  }
  
  .feature-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .feature-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
  }

  .intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}.f
  .cta-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #2980b9;
  }
  
  @media (max-width: 768px) {
    .feature-grid {
      grid-template-columns: 1fr;
    }
    
    .section-title {
      font-size: 2rem;
    }
  }

  .dark-mode .intro-text{
    color: white;
  }

  :root {
    --color-primary: #3B82F6;
    --color-primary-dark: #2563EB;
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-700: #374151;
    --color-gray-900: #111827;
}

.contact-body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-gray-50);
    color: var(--color-gray-900);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 24rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 76rem;
    margin: 0 auto;
    padding: 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    overflow: hidden;
}

.contact-form-section {
    padding: 3rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: var(--color-gray-700);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-gray-700);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    outline: none;
}

.form-group textarea {
    min-height: 8rem;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-content h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #f0f4ff;
    padding: 1rem;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.contact-info-item:hover {
    background-color: #e6eeff;
}


.contact-icon {
    width: 48px;
    height: 48px;
    background-color: #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon {
    background-color: var(--color-primary);
}

.email-icon {
    background-color: #10B981;
}

.address-icon {
    background-color: #6366F1;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
}

.contact-info-text p:first-child {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 0.25rem;
}

.contact-info-text p:last-child {
    font-size: 1rem;
    color: #1F2937;
    font-weight: 500;
}

.operating-hours h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.hours-card {
    background-color: white;
    border: 1px solid var(--color-gray-200);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.hours-row:last-child {
    margin-bottom: 0;
}

.hours-row .closed {
    color: #EF4444;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}



.contact-icon i {
    font-size: 1.5rem;
}

.phone-icon {
    background-color: var(--color-primary);
}

.email-icon {
    background-color: #10B981;
}

.address-icon {
    background-color: #6366F1;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary); /* ou a cor de fundo que você preferir */
}

.contact-icon-image {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.contact-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}


/* CSS para a página de Retrofit */

/* Estilos gerais */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #0066a4;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Estilos específicos para a seção principal */
.main-info-section {
    padding: 80px 0 60px;
    background-color: #f7f9fc;
}

.info-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.info-text {
    flex: 1;
}

.info-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.info-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.info-image img:hover {
    transform: scale(1.03);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    background-color: #244c6f;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 10px;
}

.btn-cta img {
    width: 20px;
    height: 20px;
}

.btn-cta:hover {
    background-color: #1a3a57;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Estilos para a seção de processo */
.retrofit-process {
    padding: 80px 0;
    background-color: white;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 25px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid #244c6f;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #244c6f;
    opacity: 0.8;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    color: #244c6f;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.5;
}

/* Estilos para a seção de benefícios */
.benefits-section {
    padding: 80px 0;
    background-color: #f7f9fc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}



.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon img {
    width: 70px;
    height: 70px;
}

.benefit-content h3 {
    color: #244c6f;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
}

/* Estilos para a seção de tipos de retrofit */
.retrofit-types {
    padding: 80px 0;
    background-color: white;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.type-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #244c6f;
}

.type-card:hover {
    background-color: #244c6f;
    color: white;
    transform: translateY(-5px);
}

.type-icon {
    font-size: 2.5rem;
    color: #244c6f;
    margin-bottom: 20px;
}

.type-card:hover .type-icon {
    color: white;
}

.type-card h3 {
    margin-bottom: 15px;
    font-family: 'Poppins';
    font-weight: 600;
}

.type-card p {
    line-height: 1.6;
    color: black;
    
    font-family: 'Poppins';
    font-weight: 300;
}

.dark-mode p{
    color: rgb(0, 0, 0);
}

.dark-mode .timeline-content{
    color: black;
    background-color: rgba(18, 24, 38, 0.95);
    color: #e6e6e6;
    border: 1px solid rgb(11 131 231 / 60%);
    box-shadow: 0 0 22px rgb(0 140 255 / 35%);
    transition: all 0.3s ease;
}

.type-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Estilos para a seção CTA */
.cta-section {
    padding: 80px 0;
    background-color: #244c6f;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}



.btn-cta-large {
    display: inline-block;
    background-color: white;
    color: #244c6f;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #f3f3f3;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Media queries para responsividade */
@media (max-width: 992px) {
    .info-content {
        flex-direction: column;
    }
    
    .info-text, .info-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .benefit-item, .type-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .main-info-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .process-steps {
        gap: 15px;
    }
    
    .step {
        padding: 15px;
        gap: 15px;
    }
    
    .step-number {
        font-size: 2rem;
        min-width: 40px;
    }
}


/* Estilos específicos para a página de construção */
.construction-process .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.construction-types .types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.type-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.type-icon {
    background-color: #244c6f;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.construction-gallery {
    padding: 5rem 0;
    background-color: #f7f9fc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.quality-markers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
}

.quality-marker {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    width: 48%;
}

.marker-icon {
    background-color: #244c6f;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.marker-content h4 {
    margin: 0 0 0.5rem;
    color: #244c6f;
}

.marker-content p {
    margin: 0;
    color: #555;
}

@media (max-width: 768px) {
    .quality-marker {
        width: 100%;
    }
}

/* gerenciamento.css */

/* Estilos gerais para a página de Gerenciamento de Projetos e Obras */
:root {
    --primary-color: #244c6f;
    --secondary-color: #1a3a59;
    --accent-color: #4a90e2;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #777;
    --white: #fff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seção principal de informações */
.main-info-section {
    padding: 80px 0;
    background-color: var(--white);
}

.info-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    margin-bottom: 20px;
    line-height: 1.3;
}

.info-text p {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.btn-cta:hover {
    background-color: var(--secondary-color);
}

/* Seção de fases de gerenciamento */
.fases-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--dark-gray);
    font-size: 18px;
}

.fases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.fase-item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.fase-item:hover {
    transform: translateY(-5px);
}

.fase-numero {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-right: 15px;
    line-height: 1;
}

.fase-content h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.fase-content p {
    color: var(--dark-gray);
    font-size: 16px;
}

/* Seção de diferenciais */
.diferenciais-section {
    padding: 80px 0;
    background-color: var(--white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.diferencial-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-5px);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diferencial-icon img {
    max-width: 100%;
    max-height: 100%;
}

.diferencial-item h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.diferencial-item p {
    color: var(--dark-gray);
    font-size: 16px;
}

/* Seção CTA */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}



.btn-cta-large {
    display: inline-flex;
    align-items: center;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta-large i {
    margin-right: 10px;
    font-size: 20px;
}

.btn-cta-large:hover {
    background-color: var(--light-gray);
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 992px) {
    .info-content {
        flex-direction: column;
    }
    
    .info-text, .info-image {
        width: 100%;
    }
    
    .fases-grid, .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fases-grid, .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .main-info-section, .benefits-section, .fases-section, .diferenciais-section, .cta-section {
        padding: 50px 0;
    }
    
    .btn-cta, .btn-cta-large {
        width: 100%;
        justify-content: center;
    }
}

/* consultoria-laudos.css */

/* Hero Section */
.hero-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    color: #244c6f;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #244c6f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #1a3a57;
    transform: translateY(-2px);
}

.btn-cta img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #244c6f;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 70px;
    height: 70px;
}

.service-card h3 {
    color: #244c6f;
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    background-color: #244c6f;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #244c6f;
    font-size: 20px;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}



.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.benefit-icon img {
    width: 60px;
    height: 60px;
}

.benefit-content h3 {
    color: #244c6f;
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #244c6f;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 500;
    font-family: 'Poppins';
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
    font-family: 'Poppins';
    margin-bottom: 30px;
    color: rgb(255 255 255 / 1000%);
    font-weight: 500;
}

.btn-cta-large {
    display: inline-block;
    padding: 15px 40px;
    background-color: #0377C0;
    color: #ffffff;
    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);
}

.btn-cta-large:hover {
    background-color: #0261A0;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.7);
}

.btn-cta-large i {
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .btn-cta-large {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* Dark Mode Support */
body.dark-mode .hero-section {
    background-color: #1a1a1a;
}

body.dark-mode .hero-text h1 {
    color: #a8c7e9;
}

body.dark-mode .hero-text p,
body.dark-mode .service-card p,
body.dark-mode .step-content p,
body.dark-mode .benefit-content p {
    color: #cdcdcd;
}

body.dark-mode .section-header h2 {
    color: #4a9fd8;
    margin-bottom: 10px;
    font-family: 'Poppins';
    font-weight: 500;
}

body.dark-mode .section-subtitle {
    color: white;
}

body.dark-mode .service-card,
body.dark-mode .process-step,
body.dark-mode .benefit-item {
    background-color: #2a2a2a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

body.dark-mode .service-card h3,
body.dark-mode .step-content h3,
body.dark-mode .benefit-content h3 {
    color: #a8c7e9;
}

body.dark-mode .services-section,
body.dark-mode .benefits-section {
    background-color: #1a1a1a;
}

body.dark-mode .process-section {
    background-color: #1a1a1a;
}

body.dark-mode .cta-section {
    background-color: #1a3a57;
}




/* Estilos para a Seção de FAQ */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-container {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    font-family: 'Poppins';
    color: #2c3e50;
    flex-grow: 1;
    font-weight: 500;
}

.faq-icon {
    color: #244c6f;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Responsividade */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        flex: 0 0 100%;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 20px;
    }
}


/* ====== Timeline Section ====== */
.timeline-section {
    padding: 5rem 0;
    background-color: #fff;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 4px;
    background-color: #e1e1e1;
}

.timeline-phase {
    position: relative;
    padding-left: 80px;
    margin-bottom: 2.5rem;
}

.phase-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.phase-icon {
    position: absolute;
    left: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #244c6f;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.phase-icon i {
    color: #fff;
    font-size: 18px;
}

.phase-header h3 {
    margin: 0;
    color: #244c6f;
    font-weight: 600;
    font-size: 1.2rem;
}

.phase-duration {
    background-color: #eef5ff;
    color: #244c6f;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-weight: 500;
    font-family: 'Poppins';
    font-size: 0.85rem;
    margin-left: 1rem;
}

.phase-content p {
    color: #555;
    line-height: 1.6;
    font-family: 'Poppins';
    margin: 0;
    font-weight: 500;
}

.timeline-note {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #244c6f;
}

.timeline-note p {
    margin: 0;
    color: #555;
    font-weight: bolder;
    font-size: 0.95rem;
}

/* ====== ROI Calculator Section ====== */
.roi-calculator-section {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

.calculator-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.calculator-inputs,
.calculator-results {
    padding: 2.5rem;
    width: 50%;
}

.calculator-inputs {
    background-color: #f2f7ff;
    border-right: 1px solid #e1e1e1;
}

.calculator-inputs h3,
.calculator-results h3 {
    color: #244c6f;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

.btn-calculate {
    background-color: #244c6f;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-calculate:hover {
    background-color: #1a3a57;
}

.result-card {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.result-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #244c6f;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.result-icon i {
    color: #fff;
    font-size: 18px;
}

.result-content h4 {
    margin: 0 0 0.2rem 0;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
}

.result-value {
    margin: 0;
    color: #244c6f;
    font-size: 1.4rem;
    font-weight: 700;
}

.calculator-disclaimer {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #fff9e6;
    border-radius: 5px;
    border-left: 4px solid #ffcc00;
}

.calculator-disclaimer p {
    margin: 0;
    color: #5a5a5a;
    font-size: 0.9rem;
}

.btn-cta-calculator {
    display: block;
    background-color: #244c6f;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta-calculator:hover {
    background-color: #1a3a57;
}

/* ====== Financing Section ====== */
.financing-section {
    padding: 5rem 0;
    background-color: #fff;
}

.financing-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.financing-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.financing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.financing-card.featured {
    border: 2px solid #244c6f;
    transform: scale(1.05);
}

.financing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.financing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #244c6f;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.financing-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #eef5ff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.financing-icon i {
    color: #244c6f;
    font-size: 24px;
}

.financing-card h3 {
    color: #244c6f;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.financing-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.financing-benefits {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.financing-benefits li {
    color: #555;
    margin-bottom: 0.5rem;
}

.btn-financing {
    display: inline-block;
    background-color: transparent;
    color: #244c6f;
    border: 2px solid #244c6f;
    text-decoration: none;
    text-align: center;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-financing:hover {
    background-color: #244c6f;
    color: #fff;
}

.financing-partners {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: center;
}

.financing-partners h3 {
    color: #244c6f;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partners-logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partners-logos img:hover {
    opacity: 1;
}

.financing-cta {
    max-width: 700px;
    margin: 4rem auto 0;
    text-align: center;
    background-color: #f2f7ff;
    padding: 2.5rem;
    border-radius: 10px;
}

.financing-cta h3 {
    color: #244c6f;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.financing-cta p {
    color: #555;
    margin-bottom: 1.5rem;
}

.btn-cta-financing {
    display: inline-block;
    background: linear-gradient(135deg, #0066a4, #4a9fd8);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 102, 164, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-financing:hover {
    background-color: #1a3a57;
}

/* ====== Responsive Styles ====== */
@media (max-width: 992px) {
    .calculator-container {
        flex-direction: column;
    }
    
    .calculator-inputs,
    .calculator-results {
        width: 100%;
    }
    
    .calculator-inputs {
        border-right: none;
        border-bottom: 1px solid #e1e1e1;
    }
    
    .financing-card {
        max-width: 100%;
    }
    
    .financing-card.featured {
        transform: none;
    }
    
    .financing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .phase-duration {
        margin: 0.5rem 0 0 0;
    }
    
    .partners-logos {
        gap: 1rem;
    }
    
    .partners-logos img {
        height: 30px;
    }
    
    .financing-cta {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-phase {
        padding-left: 60px;
    }
    
    .phase-icon {
        left: 2px;
        width: 35px;
        height: 35px;
    }
    
    .phase-icon i {
        font-size: 16px;
    }
}

/* Estilos para a Calculadora de Estimativas */
.calculator-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.calculator-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.calculator-form,
.calculator-results {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #244c6f;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #244c6f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(36, 76, 111, 0.1);
}

.btn-calculator {
    background-color: #244c6f;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    display: inline-block;
    text-align: center;
}

.btn-calculator:hover {
    background-color: #1a3a57;
}

.calculator-results {
    background-color: #f5f8fa;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #244c6f;
}

.calculator-results h3 {
    margin-top: 0;
    color: #244c6f;
    font-size: 22px;
    margin-bottom: 20px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.result-label {
    font-weight: 600;
    color: #555;
}

.result-value {
    font-weight: 700;
    color: #244c6f;
    font-size: 18px;
}

.calculator-disclaimer {
    font-size: 14px;
    color: #777;
    margin-top: 20px;
    font-style: italic;
}

/* Estilos para a seção FAQ */
.faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.faq-question {
    padding: 20px 25px;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #2c3e50;
    flex-grow: 1;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-icon.active {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background-color: #fff;
}

.faq-answer.active {
    padding: 20px 25px;
    max-height: 2000px; /* Valor alto para acomodar qualquer conteúdo */
}

.faq-answer p {
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.faq-answer ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer li strong {
    color: #2c3e50;
}

/* Estilos para a seção interativa */
.interactive-section {
    padding: 60px 0;
    background-color: #f0f7ff;
}

.interactive-tool {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.interactive-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.interactive-form h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #34495e;
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.btn-recommendation {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-recommendation:hover {
    background-color: #2980b9;
}

.recommendation-result {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.recommendation-result h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.3rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.recommendation-content {
    color: #555;
}

.recommendation-highlight {
    margin-top: 20px;
    padding: 15px;
    background-color: #e1f5fe;
    border-left: 4px solid #03a9f4;
    border-radius: 4px;
}

.recommendation-highlight h4 {
    color: #0288d1;
    margin-bottom: 10px;
}

.recommendation-details {
    margin-top: 20px;
}

.recommendation-details h5 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.recommendation-details ul {
    padding-left: 18px;
    margin-bottom: 15px;
}

.recommendation-details li {
    margin-bottom: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .interactive-tool {
        flex-direction: column;
    }
    
    .interactive-form,
    .recommendation-result {
        max-width: 100%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Estilos para a Seção Comparativo */
.comparison-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.comparison-table-container {
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

.comparison-header {
    display: flex;
    background-color: #244c6f;
    color: white;
}

.comparison-cell {
    padding: 20px;
    flex: 1;
}

.header-cell {
    text-align: center;
    padding: 25px 20px;
}

.header-cell h3 {
    color: #0089ff;
    font-family: 'Poppins';
    line-height: 1;
    font-weight: bold;
    margin: 5px;

}

.header-cell i {
    font-size: 2rem;
}

.with-management i {
    color: #4CAF50;
}

.without-management i {
    color: #F44336;
}

.empty-cell {
    flex: 0.6;
    background-color: #1a3a57;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.category-cell {
    flex: 0.6;
    background-color: #f5f5f5;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.with-management {
    background-color: #f0f7ff;
}

.without-management {
    background-color: #fff0f0;
}

.comparison-cta {
    text-align: center;
    margin-top: 40px;
}

.comparison-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.btn-cta {
    display: inline-block;
    padding: 15px 30px;
    background-color: #244c6f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #1a3a57;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta i {
    margin-right: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
    .comparison-header, .comparison-row {
        flex-direction: column;
    }
    
    .empty-cell {
        display: none;
    }
    
    .category-cell {
        text-align: center;
        padding: 15px;
    }
    
    .header-cell {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .with-management, .without-management {
        border-bottom: 1px solid #e0e0e0;
    }
}

/* Estilos para a seção da Calculadora de Estimativa */
.calculator-section {
    padding: 80px 0;
    background-color: #f5f9ff;
}

.calculator-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.calculator-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #244c6f;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #244c6f;
    outline: none;
    box-shadow: 0 0 0 2px rgba(36, 76, 111, 0.1);
}

.calculate-button {
    display: inline-block;
    background-color: #244c6f;
    color: white;
    border: none;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.calculate-button:hover {
    background-color: #1a3a57;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.calculate-button i {
    margin-right: 8px;
}

.calculator-results {
    flex: 1;
    min-width: 300px;
    background-color: #f0f7ff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #244c6f;
    display: none; /* Inicialmente oculto */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.calculator-results h3 {
    margin-top: 0;
    color: #244c6f;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ccc;
}

.result-item:last-of-type {
    border-bottom: none;
}

.result-label {
    font-weight: 500;
    color: #555;
}

.result-value {
    font-weight: 700;
    color: #244c6f;
}

.result-disclaimer {
    font-size: 14px;
    color: #777;
    margin-top: 20px;
    font-style: italic;
}

.btn-cta-small {
    display: inline-block;
    background-color: #244c6f;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-cta-small:hover {
    background-color: #1a3a57;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 76, 111, 0.2);
}

.btn-cta-small i {
    margin-right: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
    .calculator-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .calculator-results {
        margin-top: 20px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px;
    }
    
    .calculate-button {
        width: 100%;
    }
}

/* Estilos para a seção de Pré-Avaliação */
.pre-assessment-section {
    padding: 80px 0;
    background-color: #f0f7ff;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.assessment-form {
    flex: 2;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    background-color: #e1f0ff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    font-size: 20px;
}

.info-text h3 {
    margin-top: 0;
    margin-bottom: 5px;
    color: #333;
}

.info-text p {
    margin: 0;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.half {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #0056b3;
    outline: none;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #0056b3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-submit {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.btn-submit:hover {
    background-color: #003d82;
}

/* Ajustes responsivos */
@media (max-width: 992px) {
    .form-container {
        flex-direction: column;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot {
        left: 20px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Estilos para a seção Timeline */
.timeline-section {
    padding: 80px 0;
    background-color: #fff;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #0056b3;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 4px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #0056b3;
    border-radius: 50%;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -20px;
}

.timeline-date {
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 5px;
}

.timeline-content {
    padding: 20px;
    background-color: #f7f9fc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-family: 'Poppins';
    margin-top: 0px;
    font-weight: 500;
    color: rgb(51, 51, 51);
    margin-bottom: 12px;
    font-size: 20px;
}

.dark-mode .timeline-content h3{
    color: white;
}

.dark-mode .timeline-content p{
    margin: 0;
    color: #ffffff;
    font-family: 'Poppins';
    line-height: 1.6;
    font-weight: 500;
}

.timeline-content:hover{
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.55);
    transform: translateY(-5px);
}



.timeline-note {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-style: italic;
}

/* Estilos para a seção de Pré-Avaliação */
.pre-assessment-section {
    padding: 80px 0;
    background-color: #f0f7ff;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.assessment-form {
    flex: 2;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    background-color: #e1f0ff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    font-size: 20px;
}

.info-text h3 {
    margin-top: 0;
    margin-bottom: 5px;
    color: #333;
}

.info-text p {
    margin: 0;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.half {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #0056b3;
    outline: none;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #0056b3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-submit {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.btn-submit:hover {
    background-color: #003d82;
}

/* Ajustes responsivos */
@media (max-width: 992px) {
    .form-container {
        flex-direction: column;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot {
        left: 20px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.processo-trabalho-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.processo-timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
}

.processo-timeline {
    position: relative;
    padding: 20px 0;
}

.processo-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #3067A5;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.processo-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.processo-dot {
    min-width: 50px;
    height: 50px;
    background-color: #3067A5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 5px white;
}

.processo-content {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    width: 42%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-top: 25px; /* Espaço para o ponto */
}



.processo-item:nth-child(odd) .processo-content {
    margin-left: calc(50% + 30px);
}

.processo-item:nth-child(even) .processo-content {
    margin-right: calc(50% + 30px);
    margin-left: auto;
}

.processo-content h3 {
    font-family: 'Poppins';
    margin-top: 0px;
    font-weight: 500;
    color:rgb(51, 51, 51);
    margin-bottom: 12px;
    font-size: 20px;
}

.dark-mode .processo-content h3 {
    color: white;
}

.dark-mode .processo-content p{
    margin: 0;
    color: #ffffff;
    font-family: 'Poppins';
    line-height: 1.6;
    font-weight: 500;
}

.processo-content p {
    margin: 0;
    font-family: 'Poppins';
    line-height: 1.6;
    font-weight: 500;
    color: #666;
    line-height: 1.6;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .processo-timeline::before {
        left: 31px;
    }
    
    .processo-item .processo-dot {
        left: 31px;
        transform: none;
    }
    
    .processo-item .processo-content {
        width: calc(100% - 90px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
}


.reforma-cta-section {
    background-color: #234468; /* Um tom um pouco mais claro que o azul escuro original */
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.reforma-cta-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.reforma-cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Poppins';
    color: #ffffff;
    font-weight: 500;
}

.reforma-cta-section .cta-description {
    font-size: 16px;
    color: white;
    line-height: 1.6;
    font-weight: 500;
    font-family: 'Poppins';
    margin-bottom: 30px;
}

.reforma-cta-section .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #0377C0;
    color: #ffffff;
    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);
}

.reforma-cta-section .cta-button:hover {
    background-color: #0261A0;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.7);
}

.reforma-cta-section .cta-button i {
    margin-right: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
    .reforma-cta-section h2 {
        font-size: 28px;
    }
    
    .reforma-cta-section .cta-description {
        font-size: 16px;
    }
}


.showcase-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    background-color: #f9f9f9;
}

.showcase-container {
    max-width: 100%;
    margin: 0;
    position: relative;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 76, 111, 0.03) 0%, rgba(36, 76, 111, 0.01) 100%);
    z-index: 1;
}

.showcase-content {
    display: flex;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    min-height: 600px;
}

.showcase-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background-color: white;
    position: relative;
}

.showcase-text-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100%;
    background-color: white;
    transform: skew(-10deg);
    z-index: -1;
}

.showcase-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #244c6f;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
}



.showcase-text-wrapper {
    max-width: 500px;
}

.showcase-description {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.showcase-button {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 0;
    text-decoration: none;
}

.button-content {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #244c6f;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 18px 35px;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.button-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #3a6ea5 0%, #244c6f 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.showcase-button:hover .button-hover-effect {
    left: 0;
}

.showcase-button img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.showcase-image-container {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

.showcase-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.showcase-image-wrapper img {
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    object-fit: inherit;
    object-position: center;
    transition: transform 0.7s ease;
}

.showcase-image-container:hover .showcase-image-wrapper img {
    transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 1200px) {
    .showcase-text-container {
        padding: 60px;
    }
    
    .showcase-heading {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .showcase-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .showcase-text-container {
        padding: 60px 40px;
    }
    
    .showcase-text-container::after {
        display: none;
    }
    
    .showcase-image-wrapper {
        position: relative;
        height: 400px;
    }
}

@media (max-width: 767px) {
    .showcase-text-container {
        padding: 50px 25px;
    }
    
    .showcase-heading {
        font-size: 30px;
    }
    
    .showcase-description {
        font-size: 16px;
    }
    
    .showcase-image-wrapper {
        height: 300px;
    }
}

/* CSS para a seção de Retrofit com ajustes para nova imagem */
.retrofit-section {
    padding: 80px 0;
    background: linear-gradient(to right, #f8f9fa 50%, #e9ecef 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.retrofit-heading {
    text-align: center;
    margin-bottom: 50px;
}

.retrofit-heading h2 {
    color: #0066a4;
    font-family: 'Poppins';
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
}

.separator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator span {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #244c6f, #4a89dc);
    border-radius: 2px;
}

.retrofit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    min-height: 650px; /* Aumentei a altura mínima para acomodar a nova imagem */
}

.retrofit-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 30px;
    font-weight: 500;
}

.retrofit-benefits {
    margin-bottom: 30px;
}



.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #244c6f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.icon-wrapper i {
    color: white;
    font-size: 20px;
}

.benefit-info h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: 'Poppins';
    color: #247cd8;
}

.benefit-info p {
    color: #6c757d;
    line-height: 1.5;
}

.retrofit-cta {
    background-color: #f8f9fa;
    border-left: 4px solid #244c6f;
    padding: 20px;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.cta-text {
    margin-bottom: 15px;
    font-weight: 500;
    color: #495057;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: #244c6f;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary i {
    margin-right: 8px;
}

.btn-primary:hover {
    background-color: #1a3a57;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.retrofit-image {
    position: relative;
    height: 100%; /* Altura total do contêiner pai */
}

.image-container {
    position: absolute; /* Posicionamento absoluto para cobrir toda a área */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem cubra todo o contêiner */
    object-position: center; /* Centraliza a imagem */
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(36, 76, 111, 0.9), transparent);
    padding: 30px 20px 20px;
    color: white;
}

.image-container:hover img {
    transform: scale(1.05);
}

.project-label {
    display: inline-block;
    background-color: #4a89dc;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overlay-text h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.retrofit-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 20px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    color: #244c6f;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    color: #6c757d;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsividade */
@media (max-width: 992px) {
    .retrofit-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .retrofit-image {
        height: 500px; /* Altura fixa em dispositivos menores */
        position: relative;
        margin-bottom: 30px;
        order: -1;
    }
    
    .image-container {
        position: relative;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .retrofit-heading h2 {
        font-size: 28px;
    }
    
    .retrofit-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .retrofit-section {
        padding: 50px 0;
    }
    
    .retrofit-image {
        height: 400px;
    }
}

/* Estilos para a seção de construção */
.construction-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.construction-content {
    width: 100%;
}

.construction-heading {
    text-align: center;
    margin-bottom: 50px;
}

.construction-heading h2 {
    color: #0066a4;
    font-family: 'Poppins';
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
}

.separator {
    display: flex;
    justify-content: center;
    align-items: center;
}

.separator span {
    display: block;
    width: 80px;
    height: 4px;
    background-color: #244c6f;
}

.construction-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.construction-text {
    flex: 1;
}

.construction-intro {
    font-size: 1.1rem;
    color: black;
    font-family: 'Poppins';
    margin-bottom: 30px;
    line-height: 1;
    font-weight: 300;
}

.construction-benefits {
    margin-bottom: 30px;
}



.icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: #244c6f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.icon-wrapper i {
    color: white;
    font-size: 24px;
}

.benefit-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #244c6f;
}

.benefit-info p {
    color: #666;
    line-height: 1.5;
}

.construction-cta {
    background-color: #f0f4f8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #244c6f;
    text-align: center;
}

.cta-text {
    font-weight: 500;
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #244c6f;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1a3a57;
}

.construction-image {
    flex: 1;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
}

.project-label {
    display: inline-block;
    background-color: #244c6f;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.overlay-text h4 {
    margin: 0 0 5px;
    font-size: 18px;
}

.overlay-text p {
    margin: 0;
    font-size: 14px;
    color: white;
    opacity: 0.9;
}

.dark-mode .overlay-text p{
    color: white;
}

.construction-stats {
    display: grid
    ;
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
        gap: 20px;
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}


/* Responsividade */
@media (max-width: 992px) {
    .construction-grid {
        flex-direction: column;
    }
    
    .construction-text, .construction-image {
        width: 100%;
    }
    
    .construction-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stat-item {
        margin-bottom: 20px;
    }
}


/* Estilos para a seção de projetos */
.projects-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.projects-content {
    width: 100%;
}

.projects-heading {
    text-align: center;
    margin-bottom: 50px;
}

.projects-heading h2 {
    color: #244c6f;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}

.separator {
    display: flex;
    justify-content: center;
    align-items: center;
}

.separator span {
    display: block;
    width: 80px;
    height: 4px;
    background-color: #244c6f;
}

.projects-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.projects-text {
    flex: 1;
}

.projects-intro {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
}

.projects-benefits {
    margin-bottom: 30px;
}


.icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: #244c6f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.icon-wrapper i {
    color: white;
    font-size: 24px;
}

.benefit-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #247cd8;
    font-family: 'Poppins';
    font-weight: 500;
}

.benefit-info p {
    color: #666;
    font-weight: 600;
    line-height: 1.5;
}

.projects-cta {
    background-color: #f0f4f8;
    padding: 20px;
    border-left: 4px solid #244c6f;
    border-radius: 8px;
    text-align: center;
}

.cta-text {
    font-weight: 500;
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #244c6f;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1a3a57;
}

.projects-image {
    flex: 1;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
}

.project-label {
    display: inline-block;
    background-color: #244c6f;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.overlay-text h4 {
    margin: 0 0 5px;
    font-size: 18px;
}

.overlay-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.projects-stats {
    display: grid;
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
        gap: 20px;
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 992px) {
    .projects-grid {
        flex-direction: column;
    }
    
    .projects-text, .projects-image {
        width: 100%;
    }
    
    .projects-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stat-item {
        margin-bottom: 20px;
    }
}


/* Estilos para a seção de gerenciamento */
.management-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.management-content {
    width: 100%;
}

.management-heading {
    text-align: center;
    margin-bottom: 50px;
}

.management-heading h2 {
    color: #244c6f;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}

.separator {
    display: flex;
    justify-content: center;
    align-items: center;
}

.separator span {
    display: block;
    width: 80px;
    height: 4px;
    background-color: #244c6f;
}

.management-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.management-text {
    flex: 1;
}

.management-intro {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
}

.management-benefits {
    margin-bottom: 30px;
}


.icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: #244c6f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.icon-wrapper i {
    color: white;
    font-size: 24px;
}



.benefit-info p {
    color: #666;
    line-height: 1.5;
}

.management-cta {
    background-color: #f0f4f8;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #244c6f;
}

.cta-text {
    font-weight: 500;
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #244c6f;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1a3a57;
}

.management-image {
    flex: 1;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
}

.project-label {
    display: inline-block;
    background-color: #244c6f;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.overlay-text h4 {
    margin: 0 0 5px;
    font-size: 18px;
}

.overlay-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.management-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 20px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 992px) {
    .management-grid {
        flex-direction: column;
    }
    
    .management-text, .management-image {
        width: 100%;
    }
    
    .management-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stat-item {
        margin-bottom: 20px;
    }
}


/* Estilos para a seção de consultoria */
.consulting-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.consulting-content {
    width: 100%;
}

.consulting-heading {
    text-align: center;
    margin-bottom: 50px;
}

.consulting-heading h2 {
    color: #244c6f;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}

.separator {
    display: flex;
    justify-content: center;
    align-items: center;
}

.separator span {
    display: block;
    width: 80px;
    height: 4px;
    background-color: #244c6f;
}

.consulting-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.consulting-text {
    flex: 1;
}

.consulting-intro {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
}

.consulting-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    margin-bottom: 25px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: #244c6f;
    margin-bottom: 5px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.icon-wrapper i {
    color: white;
    font-size: 24px;
}



.benefit-info p {
    color: #666;
    line-height: 1.5;
}

.consulting-cta {
    background-color: #f0f4f8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #244c6f;
    text-align: center;
}

.cta-text {
    font-weight: 500;
    margin-bottom: 15px;
    font-family: 'Poppins';
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #0066a4, #4a9fd8);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 102, 164, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: #1a3a57;
}

.consulting-image {
    flex: 1;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
}

.project-label {
    display: inline-block;
    background-color: #244c6f;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.overlay-text h4 {
    margin: 0 0 5px;
    font-size: 18px;
}

.overlay-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.consulting-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 20px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 992px) {
    .consulting-grid {
        flex-direction: column;
    }
    
    .consulting-text, .consulting-image {
        width: 100%;
    }
    
    .consulting-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stat-item {
        margin-bottom: 20px;
    }
}

.dark-mode .faq-answer{
    color: black;
}

.dark-mode .type-card h3{
    color: white;
}

.dark-mode .type-card p{
    color: #111;
}

.dark-mode .phase-content p{
    color: white;
}

.dark-mode .phase-header h3{
    color: #379aef;
}

.dark-mode .phase-icon{
    color: #379aef;
}

.dark-mode .construction-cta{
    background-color: #2a2a2a;
}

.dark-mode .cta-text{
    color: white;
}

.dark-mode .benefit-info h3{
    color: #0089ff;
}

.dark-mode .benefit-info p{
    color: white;
}

.dark-mode .construction-stats{
    background-color: #2a2a2a;
}

.dark-mode .stat-number{
    color: rgb(74 159 216);
}

.dark-mode .stat-label{
    color: white;
}

.dark-mode .construction-intro{
    color: white;
}

.dark-mode .construction-heading h2{
    color: #0089ff;
}


.dark-mode .reforma-cta-section .cta-description{
    color: white;
}

.dark-mode .reforma-cta-section h2{
    color: #0089ff;
}

.dark-mode .consulting-heading h2{
    color: #0089ff;
}

.dark-mode .consulting-intro{
    color: white;
}

.dark-mode .consulting-cta{
    background-color: #2a2a2a;
}

.dark-mode .consulting-stats{
    background-color: #2a2a2a;
}

.dark-mode .cta-content h2{
    color: #0089ff;
}

.dark-mode .projects-cta{
    background-color: #2a2a2a;
}

.dark-mode .projects-stats{
    background-color: #2a2a2a;
}

.dark-mode .projects-heading h2{
    color: #0089ff;
}

.dark-mode .projects-intro{
    color: white;
}

.dark-mode .management-heading h2{
    color: #0089ff;
}

.dark-mode .management-intro{
    color: white;
}

.dark-mode .management-cta{
    background-color: #2a2a2a;
}

.dark-mode .management-stats{
    background-color: #2a2a2a;
}

.dark-mode .header-cell h3{
    color: #0089ff;
    font-family: 'Poppins';
    line-height: 1;
    font-weight: bold;
}

.dark-mode .comparison-cell .category-cell{
    color: black;
}

.dark-mode .category-cell{
    background-color: #151515;
}

.dark-mode .comparison-cta p{
    color: white;
}

/* Estilos para a seção de serviços */
.services-section {
    padding: 60px 0;
    background-color: white; /* Fundo escuro conforme mostrado na imagem */
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: #0066a4;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Poppins';
    font-weight: 500;
}

.section-subtitle {
    color: #000000;
    font-family: 'Poppins';
    font-size: 1.2rem;
    font-weight: 400;
}

/* Grid de serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cards individuais */
.service-card {
    background-color: #ffffff; /* Fundo escuro para os cards */
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Ícones dos serviços - AQUI ESTÁ A CORREÇÃO PRINCIPAL */
.service-icon {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    margin: 0 auto 20px; /* Margens automáticas nas laterais + espaço embaixo */
    width: 80px;
    height: 80px;
}

.service-icon img {
    max-width: 100%;
    max-height: 100%;
}

/* Títulos dos serviços */
.service-card h3 {
    color: #0099ff;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Poppins';
    text-transform: uppercase;
}

/* Descrições dos serviços */
.service-card p {
    color: #000000;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.dark-mode .retrofit-section{
    background: black;
}

.dark-mode .retrofit-heading h2{
    color: #0099ff;
}

.dark-mode .retrofit-intro{
    color: white;
}

.dark-mode .retrofit-cta{
    background-color: #2a2a2a;
}

.dark-mode .retrofit-stats{
    background-color: #2a2a2a;
 
}

/* Estilo para a seção showcase */
.showcase-section {
    width: 100%;
    background-color: #101214;
    color: #fff;
    padding: 50px 0;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.showcase-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 40px;
}

.showcase-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.showcase-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    font-weight: 700;
}



.showcase-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ccc;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    background-color: #1e2126;
    border-radius: 5px;
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0e4d7a;
    border-radius: 50%;
}

.feature-icon img {
    width: 25px;
    height: 25px;
}

.feature-text {
    flex: 1;
}

.feature-title {
    color: #0099ff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-description {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.4;
}

.project-info {
    background-color: #1e2126;
    border-radius: 5px;
    padding: 20px;
    margin-top: 15px;
    text-align: center;
}

.showcase-button {
    display: inline-block;
    background-color: #0066a2;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.showcase-button:hover {
    background-color: #0099ff;
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-content img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.showcase-image-container {
    flex: 1;
    position: relative;
}

.showcase-image-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.showcase-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-image-wrapper:hover img {
    transform: scale(1.05);
}

.project-executed {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.project-tag {
    color: #0099ff;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.project-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    background-color: #1e2126;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
}

.stat-item {
    flex: 1;
    padding: 0 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 500;
    color: rgb(74 159 216);
    margin-bottom: 5px;
    font-family: 'Poppins';
}

.stat-label {
    font-size: 1rem;
    color: #000000;
    font-family: 'Poppins';
    font-weight: 500;
}

/* Media queries para responsividade */
@media screen and (max-width: 992px) {
    .showcase-content {
        flex-direction: column;
    }
    
    .showcase-image-wrapper {
        height: 350px;
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .showcase-heading {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .feature-item {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
}
/* CSS para a seção de Reforma */
.showcase-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.showcase-heading {
    text-align: center;
    margin-bottom: 20px;
}

.showcase-heading h2 {
    color: #0066a4;
    font-family: 'Poppins';
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
}

.separator {
    text-align: center;
    margin: 0 auto;
}

.separator span {
    display: block;
    width: 80px;
    height: 3px;
    margin: 0 auto;
    background-color: #0099ff;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.showcase-intro {
    font-size: 1.1rem;
    color: black;
    font-family: 'Poppins';
    margin-bottom: 30px;
    line-height: 1;
    font-weight: 300;
}


.dark-mode .showcase-intro{
    color: white;
}

.showcase-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase-stats{
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 20px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dark-mode .showcase-stats{
    background-color: #2a2a2a;
}

.dark-mode .showcase-heading h2{
    color: #4a9fd8;
}


.dark-mode .type-card p{
    color: white;
    font-family: 'Poppins';
    font-weight: 300;
}


.dark-mode .processo-content{
    background-color: rgba(18, 24, 38, 0.95);
    color: #e6e6e6;
    border: 1px solid rgb(11 131 231 / 60%);
    box-shadow: 0 0 22px rgb(0 140 255 / 35%);
    transition: all 0.3s ease;
}

.processo-content:hover{
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.55);
    transform: translateY(-5px);
}

.dark-mode .type-card{
    background: #151515;
    box-shadow: rgba(52, 152, 219, 0.682) 0px 0px 12px 7.81539px;
}