:root {
    --primary-color: #0a66a7; /* Azul dos links */
    --accent-color: #f9b200; /* Dourado/Amarelo */
    --text-dark: #333333;
    --bg-overlay: rgba(0, 0, 0, 0.6);
    --bg-color: #0B6CB0;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-color);
    background-image: url('../imagens/fundo-hero.jpg');
    background-size: auto;
    background-position:top center;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Menu superior 100% */
.navbar {
    background-color: transparent !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: white !important;
    transition: color 0.3s ease;
}

.navbar.scrolled {
    background-color: white !important;
}

.navbar.scrolled .navbar-brand {
    color: var(--primary-color) !important;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark) !important;
}

.navbar .container {
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
}

/* Banner de projetos */
.banner-projetos {
    background-image: url('../imagens/fundo-sessao-02.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-projetos {
    max-width: 500px;
    width: 100%;
    height: auto;
}

/* Cards de projetos */
.projeto-card {
    text-align: center;
}

.projeto-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.projeto-nome {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.btn-projeto {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-projeto:hover {
    background-color: #218838;
    color: white;
}

/* Páginas de projeto individual */
.projeto-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.projeto-detalhes {
    max-width: 90%;
    margin: 0 auto;
}

.projeto-img-detalhes,
.projeto-planta {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
}

.projeto-cta-text {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin: 40px 0 30px;
    color: var(--text-dark);
}

.projeto-cta-text .text-primary {
    color: var(--primary-color) !important;
}

/* Página de contato */
.contato-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contato-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contato-form .form-control,
.contato-form .form-select {
    border: 2px solid #ddd;
    padding: 12px;
    font-size: 1rem;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.contato-form .form-control:focus,
.contato-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(10, 102, 167, 0.25);
}

/* Página em breve */
.em-breve-container {
    text-align: center;
    padding: 100px 20px;
}

.em-breve-titulo {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.em-breve-texto {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .em-breve-titulo {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .em-breve-texto {
        font-size: 1.2rem;
    }
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.dropdown-chevron {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -10px;
    background-color: white;
    border: none;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    min-width: 600px;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 0.5rem 3rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 1rem;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    color: white;
    padding: 40px 0 100px 0;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 60px;
}

.hero-title {
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 1.5rem !important;
}

.text-gold {
    color: var(--accent-color);
}

/* Botão WhatsApp (Estilo do original) */
.btn-whatsapp {
    background-color: #2fce15;
    color: black;
    font-weight: 400;
    padding: 20px 40px;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    display: inline-block;
    transition: transform 0.2s;
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    background-color: #25a512;
    color: black;
    transform: scale(1.05);
}

/* Seções Gerais */
section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 60px;
}

/* Seções com fundo devem cobrir 100% */
section.bg-light,
section.bg-light-gray,
section.bg-03 {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* Seção de projetos (carrossel) deve ter 80% com fundo 100% */
section.bg-light-gray {
    padding-left: 0 !important;
    padding-right: 0 !important;
    background-image: url('../imagens/fundo-carrossel.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
}

section.bg-light-gray .container {
    max-width: 80% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

section.bg-light .container,
section.bg-03 .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 60px;
}

.section-padding {
    padding: 60px 0;
}

/* Remover espaçamento entre seções de vantagens */
.bg-01,
.bg-02,
.bg-03,
.bg-04,
.bg-05 {
    padding-top: 60px;
    padding-bottom: 60px;
    margin: 0;
}

#principais-vantagens {
    padding-top: 20px;
    padding-bottom: 20px;
}

section.bg-light {
    margin: 0;
}

/* Estilos para textos de vantagens */
.vantagem-text {
    padding: 0;
}

.vantagem-text h3 {
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 700;
}

.vantagem-text p {
    font-size: 1.3rem;
    font-weight: 500;
}

.vantagem-line {
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    margin-bottom: 20px;
}

.vantagem-bg-02 {
    color: white;
}

.vantagem-bg-04 {
    color: var(--text-dark);
}

/* Estilos para seção de contato */
.contact-line {
    width: 100%;
    height: 3px;
    background-color: white;
    margin-bottom: 20px;
    margin-top: 15px;
}

.contact-info p {
    font-size: 1.4rem;
    font-weight: 700;
}

.projetos-title {
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Carousel de Projetos */
#projetosCarousel {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

#projetosCarousel .carousel-inner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

#projetosCarousel .carousel-control-prev,
#projetosCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

#projetosCarousel .carousel-control-prev {
    left: -25px;
}

#projetosCarousel .carousel-control-next {
    right: -25px;
}

#projetosCarousel .carousel-control-prev:hover,
#projetosCarousel .carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

#projetosCarousel .carousel-control-prev-icon,
#projetosCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.bg-light-gray {
    background-color: #f8f9fa;
}

.bg-01 {
    background-color: #ffffff;
    background-image: url('../imagens/fundo-sessao-01.jpg');
    background-repeat: no-repeat;
    background-position: calc(100% + 180px) top;
    background-size: auto 100%;
}

.bg-02 {
    background-color: #ffffff;
    background-image: url('../imagens/fundo-sessao-02.jpg');
    background-repeat: no-repeat;
    background-position: -210px top;
    background-size: auto 100%;
}

.bg-03 {
    background-color: #ffffff;
    background-image: url('../imagens/fundo-sessao-03.jpg');
    background-repeat: no-repeat;
    background-position: calc(100% + 180px) top;
    background-size: auto 100%;
}

.bg-04 {
    background-color: #ffffff;
    background-image: url('../imagens/fundo-sessao-04.jpg');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: auto 100%;
}

.bg-05 {
    background-color: #ffffff;
    background-image: url('../imagens/fundo-sessao-05.jpg');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
}

/* Responsividade para celular */
@media (max-width: 768px) {
    .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    section {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    section.bg-light .container,
    section.bg-light-gray .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    section.bg-03 .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-section {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Textos em preto no mobile para todas as seções */
    section h2,
    section h3,
    section h4,
    section p,
    .vantagem-bg-02,
    .vantagem-bg-02 h3,
    .vantagem-bg-02 p,
    .contact-info h3,
    .contact-info p {
        color: var(--text-dark) !important;
    }
    
    .contact-line {
        background-color: var(--accent-color) !important;
    }
    
    .underline-blue {
        color: var(--accent-color) !important;
    }
}

.feature-img {
    width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

/* Aumentar espaço inferior das divs com feature-img */
.feature-img {
    margin-bottom: 24px;
}

.section-title {
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
}

#principais-vantagens .section-title {
    padding: 30px;
}

.underline-blue {
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    color: var(--primary-color);
}

/* Steps / Passos */
.step-card {
    margin-bottom: 30px;
    text-align: center;
}

.step-icon {
    width: 80%;
    height: auto;
    margin-bottom: 15px;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}