/*
Theme Name: Gigante Theme Filho
Theme URI: https://gigante.com.br
Description: Tema personalizado para Gigante Produtos Médicos
Author: Gigante
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: gigante
*/

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2d3436;
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   VARIÁVEIS DE CORES E AJUSTES GLOBAIS
======================================== */
:root {
  --primary: #00b894;
  --primary-dark: #00a383;
  --secondary: #2d3436;
  --text: #636e72;
  --light-gray: #f5f6fa;
  --border: #dfe6e9;
  --white: #ffffff;

  /* Ajuste do aspecto do HERO: valor padrão 36.45% (ex: 1920x700).
     Para 1920x1080 use 56.25% (1080/1920 = 0.5625).
     Ex.: --hero-aspect: 56.25%; */
  --hero-aspect: 36.45%;

  /* Botão no hero: ajuste facilmente a posição aqui */
  --hero-btn-top: 18%;
  --hero-btn-left: 9%;
}

/* ========================================
   TOP BAR
======================================== */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
}

.top-bar-left a:hover {
  opacity: 0.8;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flag-icon {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.2s;
}

.flag-icon:hover {
  transform: scale(1.1);
}

/* ========================================
   HEADER
======================================== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 60px;
  width: auto;
}

/* Menu Principal */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  font-weight: 500;
  color: var(--secondary);
  padding: 10px 0;
  display: block;
}

.main-nav a:hover {
  color: var(--primary);
}

/* Dropdown Ajustado */
.sub-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 120%;
  left: 0;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-radius: 8px;
  min-width: 250px;
  padding: 10px 0;
  z-index: 1100;
  transition: all 0.3s ease;
  border-top: 3px solid var(--primary);
}

.main-nav li:hover > .sub-menu,
.main-nav li.open > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.sub-menu li {
  padding: 0;
  width: 100%;
}

.sub-menu a {
  padding: 12px 20px;
  display: block;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.sub-menu li:last-child a {
  border-bottom: none;
}

.sub-menu a:hover {
  background: var(--light-gray);
  color: var(--primary);
  padding-left: 25px;
}

/* Menu Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--secondary);
}

/* ========================================
   HERO SLIDER - DEFINITIVO (PROPORCIONAL E ADAPTÁVEL)
======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    /* Isso cria o espaço exato da imagem (700 / 1920 = 36.45%) */
    padding-bottom: 39.45%; 
    height: 0;
    overflow: hidden;
    background: #fff;
}

/* No Mobile, mudamos a proporção para a imagem não ficar uma "tripa" fina */
@media (max-width: 768px) {
    .hero-slider {
        padding-bottom: 56.25%; /* Proporção 16:9 para mobile */
        height: 0;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
    background-size: cover; /* Volta para cover, mas agora com a proporção correta do container */
    background-position: center center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* POSICIONAMENTO DO BOTÃO - AJUSTADO PELA IMAGEM */
.slide-content {
    position: absolute;
    top: 90%;  /* Ajuste aqui para subir/descer */
    left: 45%; /* Ajuste aqui para esquerda/direita */
    transform: translateY(-50%);
    z-index: 10;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Ajuste do botão no Mobile */
@media (max-width: 768px) {
    .slide-content {
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
    }
    .btn-whatsapp {
        font-size: 13px;
        padding: 10px 20px;
    }
}
/* ========================================
   BOTÕES GERAIS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,184,148,0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--light-gray);
}

/* ========================================
   SEÇÕES
======================================== */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text);
  max-width: 600px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto 40px;
}

/* ========================================
   DIFERENCIAIS - CORREÇÃO DOS ÍCONES E TEXTOS
======================================== */
.diferenciais {
    background-color: #444 !important;
    padding: 60px 0 !important;
    color: #fff !important;
}

.diferenciais-grid {
    display: flex !important;
    justify-content: space-around !important;
    align-items: flex-start !important;
    max-width: 1200px;
    margin: 0 auto;
}

.diferencial-item {
    text-align: center !important;
    flex: 1;
    position: relative;
}

/* ESCONDER QUALQUER TEXTO FANTASMA QUE ESTEJA ATRÁS DAS IMAGENS */
.diferencial-icon {
    margin-bottom: 20px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0 !important; /* Mata qualquer texto residual */
    color: transparent !important;
}

.diferencial-icon img {
    width: 60px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    max-width: none !important;
}

.diferencial-item h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 10px 0 !important;
}

