/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header */
.header-main {
    width: 100%;
    background-color: #ffffff;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.center-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.logo img {
    height: 90px;
    margin-right: 50px;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links ul li a {
    text-decoration: none;
    color: #003366;
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 5px;
}

.nav-links ul li a.active {
    border-bottom: 2px solid #333;
    color: #000;
}

/* Hero Section */
.hero {
    height: 600px;
    background-image: url('background-containers.jpg'); /* Nome da sua foto do gramado */
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.2); /* Escurece levemente a imagem para ler o texto */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: 16px;
    margin-bottom: 60px;
}

/* Grid de Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.15); /* Efeito de transparência */
    backdrop-filter: blur(5px); /* Desfoque do vidro */
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card h3 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: none;
}

.card p {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 850px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 30px;
    }
}/* Container de largura controlada para extrema centralização */
.container-central {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto; /* Centraliza o bloco inteiro na tela */
    padding: 60px 0;
}

.main-title {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 40px;
    text-align: left;
}

/* Grid de 3 colunas para Missão/Visão */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.mission-column h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000;
}

.mission-column p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    text-align: left;
}

/* Imagem Arredondada */
.featured-image img {
    width: 100%;
    border-radius: 25px; /* Bordas bem arredondadas conforme o modelo */
    margin-bottom: 40px;
    display: block;
}

/* Seção de História abaixo da imagem */
.history-section {
    text-align: left;
}

.history-section h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #444;
}

.history-section p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.history-section strong {
    color: #333;
}

/* Responsividade para Tablets e Celulares */
@media (max-width: 900px) {
    .mission-grid {
        grid-template-columns: 1fr; /* Empilha as colunas */
    }
}.featured-image {
    width: 100%;
    margin: 30px 0;
}

.featured-image img {
    width: 100%;
    /* Define a altura fixa para achatar a imagem */
    height: 350px; 
    
    /* O object-fit impede que a imagem fique esticada/deformada */
    object-fit: cover; 
    
    /* Centraliza o foco da foto (ajuste conforme necessário) */
    object-position: center; 
    
    /* Bordas arredondadas idênticas ao modelo */
    border-radius: 25px; 
    
    display: block;
}

/* Ajuste para telas menores (opcional) */
@media (max-width: 768px) {
    .featured-image img {
        height: 200px; /* Fica menos achatada no celular para não cortar muito */
    }
}/* --- Parte 3: Marítimos e Habitacionais --- */

.products-section {
    background-color: #e3f2fd; /* Azul bem claro conforme a imagem */
    padding: 80px 0;
    text-align: center;
}

.products-header {
    margin-bottom: 50px;
}

.products-header h2 {
    font-size: 34px;
    color: #222;
    font-weight: bold;
    margin-bottom: 15px;
}

.products-header p {
    font-size: 15px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    text-align: left; /* Alinhamento do texto nos cards */
}

/* Container da imagem para garantir o formato achatado */
.product-img-wrapper {
    width: 100%;
    height: 250px; /* Altura para deixar a imagem achatada */
    overflow: hidden;
    border-radius: 20px; /* Bordas arredondadas */
    margin-bottom: 20px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o espaço sem esticar */
}

.product-card h4 {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 12px;
}

.product-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}/* --- Parte 3: Marítimos e Habitacionais --- */

.products-section {
    background-color: #e3f2fd; /* Azul bem claro conforme a imagem */
    padding: 80px 0;
    text-align: center;
}

.products-header {
    margin-bottom: 50px;
}

.products-header h2 {
    font-size: 34px;
    color: #222;
    font-weight: bold;
    margin-bottom: 15px;
}

.products-header p {
    font-size: 15px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    text-align: left; /* Alinhamento do texto nos cards */
}

/* Container da imagem para garantir o formato achatado */
.product-img-wrapper {
    width: 100%;
    height: 250px; /* Altura para deixar a imagem achatada */
    overflow: hidden;
    border-radius: 20px; /* Bordas arredondadas */
    margin-bottom: 20px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o espaço sem esticar */
}

.product-card h4 {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 12px;
}

.product-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}/* Container principal da seção */
.projects-gallery {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

/* Título e subtitulo da seção */
.products-header h2 {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.products-header p {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

/* Grid com 3 colunas idênticas */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Cria 3 colunas de tamanhos iguais */
    gap: 20px; /* Espaço entre as imagens */
    width: 100%;
    max-width: 1100px; /* Alinha com o padrão centralizado do site */
    margin: 0 auto;
}

/* Item da galeria (Moldura) */
.gallery-item {
    width: 100%;
    aspect-ratio: 1 / 1; /* Força o item a ser um quadrado perfeito */
    overflow: hidden;
    border-radius: 20px; /* Bordas arredondadas conforme o modelo */
}

/* Estilização da imagem dentro da moldura */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher o quadrado sem distorcer */
    display: block;
    transition: transform 0.3s ease; /* Efeito suave para o hover */
}

/* Efeito de zoom ao passar o mouse (opcional, para interatividade) */
.gallery-item img:hover {
    transform: scale(1.05);
}

/* Responsividade para tablets e celulares */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* 1 coluna em celulares */
    }
}/* --- Parte 6: Avaliações de Clientes (CORRIGIDO) --- */

