@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800&display=swap');

:root {
    --primary-color: #0a3a58;
    --secondary-color: #A98A58;
    --dark-color: #1a1a1a;
    --gray-color: #333;
    --light-gray-color: #f8f9fa;
    --white-color: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.6; color: var(--dark-color); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 50px; }

/* --- HEADER --- */
.header { background-color: var(--white-color); box-shadow: 0 2px 5px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.header .container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo img { max-height: 50px; }
.main-nav { flex-grow: 1; }
.main-nav ul { list-style: none; display: flex; justify-content: center; }
.main-nav ul li a { text-decoration: none; color: var(--gray-color); padding: 10px 15px; font-weight: 500; transition: color 0.3s ease; display: flex; align-items: center; gap: 4px; }
.main-nav ul li a:hover { color: var(--secondary-color); }
.header-right { flex-shrink: 0; }
.contact-button { background-color: var(--secondary-color); color: var(--white-color); padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: 500; transition: background-color 0.3s ease; }
.contact-button:hover { background-color: #8e734a; }
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: var(--white-color); box-shadow: 0 8px 16px rgba(0,0,0,0.1); border-radius: 5px; padding: 10px 0; z-index: 101; min-width: 220px; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: flex; align-items: center; padding: 12px 20px; width: 100%; color: var(--dark-color); }
.product-icon { width: 24px; height: 24px; margin-right: 15px; }

/* --- CARROSSEL HERO --- */
.hero-section { height: 75vh; color: var(--white-color); position: relative; }
.hero-swiper, .hero-slide { width: 100%; height: 100%; }
.hero-slide { background-size: cover; background-position: center; position: relative; display: flex; justify-content: center; align-items: center; }
.hero-slide::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; text-align: center; max-width: 800px; padding: 20px; }
.hero-content h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.3rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-content .cta-button { background-color: var(--secondary-color); color: var(--white-color); padding: 15px 30px; border-radius: 5px; text-decoration: none; font-size: 1.1rem; font-weight: 700; transition: background-color 0.3s ease; border: none; }
.hero-content .cta-button:hover { background-color: #8e734a; }
.hero-nav-arrow { color: var(--white-color) !important; }
.hero-swiper .swiper-pagination-bullet { background: rgba(255, 255, 255, 0.7); opacity: 1; }
.hero-swiper .swiper-pagination-bullet-active { background: var(--secondary-color); }

/* --- SEÇÕES --- */
.features, .products, .cases, .about, .reviews, .clients { padding: 80px 0; }
.products, .about, .clients { background-color: var(--light-gray-color); }

/* DIFERENCIAIS */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.feature-card i { font-size: 3rem; color: var(--secondary-color); margin-bottom: 20px; }
.feature-card h3 { font-size: 1.5rem; }

/* PRODUTOS */
.products {
    position: relative; 
    /* Adiciona um padding inferior para dar espaço às bolinhas */
    padding-bottom: 120px; /* Aumenta o padding inferior da seção inteira */
}
/* Ajuste da posição da paginação do carrossel de produtos */
.product-swiper .swiper-pagination {
  position: absolute;
  bottom: -40px !important; /* 🔹 Move as bolinhas mais pra baixo */
  left: 0;
  width: 100%;
  text-align: center;
}

.product-swiper .swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
}

.product-swiper .swiper-pagination-bullet-active {
  background: var(--secondary-color);
}


.product-swiper .swiper-wrapper {
  align-items: stretch; /* garante altura uniforme */
}

.product-card {
  border-radius: 12px;
  background-color: var(--white-color);
  box-shadow: 0 5px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 420px; /* 🔹 força altura fixa pra todos os cards */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card img {
  width: 100%;
  height: 220px; /* 🔹 altura padronizada das imagens */
  object-fit: contain; /* mantém proporção sem cortar */
  padding: 15px;
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  padding: 0 20px;
  text-align: center;
}

.product-card p {
  font-size: 0.9rem;
  color: #666;
  padding: 0 20px 20px;
  margin-top: auto;
  text-align: center;
}


/* CASES DE SUCESSO */
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.case-card { position: relative; display: block; height: 450px; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1); color: var(--white-color); text-decoration: none; }
.case-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.case-card:hover img { transform: scale(1.05); }
.case-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); }
.case-info h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 5px; }
.case-info p { font-size: 1rem; line-height: 1.5; }