.diferencial-item p {
    font-size: 14px !important;
    color: #ccc !important;
}
/* Ajuste do Botão Explorar Produtos */
.btn-explorar {
    display: inline-block !important;
    padding: 12px 40px !important;
    border: 2px solid #00a88f !important; /* Verde água da Gigante */
    color: #ffffff !important; /* Texto branco para contrastar com o fundo cinza */
    text-decoration: none !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
    margin-top: 20px !important;
}

.btn-explorar:hover {
    background: #00a88f !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 168, 143, 0.3) !important;
}

/* ========================================
   QUEM SOMOS (Home)
======================================== */
.about-section {
  background: #f9f9f9; /* Cor de fundo leve para destacar */
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Imagem */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  object-fit: cover;
  display: block;
}

/* Conteúdo */
.about-content h2 {
  color: #00a88f; /* Verde Gigante */
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  color: #555555; /* texto em cinza escuro para melhor leitura */
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 16px;
  max-width: 600px; /* melhora legibilidade em telas grandes */
}

/* Botão (contraste melhorado) */
.about-content .btn-explorar {
  color: #00a88f !important;
  border: 2px solid #00a88f !important;
  background: transparent !important;
  padding: 12px 32px !important;
  border-radius: 40px !important;
  font-weight: 700 !important;
  display: inline-block !important;
  transition: all 0.25s ease !important;
}

.about-content .btn-explorar:hover {
  background: #00a88f !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0, 168, 143, 0.18) !important;
}

/* Responsivo */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-content p { margin: 20px auto; }
  .about-image { order: -1; } /* opcional: mostra a imagem acima do texto em mobile */
}

/* ========================================
   LINHAS DE PRODUTOS (AJUSTADO - ALTERNÂNCIA DE LAYOUT)
======================================== */
.product-line {
  padding: 80px 0;
  background: #fff;
}

.product-line:nth-child(even) {
  background: var(--light-gray);
}

/* Grid base: texto + imagem */
.product-line-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  grid-template-areas: "content image";
  gap: 60px;
  align-items: center;
}

/* Grid alternado para seções pares: imagem + texto */
.product-line:nth-child(even) .product-line-grid {
  grid-template-columns: 520px 1fr;
  grid-template-areas: "image content";
}

/* Áreas do grid */
.product-line-content {
  grid-area: content;
}

.product-line-image {
  grid-area: image;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Imagem */
.product-line-image img {
  width: 100%;
  max-width: 520px;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  display: block;
}

/* Conteúdo textual */
.product-line-content h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.product-line-content p {
  color: #555555;
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 16px;
  max-width: 600px;
}

/* Botão padrão outline */
.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 168, 143, 0.18);
}

/* Responsivo */
@media (max-width: 992px) {
  .product-line-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "content";
    text-align: center;
  }
  .product-line-content p {
    margin: 20px auto;
  }
  .product-line-image {
    order: -1;
  }
  .product-line-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }
}

/* ========================================
   BANNER WHATSAPP
======================================== */
.whatsapp-banner {
  background: var(--primary);
  padding: 50px 0;
  text-align: center;
  color: var(--white);
}

.whatsapp-banner h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.whatsapp-banner p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* ========================================
   PRODUTOS EM DESTAQUE