.reviews-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.reviews-grid {
    display: flex; /* Usando Flex para melhor controle de largura */
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.review-card {
    background-color: #e1f5fe; /* Azul muito claro do modelo */
    width: 100%;
    max-width: 530px; /* Largura para caber dois lado a lado no container */
    padding: 35px;
    border-radius: 4px; /* Quase reto, conforme o print */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.stars {
    color: #222;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto; /* Empurra a info do cliente para o rodapé do card */
}

.client-photo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.client-city {
    font-size: 12px;
    color: #666;
}

/* Responsividade */
@media (max-width: 900px) {
    .reviews-grid {
        flex-direction: column;
        align-items: center;
    }
    .review-card {
        max-width: 100%;
    }
}/* Container da Seção */
.reviews-section {
    padding: 80px 0;
    background-color: #ffffff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza o conteúdo no eixo horizontal */
}

/* Cabeçalho Centralizado (Título e Subtítulo) */
.products-header {
    text-align: center; /* Centraliza o texto conforme o modelo */
    margin-bottom: 50px;
    width: 100%;
}

.products-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.products-header p {
    font-size: 14px;
    color: #666;
    max-width: 500px;
    margin: 0 auto; /* Garante que o subtítulo curto fique centralizado */
}

/* Grid de Cards Centralizado */
.reviews-grid {
    display: flex;
    justify-content: center; /* Centraliza os cards lado a lado */
    gap: 20px;
    width: 100%;
    max-width: 1100px; /* Alinha com a largura das outras seções */
    padding: 0 20px;
}

/* Ajuste dos Cards Individuais */
.review-card {
    background-color: #e1f5fe; /* Azul claro do modelo */
    flex: 1; /* Faz os dois cards terem o mesmo tamanho */
    max-width: 530px; 
    padding: 35px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

/* Responsividade para manter a centralização no celular */
@media (max-width: 850px) {
    .reviews-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .review-card {
        width: 100%;
        max-width: 100%;
    }
}.hero {
    /* Substitua 'caminho/para/sua/imagem.jpg' pelo nome real do seu ficheiro */
    background-image: url('img/WhatsApp\ Image\ 2026-02-06\ at\ 10.20.30.jpeg'); 
    
    /* Faz a imagem cobrir toda a área sem distorcer */
    background-size: cover;
    
    /* Centraliza a imagem */
    background-position: center;
    
    /* Mantém a imagem fixa ao fazer scroll (opcional, dá um efeito moderno) */
    background-attachment: scroll;
    
    /* Define uma altura mínima para a secção */
    min-height: 100vh; 
    
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Camada escura para dar contraste ao texto branco */
.hero-overlay {
    background-color: rgba(0, 0, 0, 0.4); /* Ajuste o 0.4 para mais ou menos escuro */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Estilo do Texto Principal */
.hero-content {
    text-align: center;
    color: #ffffff;
    z-index: 1; /* Garante que o texto fique por cima do overlay */
}

.hero-content h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Grade de Cards Semi-transparentes na Base */
.cards-grid {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    max-width: 1100px;
}

.card {
    background-color: rgba(255, 255, 255, 0.1); /* Branco com transparência */
    backdrop-filter: blur(5px); /* Efeito de vidro fosco */
    padding: 30px;
    border-radius: 4px;
    flex: 1;
    text-align: left;
}

.card h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    line-height: 1.5;
}/* Seleciona especificamente a seção de fabricação */
.fabrication-section {
    background-color: #fff5f2 !important; /* Cor rosa/bege claro do modelo */
    padding: 80px 0; /* Espaçamento superior e inferior */
    width: 100%;
    display: block;
}

/* Garante que o container interno não herde margens que quebrem a cor */
.fabrication-section .container-central {
    background-color: transparent; 
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}.main-footer {
    background-color: #003366; /* Azul marinho profundo conforme imagem */
    color: #ffffff;
    padding: 80px 0;
    font-family: Arial, sans-serif;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 0 20px;
}

.footer-col {
    flex: 1;
}

/* Coluna Branding */
.branding h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.branding p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.copyright {
    margin-top: 150px; /* Alinha na base conforme o modelo */
    font-size: 12px;
}

/* Coluna de Contatos (Central) */
.contacts {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dept strong {
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.dept a, .dept span {
    display: block;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
}

/* Coluna Newsletter */
.newsletter h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.newsletter p {
    font-size: 16px;
    margin-bottom: 15px;
}

.newsletter input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter button {
    background-color: #006699; /* Azul do botão */
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px; /* Formato pílula */
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter button:hover {
    background-color: #005580;
}

/* Responsividade */
@media (max-width: 850px) {
    .container-footer {
        flex-direction: column;
        text-align: center;
    }
    .copyright {
        margin-top: 40px;
    }
}/* Cabeçalho e Navegação */
.header-modulos {
    text-align: center;
    padding: 20px 0;
    background: #fff;
}

.logo-top img {
    height: 80px;
    margin-bottom: 15px;
}

.nav-modulos ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
}

.nav-modulos a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: bold;
}

.nav-modulos a.active {
    border-bottom: 2px solid #333;
}

/* Banner Panorâmico */
.banner-modulos {
    width: 100%;
    position: relative;
    height: 450px;
    overflow: hidden;
}

.img-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

.dot.active {
    background: #006699;
}

/* Seção de Texto e Galeria */
.content-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.text-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.text-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    max-width: 900px;
}

/* Galeria de 3 fotos arredondadas */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item-mod {
    height: 350px;
    border-radius: 30px; /* Bordas bem arredondadas do exemplo */
    overflow: hidden;
}

.gallery-item-mod img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}/* Header com Alinhamento Lado a Lado */
.header-jumar {
    width: 100%;
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.container-header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Logo na esquerda, Menu na direita */
    align-items: center; /* Alinha verticalmente no centro */
    padding: 0 20px;
}

.logo-box img {
    height: 70px; /* Altura ajustada para o alinhamento lateral */
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #003366; /* Azul escuro do modelo */
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

/* Linha indicadora embaixo do item ativo */
.nav-links a.active {
    border-bottom: 2px solid #003366;
    padding-bottom: 5px;
}

/* --- Estilo do Carrossel (Igual ao anterior, mas verifique as cores) --- */
.banner-carrossel {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.slides-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #006699;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
}

.prev { left: 20px; }
.next { right: 20px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 102, 153, 0.3);
    border-radius: 50%;
}

.dot.active {
    background: #006699;
}/* Header total */
.header-centralizado {
    width: 100%;
    background-color: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Container que junta logo e menu no meio */
.header-content {
    display: flex;
    justify-content: center; /* Centraliza o bloco inteiro horizontalmente */
    align-items: center;     /* Alinha logo e texto verticalmente */
    gap: 60px;               /* Espaço fixo entre a logo e o início do menu */
}

/* Tamanho da Logo */
.logo-jumar img {
    height: 65px;
    display: block;
}

/* Menu de Navegação */
.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px; /* Espaço entre cada palavra do menu */
}

.nav-menu a {
    text-decoration: none;
    color: #003366; /* Azul Marinho da marca */
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Linha preta apenas embaixo do item ativo */
.nav-menu a.active {
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}.banner-carrossel {
    width: 100%;
    height: 485px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cor das setas e pontos no azul da marca */
.swiper-button-next, .swiper-button-prev {
    color: #006699 !important;
}

.swiper-pagination-bullet-active {
    background: #006699 !important;
}/* Estilo do link quando o mouse passa por cima (hover) */
.nav-menu a:hover {
    color: #006699; /* Muda para o azul claro da Jumar */
    border-bottom: 2px solid #006699;
    transition: 0.3s ease;
}

/* Garante que o item 'active' tenha a linha preta embaixo conforme o modelo */
.nav-menu a.active {
    border-bottom: 2px solid #000000;
    padding-bottom: 5px;
    color: #003366; /* Azul marinho forte */
}.conteudo-modulos {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
}

.categoria-container {
    margin-bottom: 60px;
}

.categoria-container h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.categoria-container p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 800px;
}

/* Grid de 3 colunas para as fotos */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.foto-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 25px; /* Cantos bem arredondados como no modelo */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.foto-item img:hover {
    transform: scale(1.02);
}/* Títulos das categorias em negrito e cor escura */
.categoria-container h3 {
    font-weight: bold;
    color: #333;
    margin-top: 40px;
    margin-bottom: 10px;
}

/* Texto de descrição com leitura confortável */
.categoria-container p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Imagens com cantos bem arredondados (estilo Jumar) */
.foto-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3; /* Mantém a proporção das fotos do modelo */
    object-fit: cover;
    border-radius: 30px; /* Curva acentuada conforme as imagens */
    display: block;
}/* Banner com imagem de fundo e texto sobreposto */
.banner-habitacional {
    width: 100%;
    height: 450px;
    background: url('img/caminhao-jumar.avif') no-repeat center center/cover;
    position: relative;
    color: #fff;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.6); /* Escurece a imagem de fundo */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text {
    max-width: 1100px;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.banner-text h1 {
    font-size: 42px;
    line-height: 1.1;
    flex: 1;
}

.banner-text p {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 50px;
}

/* Números Azuis (Stats) */
.stats-container {
    display: flex;
    gap: 60px;
    width: 100%;
    margin-top: 30px;
}

.stat-item h2 {
    color: #006699; /* Azul Jumar */
    font-size: 48px;
    margin: 0;
}

.stat-item span {
    font-size: 14px;
    color: #ccc;
}.projetos-habitacionais {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.intro-habitacional h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.intro-habitacional p {
    color: #666;
    margin-bottom: 50px;
}

/* Grid de duas colunas */
.grid-projetos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
}

.card-projeto-h img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 25px; /* Cantos arredondados conforme o modelo */
    margin-bottom: 15px;
}

.projeto-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.projeto-info h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 5px;
}

.projeto-info p {
    font-size: 14px;
    color: #777;
    max-width: 85%;
}

.arrow-link {
    font-size: 24px;
    color: #333;
    cursor: pointer;
}.sessao-localizacao {
    padding: 80px 0;
    background-color: #fff;
}

.localizacao-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 0 20px;
}

.info-texto {
    flex: 1;
}

.info-texto h2 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: bold;
}