/* AVALIAÇÕES */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background-color: var(--white-color); padding: 30px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.07); display: flex; flex-direction: column; }
.review-stars { margin-bottom: 20px; color: #FFC107; font-size: 1.2rem; }
.review-text { font-size: 1rem; line-height: 1.7; color: #555; flex-grow: 1; margin-bottom: 25px; }
.review-author { display: flex; align-items: center; gap: 15px; margin-top: auto; }
.review-author img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.author-info strong { display: block; font-weight: 700; }
.author-info span { font-size: 0.9rem; color: #777; }

/* SOBRE */
.about-flex { display: flex; align-items: center; gap: 50px; }
.about-image, .about-text { flex: 1; }
.about-image iframe { width: 100%; height: 400px; border: none; border-radius: 8px; }
.about-text h2 { text-align: left; }
.cta-button-secondary { background: none; border: 2px solid var(--primary-color); color: var(--primary-color); padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: 700; transition: all 0.3s ease; display: inline-block; margin-top: 20px; }
.cta-button-secondary:hover { background-color: var(--primary-color); color: var(--white-color); }

/* CLIENTES */
.clients-swiper .swiper-slide { display: flex; justify-content: center; align-items: center; height: 100px; }
.clients-swiper img { max-width: 140px; max-height: 60px; height: auto; width: auto; opacity: 0.6; transition: all 0.3s ease; }
.clients-swiper img:hover { filter: grayscale(0%); opacity: 1; }

/* FOOTER E WHATSAPP */
.footer { background-color: var(--dark-color); color: var(--light-gray-color); padding: 30px 0; text-align: center; }
.whatsapp-icon { position: fixed; bottom: 25px; right: 25px; z-index: 100; }
.whatsapp-icon img { width: 70px; height: 70px; border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,0.25); }

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .main-nav, .header-right { display: none; }
    .features-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
    .about-flex { flex-direction: column; }
}
@media (max-width: 768px) {
    .features-grid, .cases-grid, .reviews-grid { grid-template-columns: 1fr; }
}

/* FIX - Botões e paginação individuais */
.hero-next, .hero-prev,
.product-next, .product-prev {
  color: var(--primary-color) !important;
}

.hero-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.7);
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--secondary-color);
}
/* CENTRALIZAR TEXTO DO HERO */
.hero-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}
.footer {
  background-color: #071f2c;
  color: #f5f6f7;
  text-align: center;
  padding: 20px 10px 10px;
  font-size: 14px;
}

.redes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}

.redes a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f5f6f7;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.redes a:hover {
  color: #3ba4dd;
}

.icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
}

.footer p {
  font-size: 13px;
  color: #f5f6f7;
  margin-top: 8px;
}

/* --- Responsivo --- */
@media (max-width: 768px) {
  .redes {
    flex-direction: column;
    gap: 12px;
  }
  .footer p {
    font-size: 12px;
  }
}

/* --- ESTILOS PARA A PÁGINA PARCEIROS (CLUB&CASA) --- */

.page-title-section {
    padding: 60px 0;
    background-color: var(--light-gray-color); /* Fundo suave para o título */
    text-align: center;
}

.page-title-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.clubcasa-content {
    padding: 80px 0;
    background-color: var(--white-color);
}

.logo-parceiro {
    text-align: center;
    margin-bottom: 50px;
}

.logo-parceiro img {
    max-width: 250px; /* Ajuste o tamanho da logo como preferir */
    height: auto;
}

.texto-parceria {
    max-width: 800px; /* Limita a largura do texto para melhor leitura */
    margin: 0 auto 50px auto; /* Centraliza o bloco de texto */
    text-align: center;
}