======================================== */
.featured-products {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-card-header {
  background: var(--light-gray);
  padding: 15px;
  text-align: center;
}

.product-card-header h4 {
  font-size: 14px;
  color: var(--secondary);
  margin: 0;
}

.product-card-image {
  padding: 20px;
  text-align: center;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image img {
  max-height: 160px;
  object-fit: contain;
}

.product-card-footer {
  padding: 15px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.product-card-footer a {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.product-card-footer a:hover {
  color: var(--primary-dark);
}

/* ========================================
   CTA ORÇAMENTO
======================================== */
.cta-orcamento {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e272e 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-orcamento h3 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-orcamento p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
  background: var(--secondary);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-col p,
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.8;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.7;
}

/* ========================================
   PAGE BANNER (Páginas Internas)
======================================== */
.page-banner {
  background: var(--primary);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.page-banner h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 14px;
  opacity: 0.8;
}

.breadcrumb a {
  color: var(--white);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ========================================
   PÁGINA QUEM SOMOS
======================================== */
.quem-somos-content {
  padding: 80px 0;
}

.quem-somos-content h2 {
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 30px;
}

.quem-somos-content p {
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 20px;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.valor-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.valor-card h4 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 15px;
}

.valor-card p {
  color: var(--text);
  font-size: 14px;
}

/* ========================================
   PÁGINA CONTATO
======================================== */
.contato-section {
  padding: 80px 0;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contato-form .form-group {
  margin-bottom: 20px;
}

.contato-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary);
}

.contato-form input,
.contato-form select,
.contato-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contato-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contato-info h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.contato-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contato-info-item i {
  color: var(--primary);
  font-size: 20px;
  margin-top: 3px;
}

.contato-mapa {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.contato-mapa iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ========================================
   PÁGINA PRODUTOS
======================================== */
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 80px 0;
}

.linha-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.linha-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.linha-card-image {
  height: 200px;
  overflow: hidden;
}

.linha-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.linha-card:hover .linha-card-image img {
  transform: scale(1.1);
}

.linha-card-content {
  padding: 20px;
  text-align: center;
}

.linha-card-content h3 {
  font-size: 18px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.linha-card-content p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 15px;
}

/* ========================================
   RESPONSIVO
======================================== */
@media (max-width: 1024px) {
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid,
  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
  }

  .sub-menu {
    position: static;
    box-shadow: none;
    background: var(--light-gray);
    display: none;
  }

  .main-nav li.open > .sub-menu {
    display: block;
  }

  /* Mobile hero adjustments */
  .hero-slider {
    padding-bottom: 56.25%;
  }

  .slide-content {
    padding: 40px 20px;
  }

  .slide-content h1 {
    font-size: 28px;
  }

  .slide-features {
    flex-wrap: wrap;
  }

  .about-grid,
  .product-line-grid,
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-line:nth-child(even) .product-line-grid {
    direction: ltr;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid,
  .produtos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .valores-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .diferenciais-grid,
  .products-grid,
  .produtos-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    padding-bottom: 56.25%;
  }

  .slide-content h1 {
    font-size: 24px;
  }

  section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 26px;
  }
}
/* Scrollbar horizontal para as abas da tabela de cidades */
.seo-tabs-header {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}
.seo-tabs-header::-webkit-scrollbar {
  height: 8px;
}
.seo-tabs-header::-webkit-scrollbar-track {
  background: transparent;
}
.seo-tabs-header::-webkit-scrollbar-thumb {
  background: #cbd8e6;
  border-radius: 8px;
}

/* Aumentar a altura da área de conteúdo para melhor visualização */
.seo-tabs-content {
  max-height: 450px !important;
}

/* Ajustar padding e fonte dos botões para caber mais */
.seo-tab-btn {
  padding: 10px 12px !important;
  font-size: 12px !important;
}

/* Estilização do ícone de informação no menu */
.menu-item-informacao a::before {
    content: "\f05a"; /* Código FontAwesome para o ícone de informação (i) */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    color: #fcc606; /* Amarelo Gigante */
    transition: all 0.3s ease;
}

.menu-item-informacao a:hover::before {
    color: #0056b3; /* Azul Gigante no Hover */
}

/* Ajuste para mobile se necessário */
@media (max-width: 768px) {
    .menu-item-informacao a::before {
        font-size: 1.2em;
    }
}

.menu-item-informacao > a {
    position: relative;
    padding-left: 30px; /* espaço para o ícone */
    display: inline-block;
}

.menu-item-informacao > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;  /* ajuste o tamanho conforme o PNG */
    height: 20px;
    background-image: url('https://wordpress.gigante.net.br/wp-content/uploads/2026/03/info.png');
    background-size: contain;
    background-repeat: no-repeat;
}

/* ============================
   QUI - STYLES: Página Quem Somos (VERSÃO GRID PRECISA - ATUALIZADA)
   ============================ */

#pagina-quem-somos {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

#pagina-quem-somos .secao-alternada {
    display: grid !important; 
    grid-template-columns: 1fr 1fr; 
    margin-bottom: 20px !important;
    border-radius: 15px;
    overflow: hidden;
    background: none !important; 
}