.info-texto p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.detalhes-contato h3 {
    font-size: 18px;
    color: #000;
    font-weight: bold;
    margin-bottom: 5px;
}

.detalhes-contato p {
    margin-bottom: 20px;
}

.mapa-container {
    flex: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}/* Ajuste para o banner panorâmico marítimo */
.banner-maritimo {
    width: 100%;
    overflow: hidden;
    height: 400px; /* Altura ajustável conforme sua imagem */
}

.banner-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a foto da operação não distorça */
    display: block;
}

/* Feedback visual do menu ativo */
.nav-menu a.active {
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    font-weight: bold;
}.container-tecnico {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
}

.intro-maritimo h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.aplicacoes {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

/* Estilo do Card da Ficha Técnica */
.ficha-produto {
    display: flex;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
    align-items: center;
    padding: 30px;
    border: 1px solid #eee;
}

.info-tecnica {
    flex: 2;
    padding-right: 40px;
}

.info-tecnica h3 {
    font-size: 24px;
    color: #003366; /* Azul Marinho Jumar */
    margin-bottom: 15px;
}

.info-tecnica p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dados-tabela ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dados em duas colunas */
    gap: 10px;
}

.dados-tabela li {
    font-size: 13px;
    color: #444;
}

.imagem-tecnica {
    flex: 1;
}