.subtitulo-parceria {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.texto-parceria p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.como-funciona {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee; /* Linha sutil de separação */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.como-funciona h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.como-funciona p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.como-funciona .cta-button-secondary {
    /* O estilo já existe, mas podemos garantir o display */
    display: inline-block;
}

/* Responsividade adicional se necessário */
@media (max-width: 768px) {
    .page-title-section h1 {
        font-size: 2.2rem;
    }
    .texto-parceria p, .como-funciona p {
        font-size: 1rem;
    }
    .subtitulo-parceria {
        font-size: 1.8rem;
    }
    .como-funciona h3 {
        font-size: 1.6rem;
    }
}

/* --- ESTILOS PARA A PÁGINA DE PRODUTOS (produtos.html) --- */

/* Seção do Título da Página */
.page-title-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 900px; /* <<< VALOR AUMENTADO para esticar o texto */
    margin: 0 auto;
}
.page-title-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.page-title-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Seção da Grade de Produtos */
.product-grid-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.product-grid {
    display: grid;
    gap: 30px; /* Mantém o espaçamento */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Mantém para telas pequenas */
}

/* FORÇA 3 COLUNAS EM TELAS MAIORES */
@media (min-width: 768px) { /* A partir de tablets */
    .product-grid {
        grid-template-columns: repeat(3, 1fr); /* Exatamente 3 colunas iguais */
    }
}

/* Opcional: Forçar 2 colunas em telas um pouco menores, se quiser */
@media (min-width: 576px) and (max-width: 767px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} 

.product-grid-card {
    display: block; /* Faz o card inteiro ser um link */
    text-decoration: none;
    color: inherit;
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    overflow: hidden; /* Garante que a imagem não vaze */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-grid-card:hover {
    transform: translateY(-5px); /* Efeito sutil de levantar */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-grid-image {
    height: 220px; /* Altura fixa para a imagem */
    background-color: #f0f0f0; /* Fundo para imagens transparentes */
}

.product-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cobre a área sem distorcer (pode usar 'contain' se preferir) */
}

.product-grid-content {
    padding: 20px;
}

.product-grid-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.product-grid-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* --- ESTILOS ADICIONAIS PARA PÁGINAS DE CATEGORIA DE PRODUTO --- */

/* Ajuste no título da página para incluir a subnavegação */
.page-title-section.category-title {
    padding-bottom: 0; /* Remove padding inferior para colar a navegação */
}

/* Subnavegação de Categoria (Substitui a Sidebar) */
.category-nav {
    margin-top: 30px;
    padding-bottom: 30px; /* Espaço abaixo da navegação */
    border-bottom: 1px solid #eee; /* Linha sutil abaixo */
    text-align: center;
}

.category-nav a {
    text-decoration: none;
    color: var(--gray-color);
    font-weight: 500;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 20px; /* Bordas arredondadas */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.category-nav a:hover {
    background-color: #eee;
    color: var(--primary-color);
}

.category-nav a.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Ajustes na Grade de Produtos Específicos */
.product-grid-section .product-grid {
    /* Usa o mesmo grid responsivo da página produtos.html */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.product-grid-section .product-grid-card {
    /* Reutiliza o estilo do card da produtos.html */
    display: block;
    text-decoration: none;
    color: inherit;
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* Adicionado para controle interno */
    flex-direction: column; /* Organiza imagem e texto */
    height: 100%; /* Faz o card ocupar a altura da linha do grid */
}

.product-grid-section .product-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-grid-section .product-grid-image {
    height: 250px; /* Altura da imagem */
    background-color: #f0f0f0;
    padding: 10px; /* Espaço interno para a imagem */
}

.product-grid-section .product-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mostra a imagem inteira */
}

.product-grid-section .product-grid-content {
    padding: 20px;
    flex-grow: 1; /* Faz o conteúdo textual ocupar o espaço restante */
    display: flex;
    flex-direction: column;
}

.product-grid-section .product-grid-content h3 {
    font-size: 1.2rem; /* Tamanho do nome do produto */
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.product-grid-section .product-grid-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px; /* Espaço antes do botão (se houver) */
    flex-grow: 1; /* Empurra o botão para baixo */
}

/* Botão Opcional de Detalhes */
.details-button {
    display: inline-block;
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 0.85rem;
    margin-top: auto; /* Empurra para o final do card */
    transition: background-color 0.3s ease, color 0.3s ease;
}
.details-button:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}


/* Estilo da Paginação (se for usar) */
.pagination-nav {
    margin-top: 50px;
}
.pagination .page-link {
    color: var(--primary-color);
}
.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}
.pagination .page-item.disabled .page-link {
    color: #aaa;
}
/* --- ESTILO PARA A PAGINAÇÃO (SEM BOOTSTRAP) --- */

.pagination-nav {
    margin-top: 60px; /* Espaço acima da paginação */
    display: flex;     /* Centraliza a lista ul */
    justify-content: center;
}

.pagination {
    list-style: none; /* Remove bolinhas da lista */
    padding: 0;       /* Remove padding padrão */
    display: flex;     /* Coloca os itens LIs em linha */
    gap: 8px;          /* Espaço entre os botões */
}

.page-item {
    /* Não precisa de estilo aqui, controlamos no link */
}

.page-link {
    display: block; /* Garante que o link ocupe o espaço */
    padding: 10px 16px; /* Tamanho do botão */
    text-decoration: none;
    color: var(--primary-color); /* Cor do texto (azul escuro) */
    background-color: var(--white-color); /* Fundo branco */
    border: 1px solid #dee2e6; /* Borda cinza clara */
    border-radius: 5px; /* Bordas arredondadas */
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-link:hover {
    background-color: #e9ecef; /* Fundo cinza claro no hover */
    color: var(--secondary-color); /* Cor dourada no hover */
    border-color: #ced4da;
}

.page-item.active .page-link {
    background-color: var(--primary-color); /* Fundo azul escuro para ativo */
    border-color: var(--primary-color);
    color: var(--white-color); /* Texto branco para ativo */
    cursor: default; /* Não clicável */
}

.page-item.disabled .page-link {
    color: #aaa; /* Cor cinza para desabilitado */
    background-color: var(--white-color);
    border-color: #dee2e6;
    pointer-events: none; /* Desabilita o clique */
    cursor: default;
}

/* Ajuste opcional para o link "Anterior" e "Próximo" */
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    /* Pode adicionar estilos específicos se quiser */
}

/* --- ESTILOS PARA O MENU MOBILE --- */

.mobile-menu-icon {
    display: none; /* Escondido por padrão em telas grandes */
    background: none;
    border: none;
    font-size: 2rem; /* Tamanho do ícone */
    color: var(--primary-color); /* Cor do ícone */
    cursor: pointer;
    padding: 5px;
    margin-left: 15px; /* Espaço entre o botão de orçamento e o ícone */
}

.mobile-nav {
    display: none; /* Painel escondido por padrão */
    background-color: var(--dark-color); /* Fundo escuro */
    padding: 20px 0;
    position: absolute; /* Ou fixed, dependendo do efeito desejado */
    top: 80px; /* Logo abaixo do header */
    left: 0;
    width: 100%;
    z-index: 99; /* Abaixo do header, mas acima do conteúdo */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav ul li {
    margin: 15px 0;
}

.mobile-nav ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px;
    display: block;
    transition: background-color 0.3s ease;
}

.mobile-nav ul li a:hover {
    background-color: var(--primary-color); /* Fundo azul no hover */
}

/* --- AJUSTES DE RESPONSIVIDADE PARA ATIVAR O MENU MOBILE --- */

@media (max-width: 992px) {
    .main-nav, .header-right .contact-button {
        display: none; /* Esconde o menu principal e botão de orçamento */
    }
    .mobile-menu-icon {
        display: block; /* Mostra o ícone hambúrguer */
    }
    /* Ajusta o container do header para dar espaço */
    .header .container {
        justify-content: space-between; /* Garante logo na esquerda, ícone na direita */
    }
     .main-nav {
         flex-grow: 0; /* Impede que o espaço vazio do menu afete o layout */
     }
}

/* Garante que o CSS anterior não seja sobrescrito incorretamente */
@media (max-width: 768px) {
    /* Mantém as regras de 992px ativas */
     .main-nav, .header-right .contact-button {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    /* Outras regras específicas para 768px */
    .features-grid, .cases-grid, .reviews-grid { grid-template-columns: 1fr; }
}
/* --- ESTILOS PARA A PÁGINA SOBRE NÓS (sobrenos.html) --- */

/* Reutiliza o estilo da seção de título de outras páginas */
.page-title-section {
    padding: 60px 0;
    background-color: var(--light-gray-color);
    text-align: center;
    border-bottom: 1px solid #eee; /* Linha sutil opcional */
}
.page-title-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.page-title-section p {
    font-size: 1.1rem;
    color: #666;
    max-width:900px;
    margin: 0 auto;
}

/* Estilo das seções de conteúdo */
.about-content-section {
    padding: 80px 0;
    background-color: var(--white-color); /* Fundo branco padrão */
}

.about-content-section.bg-light {
    background-color: var(--light-gray-color); /* Fundo cinza claro alternado */
}

.about-content-block {
    max-width: 850px; /* Limita a largura do texto */
    margin: 0 auto; /* Centraliza o bloco */
    text-align: center; /* Centraliza o conteúdo interno */
}

.icon-about {
    font-size: 3.5rem; /* Tamanho do ícone */
    color: var(--secondary-color); /* Cor dourada */
    margin-bottom: 25px;
    display: inline-block; /* Permite centralizar com text-align */
}

.about-content-block h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    text-align: justify; /* Justifica o texto para melhor leitura */
}

/* Responsividade para a página Sobre Nós */
@media (max-width: 768px) {
    .page-title-section h1 {
        font-size: 2.2rem;
    }
    .about-content-block h2 {
        font-size: 1.8rem;
    }
    .about-content-block p {
        font-size: 1rem;
        text-align: left; /* Desfaz justificado em telas pequenas */
    }
    .about-content-section {
        padding: 60px 0;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800&display=swap');

:root {
    --primary-color: #0a3a58;
    --secondary-color: #A98A58;
    --dark-color: #1a1a1a;
    --gray-color: #333;
    --light-gray-color: #f8f9fa;
    --white-color: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.6; color: var(--dark-color); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 50px; }

/* --- HEADER --- */
.header { background-color: var(--white-color); box-shadow: 0 2px 5px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.header .container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo img { max-height: 50px; }
.main-nav { flex-grow: 1; }
.main-nav ul { list-style: none; display: flex; justify-content: center; }
.main-nav ul li a { text-decoration: none; color: var(--gray-color); padding: 10px 15px; font-weight: 500; transition: color 0.3s ease; display: flex; align-items: center; gap: 4px; }
.main-nav ul li a:hover { color: var(--secondary-color); }
.header-right { flex-shrink: 0; display: flex; align-items: center; } /* Adicionado display:flex */
.contact-button { background-color: var(--secondary-color); color: var(--white-color); padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: 500; transition: background-color 0.3s ease; }
.contact-button:hover { background-color: #8e734a; }
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: var(--white-color); box-shadow: 0 8px 16px rgba(0,0,0,0.1); border-radius: 5px; padding: 10px 0; z-index: 101; min-width: 220px; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: flex; align-items: center; padding: 12px 20px; width: 100%; color: var(--dark-color); }
.product-icon { width: 24px; height: 24px; margin-right: 15px; }

/* --- CARROSSEL HERO --- */
.hero-section { height: 75vh; color: var(--white-color); position: relative; }
.hero-swiper, .hero-slide { width: 100%; height: 100%; }
.hero-slide { background-size: cover; background-position: center; position: relative; display: flex; justify-content: center; align-items: center; }
.hero-slide::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; text-align: center; max-width: 800px; padding: 20px; }
.hero-content h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.3rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-content .cta-button { background-color: var(--secondary-color); color: var(--white-color); padding: 15px 30px; border-radius: 5px; text-decoration: none; font-size: 1.1rem; font-weight: 700; transition: background-color 0.3s ease; border: none; }
.hero-content .cta-button:hover { background-color: #8e734a; }
.hero-nav-arrow { color: var(--white-color) !important; }
.hero-swiper .swiper-pagination-bullet { background: rgba(255, 255, 255, 0.7); opacity: 1; }
.hero-swiper .swiper-pagination-bullet-active { background: var(--secondary-color); }

/* --- OUTRAS SEÇÕES (CSS existente) --- */
/* ... (todo o seu CSS para features, products, cases, etc.) ... */

/* --- FOOTER E WHATSAPP --- */
.footer { background-color: var(--dark-color); color: var(--light-gray-color); padding: 30px 0; text-align: center; }
/* ... (resto do CSS do footer) ... */
.whatsapp-icon { position: fixed; bottom: 25px; right: 25px; z-index: 100; }
.whatsapp-icon img { width: 70px; height: 70px; border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,0.25); }

/* --- ESTILOS PARA O MENU MOBILE --- */
.mobile-menu-icon {
    display: none;
    background: none; border: none;
    font-size: 2.2rem; /* Aumentei um pouco */
    color: var(--primary-color);
    cursor: pointer; padding: 5px;
    margin-left: 15px; /* Espaço depois do botão de orçamento */
}
.mobile-nav {
    display: none;
    background-color: var(--dark-color);
    padding: 20px 0;
    position: absolute; /* Fica abaixo do header */
    top: 80px; /* Altura do header */
    left: 0; width: 100%;
    z-index: 99;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; text-align: center; }
.mobile-nav ul li { margin: 15px 0; }
.mobile-nav ul li a { color: var(--white-color); text-decoration: none; font-size: 1.2rem; font-weight: 500; padding: 10px; display: block; transition: background-color 0.3s ease; }
.mobile-nav ul li a:hover { background-color: var(--primary-color); }


/* --- ESTILOS PARA O MENU MOBILE (PRECISA ESTAR ANTES DAS MEDIA QUERIES) --- */

.mobile-menu-icon {
    display: none; /* Escondido por padrão em telas grandes */
    background: none;
    border: none;
    font-size: 2.2rem; /* Tamanho do ícone */
    color: var(--primary-color); /* Cor do ícone */
    cursor: pointer;
    padding: 5px;
    margin-left: 15px; /* Espaço entre o botão de orçamento e o ícone */
}

.mobile-nav {
    display: none; /* Painel escondido por padrão */
    background-color: var(--dark-color); /* Fundo escuro */
    padding: 20px 0;
    position: absolute; /* Fica abaixo do header */
    top: 80px; /* Altura do header */
    left: 0;
    width: 100%;
    z-index: 99; /* Abaixo do header, mas acima do conteúdo */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav ul li {
    margin: 15px 0;
}

.mobile-nav ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px;
    display: block;
    transition: background-color 0.3s ease;
}

.mobile-nav ul li a:hover {
    background-color: var(--primary-color); /* Fundo azul no hover */
}


/* --- REGRAS DE RESPONSIVIDADE --- */

@media (max-width: 992px) {
    /* Esconde menu principal e botão de orçamento, mostra ícone hambúrguer */
    .main-nav, .header-right .contact-button {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    /* Ajusta o layout do header para o ícone */
    .header .container {
        justify-content: space-between;
    }
    .main-nav {
        flex-grow: 0; /* Impede que o espaço vazio afete o layout */
    }

    /* Diminui texto do Hero */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }

    /* Ajusta Grids para 2 colunas */
    .features-grid, .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
    /* Cases já fica com 1 coluna neste ponto ou antes */
    .cases-grid {
        grid-template-columns: 1fr;
    }
    /* Empilha seção Sobre */
    .about-flex {
        flex-direction: column;
    }
     /* Ajusta grid de produtos */
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    /* Ajuste para página de contato se necessário */
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Diminui ainda mais o texto do Hero */
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }

    /* Garante 1 coluna para todos os grids principais */
    .features-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
     /* Ajusta grid de produtos para telas menores */
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* Ajusta Footer */
     .redes {
         flex-direction: column;
         gap: 12px;
     }
     .containerfooter p { /* Ajustado seletor */
         font-size: 12px;
     }

     /* Ajustes para página Sobre Nós em telas pequenas */
     .page-title-section h1 { font-size: 2.2rem; }
     .about-content-block h2 { font-size: 1.8rem; }
     .about-content-block p { font-size: 1rem; text-align: left; }
     .about-content-section { padding: 60px 0; }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    /* Esconde menu principal e botão, mostra hambúrguer */
    .main-nav, .header-right .contact-button { display: none; }
    .mobile-menu-icon { display: block; }
    .header .container { justify-content: space-between; } /* Ajusta header */
    .main-nav { flex-grow: 0; } /* Evita empurrar o layout */

    /* Diminui texto do Hero */
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.1rem; }

    /* Ajusta grids */
    .features-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
    .cases-grid { grid-template-columns: 1fr; } /* Case já fica 1 coluna */
    .about-flex { flex-direction: column; }
    .product-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } /* Ajusta grid de produtos */
}