/* Inversão das colunas */
#pagina-quem-somos .secao-alternada.flex-reverso {
    direction: rtl; 
}
#pagina-quem-somos .secao-alternada.flex-reverso > * {
    direction: ltr; 
}

#pagina-quem-somos .coluna-imagem {
    line-height: 0;
}

#pagina-quem-somos .coluna-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#pagina-quem-somos .coluna-texto {
    padding: 60px;
    background-color: #555555 !important;
    color: #ffffff !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#pagina-quem-somos .coluna-texto h2, 
#pagina-quem-somos .coluna-texto h3 {
    color: #00a88f !important;
    margin-top: 0;
    font-size: 32px;
}

/* AJUSTE: Política de Qualidade */
#pagina-quem-somos .politica-box {
    background: #fff;
    padding: 60px 50px; /* Aumentei um pouco o respiro interno */
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    margin-top: 20px;
}

#pagina-quem-somos .politica-box h2 {
    color: #00a88f !important; /* Cor verde padrão do site */
    font-size: 42px !important; /* Título maior conforme solicitado */
    margin-bottom: 25px;
    font-weight: bold;
}

#pagina-quem-somos .politica-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

/* Mobile */
@media (max-width: 800px) {
    #pagina-quem-somos .secao-alternada {
        grid-template-columns: 1fr !important;
    }
    #pagina-quem-somos .secao-alternada.flex-reverso {
        direction: ltr;
    }
    #pagina-quem-somos .coluna-texto {
        padding: 30px;
    }
    #pagina-quem-somos .politica-box h2 {
        font-size: 30px !important; /* Ajuste para não estourar no celular */
    }
}

/* Botão Explorar Produtos - Forçando arredondamento */
.btn-explorar {
    display: inline-block !important;
    padding: 12px 35px !important;
    border: 2px solid #00a88f !important;
    border-radius: 25px !important; /* Aumentei para 25px para ficar bem visível a mudança */
    color: #ffffff !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

.btn-explorar:hover {
    background-color: #00a88f !important;
    color: #ffffff !important;
}

/* Padronização dos Botões da Hero (Banners) */
.hero-slider .btn, 
.hero-slider .button,
.n2-ss-button-container a, /* Seletor comum para Smart Slider */
.tp-caption a.btn {         /* Seletor comum para Slider Revolution */
    background-color: #00a88f !important; /* Verde Gigante */
    color: #ffffff !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
    border: none !important;
    transition: background-color 0.3s ease !important;
    display: inline-block !important;
}

/* Efeito ao passar o mouse */
.hero-slider .btn:hover, 
.hero-slider .button:hover,
.n2-ss-button-container a:hover,
.tp-caption a.btn:hover {
    background-color: #008d77 !important; /* Um verde levemente mais escuro para o hover */
    color: #ffffff !important;
}
/* 2. Títulos de Produtos e Informações (Fundo Branco) -> Texto VERDE GIGANTE */
.single-produto h1, 
.single-product h1,
.single-informacao h1,
.info-header h1,
main h1 {
    color: #00a88f !important;
}

/* 3. Ajuste para o Breadcrumb (Trilha de navegação) */
.breadcrumb a, .breadcrumb span {
    color: #ffffff !important;
    opacity: 0.9;
}


/* Força o título da página de representantes para BRANCO */
.page-template-representantes_cards h1,
.page-id-representantes h1,
.breadcrumb-container + h1,
.page-header h1 {
    color: #ffffff !important;
}