.imagem-tecnica img {
    width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.2));
}/* Remove o fundo branco das imagens dos containers */
.imagem-tecnica img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply; /* Faz o fundo branco da imagem desaparecer */
    filter: contrast(1.1);    /* Opcional: realça as cores após a mistura */
}

/* Caso você esteja usando a classe card-tecnico da Parte 3 */
.foto-tecnica img {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}/* Seção Depoimento */
.secao-depoimento {
    display: flex;
    height: 400px;
    margin-top: 100px;
    border-radius: 20px;
    overflow: hidden;
}

.imagem-operacional { flex: 1; }
.imagem-operacional img { width: 100%; height: 100%; object-fit: cover; }

.box-feedback {
    flex: 1;
    background-color: #005691; /* Azul do modelo */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.estrelas { color: #fff; font-size: 20px; margin-bottom: 20px; }
.box-feedback p { font-style: italic; font-size: 18px; line-height: 1.4; margin-bottom: 30px; }

.autor { display: flex; flex-direction: column; align-items: center; }
.autor img { width: 50px; height: 50px; border-radius: 50%; margin-bottom: 10px; border: 2px solid white; }
.contato-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.contato-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contato-header p {
    color: #666;
    margin-bottom: 40px;
}

/* Container que junta form e imagem */
.contato-wrapper {
    display: flex;
    border-radius: 20px;
    overflow: hidden; /* Garante que os cantos arredondados cortem a imagem */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contato-box {
    flex: 1;
    background-color: #e1f5fe; /* Azul claro do modelo */
    padding: 40px;
    text-align: left;
}

.campo-grupo {
    margin-bottom: 20px;
}

.campo-grupo label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: bold;
}

.campo-grupo input, 
.campo-grupo textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

.campo-grupo textarea {
    height: 120px;
    resize: none;
}

.btn-enviar {
    background-color: #005691; /* Azul Jumar */
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-enviar:hover {
    background-color: #003d66;
}

.contato-imagem {
    flex: 1;
}

.contato-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a foto preencher todo o espaço direito */
}