@media (max-width: 768px) {
    /* Diminui ainda mais o texto do Hero */
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }

    /* Garante 1 coluna para grids */
    .features-grid, .reviews-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } /* Ajusta grid de produtos */
}

/* --- ESTILO E POSICIONAMENTO DAS SETAS DOS CARROSSEIS --- */

/* ===== BOTÃO DO CATÁLOGO ===== */
.catalog-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 32px;
    background-color: #A98A58; /* tom dourado da identidade visual */
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.catalog-button:hover {
    background-color: #8b734a; /* dourado mais escuro no hover */
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Centralizar o botão abaixo do texto */
.page-title-section .container {
    text-align: center;
}

/* --- ESTILO PARA O CARROSSEL CASES DE SUCESSO --- */

.cases {
    background-color: var(--white-color); 
    position: relative; /* Contexto para as setas */
    padding-bottom: 60px; /* Mais espaço inferior para nav/pag */
}

/* REMOVER ou COMENTAR a regra .cases-grid antiga */
/* .cases-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
} 
*/

.cases-swiper {
    padding-bottom: 50px; /* Espaço interno para a paginação */
    overflow: hidden; 
}

/* Mantém o estilo do card, mas garante altura automática dentro do slide */
.cases-swiper .swiper-slide {
    height: auto; /* Slide se ajusta à altura do card */
}

.case-card {
    /* Mantém os estilos existentes: position, border-radius, overflow, shadow, color, text-decoration */
    /* Garante altura e flexbox interno */
    display: flex; 
    flex-direction: column;
    height: 450px; /* Mantém a altura fixa que tínhamos */
    width: 100%; /* Ocupa a largura do slide */
}
.case-card img {
    width: 100%;
    height: 100%; /* Imagem tenta preencher a altura */
    object-fit: cover; 
    transition: transform 0.4s ease; 
}
.case-card:hover img {
    transform: scale(1.05); 
}
.case-info {
    /* Mantém os estilos existentes */
}
.case-info h3 { /* Mantém estilos */ }
.case-info p { /* Mantém estilos */ }


/* Paginação (bolinhas) */
.cases-pagination.swiper-pagination {
    position: absolute;
    bottom: 10px !important; 
    left: 50%;
    transform: translateX(-50%);
    width: auto !important;
}
.cases-pagination .swiper-pagination-bullet {
    background-color: var(--gray-color);
    opacity: 0.5;
    margin: 0 4px !important;
}
.cases-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

/* Navegação (Setas) */
.cases-next,
.cases-prev {
    color: var(--primary-color) !important;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 44px !important;
    height: 44px !important;
    top: 50%; /* Centraliza verticalmente */
    transform: translateY(-70%); /* Ajuste fino para subir um pouco */
    transition: background-color 0.3s ease;
    position: absolute; /* Garante posicionamento absoluto */
    z-index: 10;
}
.cases-next:hover,
.cases-prev:hover {
    background-color: rgba(255, 255, 255, 1);
}

.cases-next { right: 15px; } /* Posição da seta direita */
.cases-prev { left: 15px; } /* Posição da seta esquerda */

.cases-next::after,
.cases-prev::after {
    font-family: swiper-icons;
    font-size: 1.2rem;
    font-weight: bold;
}
.cases-prev::after { content: 'prev'; }
.cases-next::after { content: 'next'; }

/* Estiliza o LINK (a tag <a>) */
.cases-subtitle-link {
    display: block; /* Faz o link ocupar a largura */
    text-decoration: none; /* Remove o sublinhado padrão */
    font-size: 1.1rem;
    text-align: center;
    color: var(--gray-color);
    font-weight: 500;
    margin-top: -25px; 
    margin-bottom: 40px; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Estiliza o H3 dentro do link */
.cases-subtitle-link h3 {
    font-size: inherit; /* Herda o tamanho do link */
    color: inherit; /* Herda a cor do link */
    font-weight: inherit; /* Herda o peso do link */
    text-transform: inherit; /* Herda o uppercase */
    letter-spacing: inherit; /* Herda o espaçamento */
    margin: 0; /* Remove margens internas do H3 */
}

/* Efeito HOVER no link */
.cases-subtitle-link:hover {
    color: var(--secondary-color); /* Muda para a cor dourada */
    transform: scale(1.03); /* Dá um leve zoom */}

    /* --- ESTILO DO BANNER DE COOKIES --- */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #071f2c;
  color: #f5f6f7;
  padding: 20px;
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

#cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  flex-grow: 1;
}

#cookie-banner a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: 500;
}

#cookie-banner button {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  margin-left: 20px;
  transition: background-color 0.3s ease;
}

#cookie-banner button:hover {
  background-color: #8e734a;
}

@media (max-width: 768px) {
  #cookie-banner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  #cookie-banner button {
    width: 100%;
    margin-left: 0;
  }
}
/* --- ESTILO DO LINK DE PRIVACIDADE NO FOOTER --- */
.footer-link {
    color: #f5f6f7; /* Cor do texto do footer */
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.footer-link:hover {
    color: #f5f6f7;
    opacity: 1;
    text-decoration: underline;
}

/* --- ESTILO DA PÁGINA DE PRIVACIDADE --- */
.about-content-block .privacy-list {
    text-align: left;
    margin-left: 40px;
    margin-bottom: 20px;
}
.about-content-block .privacy-list li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}