/* ===== ESTILOS GERAIS ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), url(./assets/fonts/open-sans.woff2) format('woff2');
}

.search-snippets {
  display: none;
}


/* Estilos para Títulos (H1-H6) */
h1, h2, h3, h4, h5, h6 {
  color: var(--page-heading-color); /* Usando a cor de título dinâmica da página */
  font-weight: 700; /* Títulos mais fortes */
  margin-bottom: 0.8em; /* Espaçamento abaixo dos títulos */
  text-rendering: optimizeLegibility; /* Melhor renderização da fonte */
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); /* Responsivo e grande para destaque */
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  position: relative; /* Para possíveis underlines ou destaques visuais */
  padding-bottom: 0.5rem; /* Espaço para um possível underline */
}

/* Exemplo: um underline sutil para H2 */
h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px; /* Largura do underline */
  height: 4px; /* Espessura */
  background-color: var(--page-primary-color); /* Cor do underline dinâmica */
  border-radius: 2px;
}

/* Estilos para parágrafos */
p {
  font-size: 1.1rem; /* Um pouco maior para melhor leitura */
  margin-bottom: 1em;
}

/* Estilos para links */
a {
  color: var(--page-link-color); /* Cor do link dinâmica */
  text-decoration: none; /* Remove underline padrão */
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
  color: var(--page-secondary-color); /* Cor de hover dinâmica */
  text-decoration: underline; /* Adiciona underline no hover */
}


.pag-out-of-stock {
  color: var(----cor-vermelho-alerta-600);
  font-weight: 600;
}

.pag-added {
  background: var(--cor-verde-sucesso-confirma-500) !important;
}

/* ===== HEADER & MENU ===== */
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: var(--z-index-menu);
}

.pag-logo img {
  height: 50px;
  transition: transform var(--transition-speed) ease;
}

.pag-logo:hover img { transform: scale(1.05); }

.pag-top-bar {
  height: 40px;
  background-color: var(--cor-azul-escuro-600);
  position: relative;
  z-index: var(--z-index-submenu);
}

.pag-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.pag-top-bar .pag-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.pag-social-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pag-top-contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color:var(--cor-branco);
  font-size: 14px;
  transition: transform var(--transition-speed) ease;
}

.pag-top-contact-btn:hover { transform: translateY(-2px); }

.pag-social-media {
  display: flex;
  gap: 15px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.pag-social-media a {
  color: var(--cor-branco);
  font-size: 16px;
  transition: color var(--transition-speed) ease;
}

.pag-social-media a:hover { color: var(--cor-azul-escuro-600); }

.pag-menu {
  width: 100%;
  background: var(--cor-azul-black-900);
  padding: 0;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.pag-menu .pag-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pag-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--cor-branco);
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;
  transition: background-color var(--transition-speed) ease;
  border-radius: 4px;
}

.pag-menu-toggle:hover, .pag-menu-toggle:focus { background-color: var(--cor-azul-noturno-700); }

.pag-main-nav { display: flex; }

.pag-menu-list {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pag-menu-item { position: relative; }

.pag-menu-list > li > a {
  color: var(--cor-branco);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  border-radius: 4px;
  transition: all var(--transition-speed) ease;
  font-weight: 500;
}

.pag-menu-list > li > a:hover,
.pag-menu-list > li > a:focus {
  background: var(--cor-azul-noturno-700);
  box-shadow: var(--shadow-sm);
}

.pag-menu-list > li > a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--cor-azul-noturno-700);
  transition: all var(--transition-speed) ease;
}

.pag-menu-list > li > a:hover::after,
.pag-menu-list > li > a:focus::after {
  width: 60%;
  left: 20%;
}

.pag-submenu {
  position: absolute;
  list-style: none;
  min-width: 280px;
  padding: 10px 0;
  margin: 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
  z-index: 10;
}

.pag-level-2 {
  background: var(--cor-azul-noturno-700);
  top: 100%;
  left: 0;
}

.pag-level-3 {
  background: var(--cor-azul-profundo-400);
  top: 100%;
  left: 0;
}

.pag-menu-item.pag-has-dropdown:hover > .pag-submenu,
.pag-menu-item.pag-has-dropdown:focus-within > .pag-submenu,
.pag-submenu.pag-show {
  opacity: 1;
  visibility: visible;
}

.pag-submenu li a {
  color: var(--cor-branco);
  padding: 12px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-speed) ease;
  white-space: normal;
}

.pag-level-2 li a:hover,
.pag-level-2 li a:focus {
  background: var(--cor-azul-black-900);
  padding-left: 30px;
}

.pag-level-3 li a:hover,
.pag-level-3 li a:focus {
  background: var(--cor-azul-noturno-700);       /* Textos escuros */
  padding-left: 35px;
}

.pag-menu-list .fas {
  font-size: 0.9em;
  transition: transform var(--transition-speed) ease;
}

.pag-menu-item:hover > a > .fa-caret-down,
.pag-menu-item:focus-within > a > .fa-caret-down {
  transform: rotate(180deg);
}

.pag-level-2 .fa-caret-right { transform: rotate(0); }

.pag-level-2 .pag-menu-item:hover > a > .fa-caret-right,
.pag-level-2 .pag-menu-item:focus-within > .pag-menu-item > .fa-caret-right {
  transform: rotate(90deg);
}

/* ===== RESPONSIVIDADE DO MENU ===== */
@media (max-width: 768px) {
  .pag-menu-toggle { display: block; }

  .pag-main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /* Elementos premium */
    background: var(--cor-azul-petroleo-800);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .pag-main-nav.pag-active {
    max-height: 1000px;
    overflow-y: auto;
  }

  .pag-menu-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .pag-menu-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
  }

  .pag-menu-list > li > a {
    padding: 15px 20px;
    width: 100%;
    justify-content: space-between;
  }

  .pag-menu-list > li > a::after { display: none; }

  .pag-submenu {
    position: static;
    width: 100%;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.5s ease;
    padding: 0;
  }

  .pag-submenu.pag-show { max-height: 1000px; }

  .pag-level-2 li a { padding-left: 30px; }
  .pag-level-3 li a { padding-left: 45px; }

  .pag-menu-item.pag-has-dropdown:hover > .pag-submenu,
  .pag-menu-item.pag-has-dropdown:focus-within > .pag-submenu {
    max-height: 0;
  }

  .pag-menu-item.pag-has-dropdown > .pag-submenu.pag-show { max-height: 1000px; }

  .pag-menu-item.pag-active > a > .fa-caret-down { transform: rotate(180deg); }
  .pag-menu-item.pag-active > a > .fa-caret-right { transform: rotate(90deg); }
}

/* ===== WHATSAPP FLUTUANTE ===== */
.pag-whatsapp-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  background: linear-gradient(135deg, 
    var(--cor-Verde-what-sombra-600) 0%, 
    var(--cor-Verde-what-padrao-500) 50%, 
    var(--cor-Verde-what--destaque-300) 100%);
  color: var(--cor-branco-puro-50);
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.4);
  z-index: 10000;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border: none;
  cursor: pointer;
  animation: pulseGlow 2.5s infinite ease-in-out;
  /* Efeito de brilho sutil */
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Efeito de brilho animado */
.pag-whatsapp-flutuante::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: shineMove 3s linear infinite;
  opacity: 0.7;
}

@keyframes shineMove {
  0% { left: -75%; }
  100% { left: 130%; }
}

/* Efeito de pulsação */
@keyframes pulseGlow {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); 
  }
  50% { 
    box-shadow: 0 0 20px 10px rgba(37, 211, 102, 0.2); 
  }
}

/* Ícone do WhatsApp */
.pag-whatsapp-flutuante i { 
  font-size: 1.4em;
  transition: transform 0.3s ease;
}

/* Efeito hover */
.pag-whatsapp-flutuante:hover {
  transform: scale(1.07) translateY(-3px);
  background: linear-gradient(135deg, 
    var(--cor-Verde-what-sombra-600) 0%, 
    var(--cor-Verde-what--hover-400) 50%, 
    var(--cor-Verde-what--destaque-300) 100%);
  box-shadow: 0 10px 28px rgba(93, 245, 142, 0.5);
}

.pag-whatsapp-flutuante:hover i {
  transform: scale(1.1);
}

/* Responsivo */
@media (max-width: 768px) {
  .pag-whatsapp-flutuante {
    padding: 12px 20px;
    font-size: 1rem;
    bottom: 15px;
    right: 15px;
  }
  
  .pag-whatsapp-flutuante i { 
    font-size: 1.2em;
  }
}

@media (max-width: 576px) {
  .pag-whatsapp-flutuante {
    padding: 10px 18px;
    font-size: 0.9rem;
    gap: 8px;
  }
  
  .pag-whatsapp-flutuante i { 
    font-size: 1.1em;
  }
}

/* ===== HERO SECTION ===== */

.pag-hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.pag-hero-section-principal {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.pag-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.pag-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.85)
  );
  z-index: 2;
}

/* ===== CONTENT ===== */
.pag-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;    /* Conteúdo alinhado à esquerda */
  justify-content: center;
  width: 90vw;               /* Conteúdo ocupa 90% da largura */
  height: calc(100vh - 40vh); /* 60vh com 20vh de margem top e bottom */
  margin: 20vh auto;         /* Espaçamento vertical */
  text-align: left;          /* Texto alinhado à esquerda */
  padding: 0 1rem;
}

/* ===== SLIDER TEXT ===== */
.pag-hero-text-slider {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;   /* Texto alinhado à esquerda */
  gap: 1rem;
}

.pag-hero-text-slider .pag-slide {
  opacity: 0;
  position: absolute;
  width: 100%;
  animation: slideUp 20s infinite;
  padding: 1rem;
}

.pag-hero-text-slider .pag-slide:nth-child(1) { animation-delay: 0s; }
.pag-hero-text-slider .pag-slide:nth-child(2) { animation-delay: 5s; }
.pag-hero-text-slider .pag-slide:nth-child(3) { animation-delay: 10s; }
.pag-hero-text-slider .pag-slide:nth-child(4) { animation-delay: 15s; }

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(100%); }
  5% { opacity: 1; transform: translateY(0%); }
  20% { opacity: 1; transform: translateY(0%); }
  25% { opacity: 0; transform: translateY(-50%); }
  100% { opacity: 0; transform: translateY(-50%); }
}

/* ===== TITLES AND TEXT ===== */
.pag-hero-text-slider h2 {
  font-size: clamp(2.2rem, 4vw, 3rem); /* h2 maior */
  font-weight: 700;
  color: var(--cor-amarelo-suave-200);
  letter-spacing: 1px; /* Mais espaçamento entre letras */
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.pag-hero-text-slider p {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--cor-branco);
  line-height: 1.6;         /* Melhor leitura */
  letter-spacing: 0.5px;    /* Espaçamento leve */
  margin-bottom: 2.5rem;    /* Mais espaço antes do CTA */
  max-width: 800px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===== CTA BUTTON ===== */
.pag-cta {
  background: var(--cor-amarelo-suave-200);
  color: #1a1a1a;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  align-self: flex-start; /* Alinhado à esquerda */
  
}

.pag-cta:hover {
background: var(--cor-amarelo-suave-200);
  transform: scale(1.05);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .pag-hero-content {
    width: 95vw;
    margin: 15vh auto;
    height: calc(100vh - 30vh);
  }
  .pag-hero-text-slider h2 {
    font-size: 1.8rem;
  }
  .pag-hero-text-slider p {
    font-size: 1rem;
  }
  .pag-cta {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
  }
}



/* Efeito de clique */
.pag-btn-primary:active {
  transform: translateY(-1px);
  box-shadow:
    0 3px 10px rgba(255, 77, 0, 0.6),
    0 5px 15px rgba(255, 77, 0, 0.4);
}

/* Ícone com animação */
.pag-btn-primary i {
  transition: transform 0.3s ease;
}

.pag-btn-primary:hover i {
  transform: translateX(3px);
}

.pag-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
      0 7px 20px rgba(231, 76, 60, 0.4),
      0 12px 25px rgba(231, 76, 60, 0.2);
}

.pag-btn-primary:active {
  transform: translateY(1px);
  box-shadow:
      0 2px 10px rgba(231, 76, 60, 0.4),
      0 4px 15px rgba(231, 76, 60, 0.2);
}

.pag-btn-primary::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  z-index: -1;
  transition: left 0.6s ease;
}

.pag-btn-primary:hover::before { left: 130%; }

.pag-btn-primary i {
  animation: pulse 1.8s infinite ease-in-out;
  transition: transform 0.3s ease;
}

.pag-btn-primary:hover i { animation: pulseFast 0.8s infinite ease-in-out; }

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes pulseFast {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

@media (max-width: 768px) {

  .pag-btn-primary { padding: 1rem 1.8rem; }
}

@media (max-width: 480px) {
  .pag-btn-primary { width: 100%; max-width: 320px; }
}



/* ===== CARDS ================================================= ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ===== ESTRUTURA PRINCIPAL ===== */
.pag-services-section {
  padding: var(--spacing-lg) 0;
}



.pag-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}



/* ===== BOTÃO PRINCIPAL WHATSAPP ===== */
.pag-btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(
    135deg,
    var(--cor-Verde-what-padrao-500) 0%,
    var(--cor-Verde-what--hover-400) 100%
  );
  color: white;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  margin-top: var(--spacing-md);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .pag-services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .pag-service-card__image {
    height: 200px;
  }
}

/* ===== CARDS ================================================= ===== */


.pag-card-link {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.pag-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.pag-benefit-card {
  background: var(--contato-white);
  border-radius: var(--border-radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-speed) ease;
  border-top: 4px solid var(--color-primary-500);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pag-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary-700);
}

.pag-benefit-card__icon {
  width: 70px;
  height: 70px;
  background: rgba(5, 80, 127, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-speed) ease;
}

.pag-benefit-card:hover .pag-benefit-card__icon {
  background: rgba(255, 152, 0, 0.15);
  transform: scale(1.1);
}

.pag-benefit-card__icon i {
  font-size: 1.8rem;
  color: var(--color-primary-500);
  transition: all var(--transition-speed) ease;
}

.pag-benefit-card:hover .pag-benefit-card__icon i { color: var(--color-secondary-700); }

.pag-benefit-card h3 {
  font-size: 1.35rem;
  color: var(--color-primary-900);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.pag-benefit-card p {
  color: var(--contato-text);
  line-height: 1.7;
  margin-bottom: 0;
}

.pag-links-section {
  background: var(--contato-gray-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 20px;
  align-self: start;
}

.pag-section-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-secondary-700);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pag-links-section h2 {
  font-size: 1.5rem;
  color: var(--color-primary-800);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.pag-links-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-primary-500);
  border-radius: 2px;
}

.pag-link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pag-modern-button {
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  background: var(--contato-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-speed) ease;
  text-decoration: none;
  color: var(--contato-dark);
  border: 1px solid var(--light-color);
  position: relative;
  overflow: hidden;
}

.pag-modern-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-500);
}

.pag-modern-button:hover .pag-link-icon-box {
  background: rgba(5, 80, 127, 0.15);
}

.pag-modern-button:hover .pag-link-icon-box i { color: var(--color-primary-500); }

.pag-link-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(5, 80, 127, 0.1);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  transition: all var(--transition-speed) ease;
}

.pag-link-icon-box i {
  font-size: 1.2rem;
  color: var(--color-primary-500);
  transition: all var(--transition-speed) ease;
}

.pag-modern-button span {
  font-weight: 600;
  font-size: 0.95rem;
  flex-grow: 1;
}

.pag-help-box {
  background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-600));
  border-radius: var(--border-radius);
  padding: 1.8rem;
  text-align: center;
  margin-top: 2.5rem;
}

.pag-help-box h4 {
  color: var(--text-light);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.pag-help-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.pag-help-button {
  display: inline-block;
  background: var(--text-light);
  color: var(--color-primary-900);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  box-shadow: var(--shadow-sm);
}

.pag-help-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--color-primary-100);
}

.pag-cta-section {
  background: linear-gradient(135deg, var(--color-primary-800), var(--color-primary-900));
  padding: 3.5rem 2rem;
  text-align: center;
  margin-top: 4rem;
  grid-column: 1 / -1;
}

.pag-cta-section .pag-container {
  max-width: 800px;
  margin: 0 auto;
}

.pag-cta-section h2 {
  font-size: 2.2rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.pag-cta-section h2 span { color: var(--color-secondary-700); font-weight: 700; }

.pag-cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 1.8rem;
}

.pag-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--color-secondary-700);
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  box-shadow: var(--shadow-md);
}

.pag-btn-secondary i { margin-right: 10px; font-size: 1.3rem; }

.pag-btn-secondary:hover {
  background: var(--color-secondary-900);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
  .pag-card-link { grid-template-columns: 1fr; }
  .pag-links-section { order: 2; position: static; }
  .pag-card-lik-cta { order: 1; }
}

@media (max-width: 768px) {
  .pag-benefits__grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .pag-btn-secondary { padding: 12px 24px; font-size: 1rem; }
  .pag-links-section { padding: 1.5rem; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.pag-benefit-card { animation: fadeInUp 0.6s ease-out; animation-fill-mode: both; }
.pag-benefit-card:nth-child(1) { animation-delay: 0.1s; }
.pag-benefit-card:nth-child(2) { animation-delay: 0.2s; }
.pag-benefit-card:nth-child(3) { animation-delay: 0.3s; }
.pag-benefit-card:nth-child(4) { animation-delay: 0.4s; }
.pag-benefit-card:nth-child(5) { animation-delay: 0.5s; }
.pag-benefit-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== SEÇÃO DE MAPAS E CIDADES ===== */
.pag-areas-section { padding: 60px 0; background-color: var(--light-color); }

.pag-areas-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.pag-areas-visual-column { flex: 2; min-width: 300px; display: flex; }

.pag-visual-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
  width: 100%;
}

.pag-region-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pag-visual-container:hover .pag-region-map { transform: scale(1.05); }

.pag-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(1, 23, 46, 0.8), transparent);
  padding: 20px;
  color: var(--text-light);
}

.pag-location-marker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.pag-location-marker i { color: var(--color-secondary-700); }

.pag-areas-info-column { flex: 3; min-width: 300px; }

.pag-region-info h2 {
  font-size: 2rem;
  color: var(--color-primary-700);
  margin-bottom: 10px;
}

.pag-cities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.pag-city-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: var(--contato-white, #ffffff);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: var(--transition-smooth);
}

.pag-city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-color);
}

.pag-city-icon i {
  font-size: 1.8rem;
  color: var(--color-secondary-900);
  padding-top: 5px;
}

.pag-city-card h3 {
  font-size: 1.1rem;
  color: var(--color-primary-500);
  margin: 0 0 5px 0;
}

.pag-city-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.pag-faq-cities-section {
  width: 100%;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--color-primary-100);
}

.pag-more-cities { text-align: center; }

.pag-cities-toggle {
  background-color: transparent;
  border: 2px solid var(--color-primary-500);
  color: var(--color-primary-500);
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pag-cities-toggle:hover {
  background-color: var(--color-primary-500);
  color: var(--text-light);
}

.pag-cities-toggle i { transition: transform 0.3s ease; }

.pag-cities-toggle[aria-expanded="true"] i { transform: rotate(180deg); }

.pag-cities-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, margin-top 0.5s ease-in-out;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--dark-color);
}

.pag-cities-expanded.pag-visible {
  margin-top: 25px;
  max-height: 500px;
}

@media (max-width: 992px) {
  .pag-areas-content-wrapper { flex-direction: column; }
}

/* ===== SEÇÃO DE CIDADES EXPANDIDAS ===== */
.pag-hoot-cities-section {
  width: 100%;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--color-primary-100);
}

.pag-hoot-more-cities { text-align: center; }

.pag-hoot-cities-toggle {
  background-color: transparent;
  border: 2px solid var(--color-primary-500);
  color: var(--color-primary-500);
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pag-hoot-cities-toggle:hover {
  background-color: var(--color-primary-500);
  color: var(--text-light);
}

.pag-hoot-cities-toggle i { transition: transform 0.3s ease; }

.pag-hoot-cities-toggle[aria-expanded="true"] i { transform: rotate(180deg); }

.pag-hoot-cities-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, margin-top 0.5s ease-in-out;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-dark);
}

.pag-hoot-cities-expanded.pag-visible {
  margin-top: 25px;
  max-height: 1000px;
}

.pag-expanded-content {
  padding: 25px;
  line-height: 1.7;
  color: #333;
  background: white;
}

.pag-expanded-content p { margin-bottom: 15px; font-size: 1.05rem; }
.pag-expanded-content strong { color: var(--color-secondary-500); }
.pag-city-highlight {
  background-color: #e8f5e9;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: bold;
  color: var(--color-dark);
}

@media (max-width: 768px) {
  .pag-hoot-cities-toggle { padding: 10px 20px; font-size: 0.95rem; }
}





/* --- =============================================================================
Estilos para a seção de FAQ 
---======================================================================== */

.pag-hoot-system {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1200px;
  margin: 40px auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.pag-faq-section {
  background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);

  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
   padding: 40px 0;
  background-color: #f8f9fa; /* Um fundo suave para a seção */
}


.pag-hoot-header {
  background: linear-gradient(to right, #2c3e50, #4a6491);
  color: white;
  text-align: center;
  padding: 25px;
  border-bottom: 5px solid #f39c12;
}

.pag-hoot-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.pag-hoot-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Estilos para as abas */
.pag-hoot-tabs-container {
  margin: 10px;
}

.pag-hoot-tabs-header {
  display: flex;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  height: 100px; /* Altura fixa para o carrossel */
  align-items: center; /* Centraliza verticalmente os itens */
}

.pag-hoot-tabs-header::-webkit-scrollbar {
  display: none;
}

.pag-hoot-tab {
  padding: 15px 10px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  border-radius: 8px;
  min-width: 100px;
  height: 100%; /* Ocupa a altura total do carrossel */
  scroll-snap-align: center;
  flex-shrink: 0;
  margin: 0 5px;
  color: #555;
  background-color: #f8f9fa;
  border: 2px solid transparent;
}

.pag-hoot-tab:hover {
  background-color: #e9ecef;
}

.pag-hoot-tab.active { /* Corrigido para 'active' */
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  border-color: #c0392b;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pag-hoot-tab i {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.pag-hoot-tab.active i { /* Corrigido para 'active' */
  transform: scale(1.1);
}

.pag-hoot-tab span {
  font-size: 0.9rem;
  text-align: center;
}

.pag-hoot-tab-content {
  display: none;
  padding: 0; /* Removido padding inicial para evitar conflito com max-height */
  animation: hoot-fadeIn 0.5s ease;
}

.pag-hoot-tab-content.active { /* Corrigido para 'active' */
  display: block;
  padding: 20px; /* Adicionado padding quando ativo */
}

@keyframes hoot-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Estilos para o FAQ */


.pag-hoot-faq-container {
    max-width: 100%; /* Alterado de 800px para 100% */
    margin: 0 auto;
    width: 100%; /* Ocupa toda a largura do container pai */
}

.pag-hoot-faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    width: 100%; /* Adicionado para ocupar toda a largura */
}

.pag-hoot-faq-item:hover {
  transform: translateY(-3px);
}

.pag-hoot-faq-question {
     background: linear-gradient(to right, #3498db, #2c3e50);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    width: 100%; /* Garante que a pergunta ocupe toda a largura */
     font-weight: 600;
    font-size: 1.1rem;
}



.pag-hoot-faq-question i {
  transition: transform 0.3s ease;
}

.pag-hoot-faq-answer {
    background-color: #fefefe;
    padding: 0 25px; /* Padding horizontal fixo */
    max-height: 0; /* Começa fechado */
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    border-radius: 0 0 10px 10px;
    border-top: 1px solid #e9ecef;
    width: 100%; /* Garante que a resposta ocupe toda a largura */
}



.pag-hoot-faq-answer p {
  padding: 0;
  line-height: 1.6;
  color: #444;
}

.pag-hoot-faq-item.pag-active .pag-hoot-faq-answer {
  max-height: 500px; /* Ou um valor maior que o conteúdo */
  padding-top: 20px;
  padding-bottom: 20px;
}

.pag-hoot-faq-item.pag-active .pag-hoot-faq-question i {
  transform: rotate(180deg);
}

/* Estilos para a seção de cidades */
.pag-hoot-cities-section {
  max-width: 800px;
  margin: 40px auto 20px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pag-hoot-more-cities {
  padding: 0;
}

.pag-hoot-cities-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 25px;
  background: linear-gradient(to right, #27ae60, #2ecc71);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pag-hoot-cities-toggle:hover {
  background: linear-gradient(to right, #219653, #27ae60);
}

.pag-hoot-cities-toggle[aria-expanded="true"] {
  background: linear-gradient(to right, #16a085, #1abc9c);
}

.pag-hoot-cities-toggle span {
  flex-grow: 1;
  text-align: left;
}

.pag-hoot-cities-toggle i {
  transition: transform 0.3s ease;
}

.pag-hoot-cities-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.pag-hoot-cities-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: #f9f9f9;
}

.pag-hoot-cities-expanded[aria-hidden="false"] {
  max-height: 500px;
}

.pag-hoot-cities-expanded p {
  padding: 20px 25px;
  line-height: 1.7;
  color: #333;
  border-top: 1px solid #eee;
}

.pag-hoot-cities-expanded strong {
  color: #27ae60;
}

.pag-hoot-city-highlight {
  background-color: #e8f5e9;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
  .pag-hoot-tab {
    min-width: 90px;
    height: 90px;
  }

  .pag-hoot-header h2 {
    font-size: 1.8rem;
  }

  .pag-hoot-cities-toggle {
    padding: 15px 20px;
    font-size: 1rem;
  }
}

/* Estilos para a seção de cidades */

.pag-cities-section {
  padding: 30px;
}

.pag-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.pag-city-card {
  background: var(--color-primary-100);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.pag-city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-primary-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pag-city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.pag-city-card:hover::before {
  transform: scaleX(1);
}

.pag-city-card i {
  font-size: 2.2rem;
  color: var(--color-primary-500);
  margin-bottom: 15px;
  transition: var(--transition-smooth);
}

.pag-city-card:hover i {
  transform: scale(1.1);
  color: var(--color-primary-700);
}

.pag-city-card h3 {
  color: var(--color-dark);
  font-size: 1.25rem;
  font-weight: 600;
}

/* --- Seção de Cidades Adicionais (Estilo aprimorado) --- */
.pag-hoot-cities-section {
  width: 100%;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--color-primary-100);
}

.pag-hoot-more-cities {
  text-align: center;
}

.pag-hoot-cities-toggle {
  background-color: transparent;
  border: 2px solid var(--color-primary-500);
  color: var(--color-primary-500);
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pag-hoot-cities-toggle:hover {
  background-color: var(--color-primary-500);
  color: var(--text-light);
}

.pag-hoot-cities-toggle i {
  transition: transform 0.3s ease;
}

.pag-hoot-cities-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.pag-hoot-cities-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, margin-top 0.5s ease-in-out;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-dark);
}

.pag-hoot-cities-expanded.pag-visible {
  margin-top: 25px;
  max-height: 1000px;
}

.pag-expanded-content {
  padding: 25px;
  line-height: 1.7;
  color: #333;
  background: white;
}

.pag-expanded-content p {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.pag-expanded-content strong {
  color: var(--color-secondary-500);
}

.pag-city-highlight {
  background-color: #e8f5e9;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: bold;
  color: var(--color-dark);
}

.pag-contact-section {
  text-align: center;
  padding: 20px;
  background: linear-gradient(to right, var(--color-dark), #34495e);
  color: white;
}

.pag-contact-info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-secondary-500);
  color: var(--text-light);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 10px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.pag-contact-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  background: var(--color-secondary-700);
}

.pag-footer {
  text-align: center;
  padding: 20px;
  color: #777;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
}

/* --- Responsividade (Media Queries) --- */
@media (max-width: 992px) {
  .pag-cities-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }

  .pag-header h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .pag-hoot-cities-toggle {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .pag-cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pag-city-card {
    padding: 15px;
  }

  .pag-expanded-content {
    padding: 20px 15px;
  }

  .pag-hoot-cities-toggle {
    width: 100%;
    padding: 12px 15px;
  }
}

/* --- Estilos para a seção de conta --- */
.pag-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 1rem;
}

.pag-modern-button {
  display: flex;
  align-items: center;
  background-color: #eaeef3;
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}

.pag-modern-button:hover {
  background-color: #fff;
  border-color: #007bff;
  color: #007bff;
  transform: translateY(-3px);
}

.pag-link-icon-box {
  margin-right: 12px;
  font-size: 1.4rem;
  color: #007bff;
}

/* CONTATO SECTION - CSS ISOLADO */
.pag-contact-section {
  grid-column: 1 / span 1;
  width: 100%;
  padding: 2rem 0;
  background: var(--color-primary-800);
  position: relative;
  isolation: isolate;
}

.pag-contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 44, 70, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.pag-contact-section .pag-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pag-contact-section  {
  margin-bottom: 3rem;
  text-align: center;
}

.pag-contact-section .pag-section-header h2 {
  font-size: 2.2rem;
  color: var(--menu-text);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.pag-contact-section .pag-section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #e74c3c, #f39c12);
  border-radius: 2px;
}

.pag-contact-section .pag-section-header p {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.pag-contact-container {
  background: var(--color-primary-700);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.pag-contact-info {
  padding: 2.5rem;
}

.pag-contact-info-text {
  margin-bottom: 2.5rem;
  text-align: center;
}

.pag-contact-info-text h3 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.pag-contact-info-text p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pag-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.pag-contact-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.pag-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #e74c3c, #f39c12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pag-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e0;
}

.pag-contact-card:hover::before {
  transform: scaleX(1);
}

.pag-contact-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}

.pag-contact-card.pag-phone .pag-contact-card__icon {
  background: linear-gradient(135deg, #5dabeb, #0b365e);
}

.pag-contact-card.pag-whatsapp .pag-contact-card__icon {
  background: linear-gradient(135deg, #48bb78, #38a169);
}

.pag-contact-card.pag-email .pag-contact-card__icon {
  background: linear-gradient(135deg, #9f7aea, #805ad5);
}

.pag-contact-card.pag-location .pag-contact-card__icon {
  background: linear-gradient(135deg, #f6ad55, #ed8936);
}

.pag-contact-card h3 {
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 0.8rem;
}

.pag-contact-card p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.pag-contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pag-contact-card.pag-phone .pag-contact-action {
  color: #2b6cb0;
  background: rgba(66, 153, 225, 0.1);
}

.pag-contact-card.pag-whatsapp .pag-contact-action {
  color: #2f855a;
  background: rgba(72, 187, 120, 0.1);
}

.pag-contact-card.pag-email .pag-contact-action {
  color: #6b46c1;
  background: rgba(159, 122, 234, 0.1);
}

.pag-contact-card.pag-location .pag-contact-action {
  color: #dd6b20;
  background: rgba(237, 137, 54, 0.1);
}

.pag-contact-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .pag-contact-info {
    padding: 1.5rem;
  }

  .pag-contact-section .pag-section-header h2 {
    font-size: 1.8rem;
  }

  .pag-contact-info-text h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .pag-contact-grid {
    grid-template-columns: 1fr;
  }

  .pag-contact-section .pag-section-header h2 {
    font-size: 1.6rem;
  }

  .pag-contact-card {
    padding: 1.5rem;
  }
}


/* PPCIP SECTION - CSS ISOLADO */
.pag-secao-conteudo {
  grid-column: 1 / span 1;
  width: 100%;
  padding: 3rem 0;
  background: #ffffff;
  position: relative;
  isolation: isolate;
  font-family: 'Open Sans', sans-serif;
}

.pag-secao-conteudo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.pag-secao-conteudo .pag-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Títulos da Seção */
.pag-section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.pag-section-title .pag-title-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.pag-section-title h1,
.pag-section-title h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.pag-section-title h1::after,
.pag-section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #e74c3c, #f39c12);
  border-radius: 2px;
}

.pag-section-title p {
  font-size: 1.1rem;
  color: #5a6a7f;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Seção de Serviço Principal */
.pag-service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eaeaea;
}

.pag-service-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #e74c3c;
}

.pag-service-text {
  padding: 1rem;
}

.pag-service-title {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.pag-service-title i {
  color: #e74c3c;
  font-size: 1.8rem;
}

.pag-service-description {
  color: #5a6a7f;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.pag-benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.pag-benefits-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #2c3e50;
  font-size: 1rem;
  line-height: 1.6;
}

.pag-benefits-list i {
  color: #27ae60;
  font-size: 1.2rem;
  margin-top: 3px;
}

/* Botão CTA */
.pag-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.pag-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(231, 76, 60, 0.4);
}

.pag-cta-button:active {
  transform: translateY(1px);
}

.pag-cta-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  z-index: -1;
  transition: left 0.6s ease;
}

.pag-cta-button:hover::before {
  left: 130%;
}

/* Imagem do Serviço */
.pag-service-image {
  position: relative;
  height: 100%;
  min-height: 350px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa, #e4e8eb);
}

.pag-image-placeholder {
  text-align: center;
  padding: 2rem;
}

.pag-image-placeholder i {
  font-size: 5rem;
  color: #e74c3c;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.pag-image-placeholder span {
  display: block;
  color: #5a6a7f;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Seção de Vantagens */
.pag-features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pag-feature-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eaeaea;
  position: relative;
  overflow: hidden;
}

.pag-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #e74c3c;
}

.pag-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #e74c3c, #f39c12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pag-feature-card:hover::before {
  transform: scaleX(1);
}

.pag-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border-radius: 50%;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.pag-feature-card:hover .pag-feature-icon {
  background: #e74c3c;
  color: white;
  transform: scale(1.1);
}

.pag-feature-title {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.pag-feature-description {
  color: #5a6a7f;
  font-size: 1rem;
  line-height: 1.7;
}

/* Seção de Contato */
.pag-contact-section {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
}

.pag-contact-section .pag-service-title {
  color: white;
}

.pag-contact-section .pag-service-title i {
  color: #f39c12;
}

.pag-contact-section .pag-service-description {
  color: rgba(255, 255, 255, 0.9);
}

.pag-contact-section .pag-benefits-list li {
  color: white;
}

.pag-contact-section .pag-benefits-list i {
  color: #f39c12;
}

.pag-contact-section .pag-cta-button {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.pag-contact-section .pag-image-placeholder i {
  color: #f39c12;
}

.pag-contact-section .pag-image-placeholder span {
  color: rgba(255, 255, 255, 0.8);
}

/* Conteúdo SEO (oculto) */
.pag-seo-content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pag-feature-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.pag-feature-card:nth-child(1) { animation-delay: 0.1s; }
.pag-feature-card:nth-child(2) { animation-delay: 0.2s; }
.pag-feature-card:nth-child(3) { animation-delay: 0.3s; }

/* Responsividade */
@media (max-width: 992px) {
  .pag-service-section {
    grid-template-columns: 1fr;
  }

  .pag-service-image {
    min-height: 250px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .pag-section-title h1,
  .pag-section-title h2 {
    font-size: 1.8rem;
  }

  .pag-service-title {
    font-size: 1.5rem;
  }

  .pag-features-section {
    grid-template-columns: 1fr;
  }

  .pag-conversion-banner-content {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .pag-section-title .pag-title-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .pag-cta-button {
    width: 100%;
    padding: 1rem;
  }

  .pag-document-badge {
    flex-direction: column;
    text-align: center;
  }
}

/* RENOVAÇÃO AVCB SECTION - CSS ISOLADO */
.pag-secao-conteudo {
  grid-column: 1 / span 1;
  width: 100%;
  padding: 3rem 0;
  background: var(--contato-white);
  position: relative;
  isolation: isolate;
  font-family: 'Open Sans', sans-serif;
}

.pag-secao-conteudo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.pag-secao-conteudo .pag-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Títulos da Seção */
.pag-section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.pag-section-title .pag-title-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-secondary-700), var(--color-secondary-900));
  color: var(--text-light);
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.pag-section-title h1 {
  font-size: 2.2rem;
  color: var(--color-primary-900);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.pag-section-title h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--color-secondary-700), var(--color-secondary-900));
  border-radius: 2px;
}

.pag-section-title p {
  font-size: 1.1rem;
  color: var(--color-primary-700);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Seção de Serviço Principal */
.pag-service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  background: var(--contato-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--contato-shadow);
  transition: var(--contato-transition);
  border: 1px solid var(--color-primary-100);
}

.pag-service-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--color-secondary-700);
}

.pag-service-text {
  padding: 1rem;
  position: relative;
}

.pag-urgency-badge {
  position: absolute;
  top: -15px;
  left: 0;
  background: var(--danger-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pag-document-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid var(--contato-success);
  padding: 12px;
  border-radius: 8px;
  margin: 1.5rem 0;
  color: var(--color-primary-800);
}

.pag-document-badge i {
  color: var(--contato-success);
  font-size: 1.5rem;
}

.pag-document-badge div {
  font-size: 0.9rem;
}

.pag-document-badge strong {
  color: var(--color-primary-900);
}

.pag-service-title {
  font-size: 1.8rem;
  color: var(--color-primary-900);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.pag-service-title i {
  color: var(--color-secondary-700);
  font-size: 1.8rem;
}

.pag-service-description {
  color: var(--color-primary-700);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.pag-service-description strong {
  color: var(--color-primary-900);
}

.pag-benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.pag-benefits-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-primary-800);
  font-size: 1rem;
  line-height: 1.6;
}

.pag-benefits-list li i {
  color: var(--contato-success);
  font-size: 1.2rem;
  margin-top: 3px;
}

.pag-benefits-list strong {
  color: var(--color-primary-900);
}

/* Cards de Requisitos */
.pag-requirement-card {
  background: var(--contato-gray-light);
  border-left: 4px solid var(--color-secondary-700);
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1rem;
}

.pag-requirement-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary-800);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.pag-requirement-card h4 i {
  color: var(--color-secondary-700);
}

.pag-requirement-card p {
  color: var(--color-primary-600);
  font-size: 0.95rem;
  margin-left: 28px;
}

/* Botão CTA */
.pag-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-secondary-700), var(--color-secondary-900));
  color: var(--text-light);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--contato-transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.pag-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(255, 152, 0, 0.4);
  background: linear-gradient(135deg, var(--color-secondary-900), var(--color-secondary-700));
}

.pag-cta-button:active {
  transform: translateY(1px);
}

.pag-cta-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  z-index: -1;
  transition: left 0.6s ease;
}

.pag-cta-button:hover::before {
  left: 130%;
}

/* Imagem do Serviço */
.pag-service-image {
  position: relative;
  height: 100%;
  min-height: 350px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary-100), var(--color-primary-300));
}

.pag-image-placeholder {
  text-align: center;
  padding: 2rem;
  color: var(--color-primary-800);
}

.pag-image-placeholder i {
  font-size: 5rem;
  color: var(--color-secondary-700);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.pag-image-placeholder span {
  display: block;
  color: var(--color-primary-700);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Seção de Vantagens */
.pag-features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pag-feature-card {
  background: var(--contato-white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: var(--contato-transition);
  border: 1px solid var(--color-primary-100);
  position: relative;
  overflow: hidden;
}

.pag-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--color-secondary-700);
}

.pag-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--color-secondary-700), var(--color-secondary-900));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pag-feature-card:hover::before {
  transform: scaleX(1);
}

.pag-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 152, 0, 0.1);
  color: var(--color-secondary-700);
  border-radius: 50%;
  font-size: 2rem;
  transition: var(--contato-transition);
}

.pag-feature-card:hover .pag-feature-icon {
  background: var(--color-secondary-700);
  color: var(--text-light);
  transform: scale(1.1);
}

.pag-feature-title {
  font-size: 1.4rem;
  color: var(--color-primary-900);
  margin-bottom: 1rem;
}

.pag-feature-description {
  color: var(--color-primary-600);
  font-size: 1rem;
  line-height: 1.7;
}

/* Seção de Contato */
.pag-service-section[itemtype="https://schema.org/ContactPoint"] {
  background: rgba(0, 80, 136, 0.6);
  color: var(--text-light);
  backdrop-filter: blur(5px);
}

.pag-service-section[itemtype="https://schema.org/ContactPoint"] .pag-service-title {
  color: var(--text-light);
}

.pag-service-section[itemtype="https://schema.org/ContactPoint"] .pag-service-title i {
  color: var(--color-secondary-700);
}

.pag-service-section[itemtype="https://schema.org/ContactPoint"] .pag-service-description {
  color: rgba(255, 255, 255, 0.9);
}

.pag-service-section[itemtype="https://schema.org/ContactPoint"] .pag-benefits-list li {
  color: var(--text-light);
}

.pag-service-section[itemtype="https://schema.org/ContactPoint"] .pag-benefits-list i {
  color: var(--color-secondary-700);
}

.pag-service-section[itemtype="https://schema.org/ContactPoint"] .pag-image-placeholder {
  color: var(--color-primary-100);
}

.pag-service-section[itemtype="https://schema.org/ContactPoint"] .pag-image-placeholder i {
  color: var(--color-primary-100);
}

/* Banner de Conversão */
.pag-conversion-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-primary-800);
  color: var(--text-light);
  padding: 1rem;
  text-align: center;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.pag-conversion-banner.pag-visible {
  transform: translateY(0);
}

.pag-conversion-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}

.pag-conversion-banner p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.1rem;
}

.pag-conversion-banner i {
  color: var(--color-secondary-700);
}

.pag-conversion-banner .pag-cta-button {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--color-secondary-900), var(--color-secondary-700));
}

/* Responsividade */
@media (max-width: 992px) {
  .pag-service-section {
    grid-template-columns: 1fr;
  }

  .pag-service-image {
    min-height: 250px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .pag-section-title h1 {
    font-size: 1.8rem;
  }

  .pag-service-title {
    font-size: 1.5rem;
  }

  .pag-features-section {
    grid-template-columns: 1fr;
  }

  .pag-conversion-banner-content {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .pag-section-title .pag-title-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .pag-cta-button {
    width: 100%;
    padding: 1rem;
  }

  .pag-document-badge {
    flex-direction: column;
    text-align: center;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pag-feature-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.pag-feature-card:nth-child(1) { animation-delay: 0.1s; }
.pag-feature-card:nth-child(2) { animation-delay: 0.2s; }
.pag-feature-card:nth-child(3) { animation-delay: 0.3s; }

/* ////////////////////////FAQ //////////////////////// */
/* ===== Estilos Gerais do FAQ ===== */
.pag-faq-section {
    padding: 40px 0;
    background-color: #f8f9fa; /* Um fundo suave para a seção */
}

.pag-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.pag-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.pag-section-header h1 {
    font-size: 2.5rem;
    color: #343a40;
    margin-bottom: 10px;
}

.pag-section-header h1 .pag-text-highlight-primary {
    color: #dc3545; /* Cor de destaque principal */
    font-weight: bold;
}

.pag-section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 20px;
}

.pag-section-header p strong {
    color: #007bff; /* Cor de destaque para o Corpo de Bombeiros */
}

.pag-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.pag-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

/* ===== Estilos das Abas (Tabs) ===== */
.pag-hoot-tabs-container {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
    -webkit-overflow-scrolling: touch; /* Para rolagem suave em dispositivos móveis */
}

.pag-hoot-tabs-header {
    display: flex;
    gap: 15px;
    height: 100px; /* Altura fixa para a barra de abas */
    align-items: center; /* Centraliza verticalmente os itens da aba */
    scroll-snap-type: x mandatory; /* Habilita o snap de rolagem */
    scrollbar-width: thin; /* Para navegadores Firefox */
    scrollbar-color: var(--primary-color) var(--light-gray-color); /* Para navegadores Firefox */
}

/* Estilos para a barra de rolagem (Webkit - Chrome, Safari) */
.pag-hoot-tabs-header::-webkit-scrollbar {
    height: 8px; /* Altura da barra de rolagem */
}

.pag-hoot-tabs-header::-webkit-scrollbar-track {
    background: var(--light-gray-color); /* Cor do fundo da trilha */
    border-radius: 10px;
}

.pag-hoot-tabs-header::-webkit-scrollbar-thumb {
    background: var(--primary-color); /* Cor do "polegar" da barra de rolagem */
    border-radius: 10px;
}

.pag-hoot-tabs-header::-webkit-scrollbar-thumb:hover {
    background: var(--dark-primary-color); /* Cor ao passar o mouse */
}


.pag-hoot-tab {
    flex-shrink: 0;
    padding: 12px 20px;
    border-radius: 8px;
    background-color: #f1f3f5;
    color: #495057;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #dee2e6;
    min-width: 150px; /* Largura mínima para cada aba */
    height: 100%; /* Ocupa a altura total do carrossel */
    scroll-snap-align: center; /* Alinha a aba ao centro ao rolar */
}

.pag-hoot-tab:hover {
    background-color: #e2e6ea;
    border-color: #cdd2d6;
}

.pag-hoot-tab.active {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: 1px solid #0056b3;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.pag-hoot-tab.active i {
    color: white !important; /* Garante que o ícone na aba ativa seja branco */
}

/* Cores dos ícones das abas */
.pag-hoot-tab i.fa-users { color: #007bff; }
.pag-hoot-tab i.fa-bullseye { color: #28a745; }
.pag-hoot-tab i.fa-project-diagram { color: #dc3545; }
.pag-hoot-tab i.fa-ruler-combined { color: #007bff; }
.pag-hoot-tab i.fa-drafting-compass { color: #fd7e14; }
.pag-hoot-tab i.fa-file-signature { color: #6f42c1; }
.pag-hoot-tab i.fa-file-alt { color: #17a2b8; }
.pag-hoot-tab i.fa-clipboard-list { color: #6c757d; }
.pag-hoot-tab i.fa-fire-extinguisher { color: #dc3545; }
.pag-hoot-tab i.fa-calendar-check { color: #20c997; }
.pag-hoot-tab i.fa-map-marker-alt { color: #007bff; }


/* ===== Estilos dos Itens do FAQ (Perguntas e Respostas) ===== */
.pag-hoot-faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pag-hoot-faq-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.pag-hoot-faq-question {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.pag-hoot-faq-question > div { /* O div que contém o ícone e o h2 */
    display: flex;
    align-items: center;
    gap: 15px;
}

.pag-hoot-faq-question h2 {
    margin: 0;
    color: #343a40;
    font-size: 1.6rem;
}

.pag-hoot-faq-question .faq-icon {
    font-size: 1.8rem;
}

.pag-hoot-faq-question .hoot-faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* Rotação do ícone de toggle quando a resposta está aberta */
.pag-hoot-faq-item.pag-active .hoot-faq-toggle { /* Usando pag-active consistentemente com JS */
    transform: rotate(180deg);
}

.pag-hoot-faq-answer {
    background-color: #fefefe;
    padding: 0 25px; /* Padding horizontal fixo */
    max-height: 0; /* Começa fechado */
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    border-radius: 0 0 10px 10px;
    border-top: 1px solid #e9ecef;
}

.pag-hoot-faq-item.pag-active .pag-hoot-faq-answer {
    max-height: 1000px; /* Um valor grande o suficiente para conter o conteúdo */
    padding-top: 25px; /* Adiciona padding vertical quando ativo */
    padding-bottom: 25px; /* Adiciona padding vertical quando ativo */
}

/* Cores da borda esquerda e ícones das perguntas por aba/assunto */
#tab6 .pag-hoot-faq-question { border-left: 6px solid #dc3545; }
#tab6 .pag-hoot-faq-question .faq-icon { color: #dc3545; }
#tab6 .pag-hoot-faq-question .hoot-faq-toggle { color: #dc3545; }

#tab7 .pag-hoot-faq-question { border-left: 6px solid #007bff; }
#tab7 .pag-hoot-faq-question .faq-icon { color: #007bff; }
#tab7 .pag-hoot-faq-question .hoot-faq-toggle { color: #007bff; }

#tab10 .pag-hoot-faq-question { border-left: 6px solid #dc3545; }
#tab10 .pag-hoot-faq-question .faq-icon { color: #dc3545; }
#tab10 .pag-hoot-faq-question .hoot-faq-toggle { color: #dc3545; }

#tab1 .pag-hoot-faq-question { border-left: 6px solid #007bff; }
#tab1 .pag-hoot-faq-question .faq-icon { color: #007bff; }
#tab1 .pag-hoot-faq-question .hoot-faq-toggle { color: #007bff; }

#tab9 .pag-hoot-faq-question { border-left: 6px solid #fd7e14; }
#tab9 .pag-hoot-faq-question .faq-icon { color: #fd7e14; }
#tab9 .pag-hoot-faq-question .hoot-faq-toggle { color: #fd7e14; }

#tab2 .pag-hoot-faq-question { border-left: 6px solid #6f42c1; }
#tab2 .pag-hoot-faq-question .faq-icon { color: #6f42c1; }
#tab2 .pag-hoot-faq-question .hoot-faq-toggle { color: #6f42c1; }

#tab8 .pag-hoot-faq-question { border-left: 6px solid #17a2b8; }
#tab8 .pag-hoot-faq-question .faq-icon { color: #17a2b8; }
#tab8 .pag-hoot-faq-question .hoot-faq-toggle { color: #17a2b8; }

#tab3 .pag-hoot-faq-question { border-left: 6px solid #6c757d; }
#tab3 .pag-hoot-faq-question .faq-icon { color: #6c757d; }
#tab3 .pag-hoot-faq-question .hoot-faq-toggle { color: #6c757d; }

#tab4 .pag-hoot-faq-question { border-left: 6px solid #dc3545; }
#tab4 .pag-hoot-faq-question .faq-icon { color: #dc3545; }
#tab4 .pag-hoot-faq-question .hoot-faq-toggle { color: #dc3545; }

#tab5 .pag-hoot-faq-question { border-left: 6px solid #20c997; }
#tab5 .pag-hoot-faq-question .faq-icon { color: #20c997; }
#tab5 .pag-hoot-faq-question .hoot-faq-toggle { color: #20c997; }

#tab-cities .pag-hoot-faq-question { border-left: 6px solid #007bff; }
#tab-cities .pag-hoot-faq-question .faq-icon { color: #007bff; }
#tab-cities .pag-hoot-faq-question .hoot-faq-toggle { color: #007bff; }

/* ===== Estilos de Seções Específicas e Componentes Internos ===== */

/* Quem Somos */
.feature-box {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.feature-box.primary { border-top: 5px solid #dc3545; }
.feature-box.secondary { border-top: 5px solid #007bff; }

.feature-box .feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}
.feature-box.primary .feature-icon { color: #dc3545; }
.feature-box.secondary .feature-icon { color: #007bff; }

.feature-box h3 {
    color: #343a40;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.feature-box p {
    color: #495057;
    line-height: 1.6;
}

.why-us-box {
    margin-top: 30px;
    background: linear-gradient(135deg, #fff8f8 0%, #ffebee 100%);
    padding: 30px;
    border-radius: 10px;
    border-left: 6px solid #dc3545;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.why-us-box h3 {
    color: #dc3545;
    margin-bottom: 25px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-us-box h3 .fas {
    color: #ffc107;
    font-size: 1.8rem;
}

.benefits-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #495057;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li .fas {
    color: #28a745;
    font-size: 1.3rem;
}

/* Missão, Visão, Valores */
.mission-box, .vision-box, .values-box {
    background-color: white;
    padding: 25px;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mission-box { border-top: 5px solid #dc3545; }
.vision-box { border-top: 5px solid #007bff; }
.values-box { border-top: 5px solid #28a745; }

.mission-box h3, .vision-box h3, .values-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mission-box h3 { color: #dc3545; }
.vision-box h3 { color: #007bff; }
.values-box h3 { color: #28a745; }

.mission-box h3 .fas, .vision-box h3 .fas, .values-box h3 .fas {
    font-size: 1.6rem;
}
.mission-box h3 .fas { color: #dc3545; }
.vision-box h3 .fas { color: #007bff; }
.values-box h3 .fas { color: #28a745; }

.mission-box p, .vision-box p {
    color: #495057;
    line-height: 1.6;
}

.mission-box p .fas { color: #dc3545; margin-right: 10px; }
.vision-box p .fas { color: #007bff; margin-right: 10px; }

.values-box ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    color: #495057;
}

.values-box ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.values-box ul li .fas {
    color: #28a745;
}

/* Fluxograma */
.lead-text {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 30px;
    text-align: center;
}

.flow-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.flow-title {
    font-size: 1.8rem;
    color: #007bff;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.flow-title .fas {
    font-size: 2rem;
    color: #007bff;
}

.flow-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    position: relative;
    padding: 20px 0;
}

.flow-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e9ecef;
    z-index: 0;
}

.flow-step {
    flex: 1 1 200px; /* Ajuste para responsividade */
    text-align: center;
    margin: 10px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 10px;
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
}

.flow-step.final-step .step-number {
    background-color: #28a745;
    box-shadow: 0 2px 5px rgba(40, 167, 69, 0.3);
}

.step-title {
    color: #343a40;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.step-desc {
    color: #6c757d;
    font-size: 0.9rem;
}

.step-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #343a40;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    pointer-events: none; /* Garante que o tooltip não bloqueie cliques */
}

.flow-step:hover .step-tooltip {
    opacity: 1;
}

/* Detalhamento das Etapas */
.step-details-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-detail-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-top: 5px solid #007bff; /* Cor padrão */
    height: 100%;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-badge {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
}

.step-header h3 {
    margin: 0;
    color: #343a40;
    font-size: 1.4rem;
}

.step-content ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

.step-content ul li {
    margin-bottom: 10px;
}

.step-tip {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid;
    color: #343a40;
}

.step-tip.info {
    background-color: #e6f7ff;
    border-color: #1890ff;
}
.step-tip.info .fas { color: #1890ff; margin-right: 10px; }

.step-tip.warning {
    background-color: #fff3bf;
    border-color: #f59f00;
}
.step-tip.warning .fas { color: #f59f00; margin-right: 10px; }

.step-tip.danger {
    background-color: #fff0f6;
    border-color: #c92a2a;
}
.step-tip.danger .fas { color: #c92a2a; margin-right: 10px; }

/* Dicas Essenciais */
.tips-container {
    margin-top: 40px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tips-title {
    font-size: 1.8rem;
    color: #fd7e14;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tips-title .fas {
    font-size: 2rem;
    color: #fd7e14;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-top: 4px solid #28a745;
    text-align: center;
}

.tip-card .tip-icon {
    margin-bottom: 15px;
}

.tip-card .tip-icon .fas {
    font-size: 2.5rem;
    color: #28a745;
}

.tip-card h4 {
    color: #343a40;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tip-card p {
    color: #495057;
    font-size: 0.95rem;
}

/* Aviso Legal */
.legal-notice {
    margin-top: 40px;
    background-color: #fff0f6;
    padding: 25px;
    border-radius: 10px;
    border-left: 6px solid #dc3545;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legal-notice .notice-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.legal-notice .notice-content .fas {
    font-size: 2.5rem;
    color: #dc3545;
    flex-shrink: 0;
}

.legal-notice h3 {
    color: #dc3545;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.legal-notice p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 10px;
}

.legal-notice .update-info {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-notice .update-info .fas {
    color: #6c757d;
}

/* Área e Ocupação */
.pag-hoot-faq-answer p strong.pag-text-highlight-orange { color: #fd7e14; }
.pag-hoot-faq-answer p u { color: #007bff; }

.info-box {
    background-color: #e6f7ff;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 5px solid #1890ff;
    box-shadow: 0 3px 8px rgba(0, 123, 255, 0.1);
}

.info-box .fas {
    color: #1890ff;
    margin-right: 12px;
    font-size: 1.4rem;
}

.info-box strong {
    color: #343a40;
}

.info-box h4 {
    color: #007bff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.info-box h4 .fas {
    color: #007bff;
    font-size: 1.5rem;
}

.info-box p {
    color: #495057;
    line-height: 1.6;
}

.info-box-danger {
    background-color: #fff0f6;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 5px solid #dc3545;
    box-shadow: 0 3px 8px rgba(220, 53, 69, 0.1);
}

.info-box-danger p {
    margin: 0;
    color: #343a40;
}

.info-box-danger .fas {
    color: #dc3545;
    margin-right: 12px;
    font-size: 1.4rem;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.card-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
}

.card-item.success-border { border-top: 5px solid #28a745; }
.card-item.danger-border { border-top: 5px solid #dc3545; }

.card-item h4 {
    color: #343a40;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.card-item h4 .fas {
    font-size: 1.5rem;
}
.card-item.success-border h4 .fas { color: #28a745; }
.card-item.danger-border h4 .fas { color: #dc3545; }
.card-item.warning-icon h4 .fas { color: #fd7e14; }
.card-item.light-icon h4 .fas { color: #6c757d; }


.faq-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

.faq-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-list li .fas {
    color: #007bff; /* Cor padrão para ícones de lista */
}
.faq-list li .fas.faq-icon-secondary { color: #007bff; }
.faq-list li .fas.faq-icon-light { color: #6c757d; }
.faq-list li .fas.faq-icon-warning { color: #fd7e14; }
.faq-list li .fas.faq-icon-danger { color: #dc3545; }


/* Tabela de Ocupação */
.occupation-table {
    overflow-x: auto;
    margin-bottom: 30px;
}

.occupation-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.occupation-table thead tr {
    background-color: #f1f3f5;
}

.occupation-table th {
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #e9ecef;
    color: #343a40;
    font-size: 1rem;
}

.occupation-table tbody tr {
    border-bottom: 1px solid #eee;
}

.occupation-table tbody tr:last-child {
    border-bottom: none;
}

.occupation-table td {
    padding: 15px;
    color: #495057;
}

.occupation-table td ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.occupation-table td ul li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.occupation-table td ul li .fas {
    color: #28a745; /* Padrão para check-circle */
}
.occupation-table td ul li .fas.fa-info-circle { color: #007bff; }
.occupation-table td ul li .fas.fa-exclamation-triangle { color: #dc3545; }


/* Projetos */
.project-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.project-type-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
}
.project-type-card.blue-border { border-top: 5px solid #007bff; }
.project-type-card.red-border { border-top: 5px solid #dc3545; }
.project-type-card.gray-border { border-top: 5px solid #6c757d; }
.project-type-card.orange-border { border-top: 5px solid #fd7e14; }
.project-type-card.green-border { border-top: 5px solid #28a745; }


.project-type-card h4 {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}
.project-type-card.blue-border h4 { color: #007bff; }
.project-type-card.red-border h4 { color: #dc3545; }
.project-type-card.gray-border h4 { color: #6c757d; }
.project-type-card.orange-border h4 { color: #fd7e14; }
.project-type-card.green-border h4 { color: #28a745; }


.project-type-card h4 .fas {
    margin-right: 10px;
    font-size: 1.5rem;
}
.project-type-card.blue-border h4 .fas { color: #007bff; }
.project-type-card.red-border h4 .fas { color: #dc3545; }
.project-type-card.gray-border h4 .fas { color: #6c757d; }
.project-type-card.orange-border h4 .fas { color: #fd7e14; }
.project-type-card.green-border h4 .fas { color: #28a745; }


.project-type-card ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

.project-type-card ul li {
    margin-bottom: 8px;
}

/* PPCIP */
.alert-danger-custom {
    background-color: #fff0f6;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #dc3545;
    margin-bottom: 25px;
    box-shadow: 0 3px 8px rgba(220, 53, 69, 0.1);
}
.alert-danger-custom .fas {
    color: #dc3545;
    margin-right: 12px;
    font-size: 1.4rem;
}
.alert-danger-custom strong {
    color: #343a40;
}

.row-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.card-item-custom {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
}
.card-item-custom.danger-top { border-top: 5px solid #dc3545; }
.card-item-custom.primary-top { border-top: 5px solid #007bff; }
.card-item-custom.success-top { border-top: 5px solid #28a745; }
.card-item-custom.warning-top { border-top: 5px solid #ffc107; }


.card-header-custom {
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
    margin: -25px -25px 20px -25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-header-custom.danger { background-color: #dc3545; color: white; }
.card-header-custom.primary { background-color: #007bff; color: white; }
.card-header-custom.success { background-color: #28a745; color: white; }
.card-header-custom.warning { background-color: #ffc107; color: #343a40; }


.card-header-custom h4 {
    margin: 0;
    font-size: 1.3rem;
}

.card-header-custom h4 .fas {
    margin-right: 8px;
}

.card-body-custom {
    color: #495057;
    line-height: 1.6;
}

.card-body-custom ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}
.card-body-custom ul.disc-list {
    list-style-type: disc;
    padding-left: 20px;
}

.card-body-custom ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-body-custom ul li .fas {
    color: inherit; /* Define a cor do ícone com base na cor do texto do li */
}
.card-body-custom ul li .fas.fa-fire { color: #dc3545; }
.card-body-custom ul li .fas.fa-sign { color: #17a2b8; }
.card-body-custom ul li .fas.fa-lightbulb { color: #ffc107; }
.card-body-custom ul li .fas.fa-door-open { color: #28a745; }
.card-body-custom ul li .fas.fa-user-graduate,
.card-body-custom ul li .fas.fa-bolt,
.card-body-custom ul li .fas.fa-hard-hat { color: #28a745; }
.card-body-custom ul li .fas.fa-certificate,
.card-body-custom ul li .fas.fa-book,
.card-body-custom ul li .fas.fa-map-marked-alt { color: #ffc107; }
.card-body-custom ul li .fas.fa-check-circle { color: #007bff; }


.card-info-box {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    margin-top: 30px;
}
.card-info-box.info-top { border-top: 5px solid #17a2b8; }
.card-info-box.primary-top { border-top: 5px solid #007bff; }


.card-header-info-custom {
    background-color: #17a2b8;
    color: white;
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
    margin: -25px -25px 20px -25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-header-info-custom h4 {
    margin: 0;
    font-size: 1.3rem;
}
.card-header-info-custom h4 .fas {
    margin-right: 8px;
}

.btn-danger-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}
.btn-danger-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(220, 53, 69, 0.4);
}

.btn-success-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}
.btn-success-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(40, 167, 69, 0.4);
}

/* Tipo de Projeto */
.risk-level-table {
    overflow-x: auto;
    margin-bottom: 30px;
}

.risk-level-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.risk-level-table thead tr {
    background-color: #f1f3f5;
}

.risk-level-table th {
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #e9ecef;
    color: #343a40;
    font-size: 1rem;
}

.risk-level-table tbody tr {
    border-bottom: 1px solid #eee;
}

.risk-level-table tbody tr:last-child {
    border-bottom: none;
}

.risk-level-table td {
    padding: 15px;
    color: #495057;
}

.risk-level-table td ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.risk-level-table td ul li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.risk-level-table td ul li .fas {
    color: inherit;
}
.risk-level-table td ul li .fas.fa-check-circle { color: #28a745; }
.risk-level-table td ul li .fas.fa-info-circle { color: #007bff; }
.risk-level-table td ul li .fas.fa-exclamation-triangle { color: #dc3545; }


.project-types-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.project-types-comparison .project-type-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
}
.project-types-comparison .project-type-card.blue-border { border-top: 5px solid #007bff; }
.project-types-comparison .project-type-card.orange-border { border-top: 5px solid #fd7e14; }
.project-types-comparison .project-type-card.green-border { border-top: 5px solid #28a745; }

.project-types-comparison .project-type-card h4 {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}
.project-types-comparison .project-type-card.blue-border h4 { color: #007bff; }
.project-types-comparison .project-type-card.orange-border h4 { color: #fd7e14; }
.project-types-comparison .project-type-card.green-border h4 { color: #28a745; }

.project-types-comparison .project-type-card h4 .fas {
    color: inherit; /* Herda a cor do h4 */
    font-size: 1.5rem;
}

.project-types-comparison .project-type-card p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-types-comparison .project-type-card ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

.project-types-comparison .project-type-card ul li {
    margin-bottom: 8px;
}

.card-item-danger-custom {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
    border-top: 5px solid #dc3545;
}
.card-item-danger-custom h4 {
    color: #dc3545;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}
.card-item-danger-custom h4 .fas { color: #dc3545; font-size: 1.5rem; }

.card-item-success-custom {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
    border-top: 5px solid #28a745;
}
.card-item-success-custom h4 {
    color: #28a745;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}
.card-item-success-custom h4 .fas { color: #28a745; font-size: 1.5rem; }

.grid-dispensas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.card-dispensa {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-left: 5px solid #28a745;
    height: 100%;
}

.card-dispensa h4 {
    color: #343a40;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.card-dispensa h4 .fas {
    color: #28a745;
    font-size: 1.5rem;
}

.card-dispensa p {
    color: #495057;
    line-height: 1.6;
}

/* Licenças AVCB e CLCB */
.flex-container-difference {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.card-difference {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
}
.card-difference.blue-top { border-top: 5px solid #007bff; }
.card-difference.green-top { border-top: 5px solid #28a745; }

.card-difference h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-difference.blue-top h4 { color: #007bff; }
.card-difference.green-top h4 { color: #28a745; }

.card-difference h4 .fas {
    margin-right: 10px;
    font-size: 1.6rem;
}

.card-difference p {
    margin-left: 25px;
    color: #495057;
    line-height: 1.6;
}

.card-difference p strong {
    color: #007bff;
}

.card-difference ul.list-unstyled {
    margin-left: 40px;
    list-style: none;
    padding: 0;
    color: #495057;
}

.card-difference ul.list-unstyled li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-difference ul.list-unstyled li .fas {
    color: inherit;
}
.card-difference.blue-top ul.list-unstyled li .fas { color: #007bff; }
.card-difference.green-top ul.list-unstyled li .fas { color: #28a745; }


.validity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px;
}

.validity-list li {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.validity-list li.warning-bg { background-color: #fff3bf; }


.validity-list li .fas {
    color: #007bff;
    margin-top: 3px;
    font-size: 1.3rem;
}
.validity-list li.warning-bg .fas { color: #f59f00; }


.validity-list li div strong {
    color: #343a40;
    font-size: 1.1rem;
}

.validity-list li div span {
    display: block;
    margin-top: 5px;
    color: #495057;
}

.validity-list li div span strong.success-text { color: #28a745; }
.validity-list li div span strong.danger-text { color: #dc3545; }


.button-group {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-secondary-outline {
    padding: 12px 25px;
    background: none;
    border: 2px solid #6c757d;
    border-radius: 8px;
    color: #495057;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.btn-secondary-outline:hover {
    background-color: #6c757d;
    color: white;
}

/* Documentação */
.document-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.document-category-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
}
.document-category-card.blue-top { border-top: 5px solid #007bff; }
.document-category-card.orange-top { border-top: 5px solid #fd7e14; }
.document-category-card.green-top { border-top: 5px solid #28a745; }

.document-category-card h4 {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}
.document-category-card.blue-top h4 { color: #007bff; }
.document-category-card.orange-top h4 { color: #fd7e14; }
.document-category-card.green-top h4 { color: #28a745; }


.document-category-card h4 .fas {
    color: inherit;
    margin-right: 10px;
    font-size: 1.5rem;
}

.document-category-card ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

.document-category-card ul li {
    margin-bottom: 8px;
}

.protocol-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.protocol-steps-grid .step-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-top: 5px solid #007bff;
    height: 100%;
}

.protocol-steps-grid .step-card h4 {
    color: #343a40;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.protocol-steps-grid .step-card h4 span {
    background: #007bff;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.protocol-steps-grid .step-card p {
    color: #495057;
    line-height: 1.6;
}
.protocol-steps-grid .step-card p a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}
.protocol-steps-grid .step-card p a:hover {
    text-decoration: underline;
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.professional-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
}
.professional-card.blue-top { border-top: 5px solid #007bff; }
.professional-card.orange-top { border-top: 5px solid #fd7e14; }
.professional-card.red-top { border-top: 5px solid #dc3545; }

.professional-card h4 {
    color: inherit; /* Herda do pai */
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}
.professional-card.blue-top h4 { color: #007bff; }
.professional-card.orange-top h4 { color: #fd7e14; }
.professional-card.red-top h4 { color: #dc3545; }


.professional-card h4 .fas {
    color: inherit;
    font-size: 1.5rem;
}

.professional-card ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

.professional-card ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.professional-card ul li .fas {
    color: #28a745;
}

/* Medidas de Segurança */
.measures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.measure-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
}
.measure-card.blue-top { border-top: 5px solid #007bff; }
.measure-card.orange-top { border-top: 5px solid #fd7e14; }
.measure-card.red-top { border-top: 5px solid #dc3545; }

.measure-card h4 {
    color: inherit;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}
.measure-card.blue-top h4 { color: #007bff; }
.measure-card.orange-top h4 { color: #fd7e14; }
.measure-card.red-top h4 { color: #dc3545; }

.measure-card h4 .fas {
    color: inherit;
    margin-right: 10px;
    font-size: 1.5rem;
}

.measure-card ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

.measure-card ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.measure-card ul li .fas {
    color: #28a745;
}

/* Saídas de Emergência */
.alert-warning-info {
    margin-bottom: 25px;
    background-color: #fff3bf;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #f59f00;
    box-shadow: 0 3px 8px rgba(245, 159, 0, 0.1);
}

.alert-warning-info h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #5f3dc4; /* Cor para o título do alerta */
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.alert-warning-info h4 .fas {
    color: #f59f00;
    font-size: 1.5rem;
}

.alert-warning-info ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
    color: #495057;
    line-height: 1.6;
}

.alert-warning-info ul li {
    margin-bottom: 8px;
}

.section-subtitle {
    margin-top: 30px;
    margin-bottom: 20px;
    color: #28a745;
    font-size: 1.8rem;
    text-align: center;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.rule-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
}
.rule-card.purple-top { border-top: 5px solid #6f42c1; }
.rule-card.green-top { border-top: 5px solid #28a745; }
.rule-card.red-top { border-top: 5px solid #dc3545; }


.rule-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.rule-header div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
}
.rule-card.purple-top .rule-header div { background: #6f42c1; }
.rule-card.green-top .rule-header div { background: #28a745; }
.rule-card.red-top .rule-header div { background: #dc3545; }


.rule-header h4 {
    margin: 0;
    font-size: 1.3rem;
}
.rule-card.purple-top .rule-header h4 { color: #6f42c1; }
.rule-card.green-top .rule-header h4 { color: #28a745; }
.rule-card.red-top .rule-header h4 { color: #dc3545; }


.rule-card ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
    color: #495057;
    line-height: 1.6;
}

.rule-card ul li {
    margin-bottom: 8px;
}

.info-box-purple-light {
    background-color: #f3f0ff;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 5px solid #6f42c1;
    box-shadow: 0 3px 8px rgba(111, 66, 193, 0.1);
}

.info-box-purple-light h4 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #6f42c1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
}

.info-box-purple-light h4 .fas {
    color: #6f42c1;
    font-size: 1.7rem;
}

.tips-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tips-flex-container .tip-item {
    flex: 1;
    min-width: 250px;
}

.tips-flex-container .tip-icon-check {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.tips-flex-container .tip-icon-check .fas {
    color: #28a745;
    font-size: 1.3rem;
}

.tips-flex-container .tip-icon-check strong {
    color: #343a40;
    font-size: 1.1rem;
}

.tips-flex-container .tip-item ul {
    margin: 0;
    padding-left: 25px;
    list-style-type: disc;
    color: #495057;
    line-height: 1.6;
}

.tips-flex-container .tip-item ul li {
    margin-bottom: 5px;
}

.tips-flex-container .tip-item ul li .fas {
    color: #007bff; /* Ícones de lista dentro de dicas */
}


.info-box-blue-light {
    background-color: #e6f7ff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 5px solid #1890ff;
    box-shadow: 0 3px 8px rgba(0, 123, 255, 0.1);
}

.info-box-blue-light h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #1890ff;
    font-size: 1.3rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #495057;
}

.checklist-item input[type="checkbox"] {
    accent-color: #1890ff;
    transform: scale(1.2);
}

.checklist-item label {
    font-size: 1rem;
}

/* Adaptações para Edificações Existentes */
.card-item-secondary-custom {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
    border-top: 5px solid #6c757d;
}
.card-item-secondary-custom h4 {
    color: #6c757d;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}
.card-item-secondary-custom h4 .fas {
    color: #6c757d;
    font-size: 1.5rem;
}

.card-item-secondary-custom ul ul { /* Lista aninhada */
    list-style-type: circle;
    padding-left: 25px;
    margin-top: 10px;
    margin-bottom: 0;
}
.card-item-secondary-custom ul ul li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-item-secondary-custom ul ul li .fas {
    color: #007bff;
}

/* Prazos */
.prazos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.prazo-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
}
.prazo-card.blue-top { border-top: 5px solid #007bff; }
.prazo-card.orange-top { border-top: 5px solid #fd7e14; }
.prazo-card.red-top { border-top: 5px solid #dc3545; }

.prazo-card h4 {
    color: inherit;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}
.prazo-card.blue-top h4 { color: #007bff; }
.prazo-card.orange-top h4 { color: #fd7e14; }
.prazo-card.red-top h4 { color: #dc3545; }


.prazo-card h4 .fas {
    color: inherit;
    margin-right: 10px;
    font-size: 1.5rem;
}

.prazo-card p {
    color: #495057;
    line-height: 1.6;
}

/* Validade do AVCB/CLCB */
.validity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.validity-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
}
.validity-card.blue-top { border-top: 5px solid #007bff; }
.validity-card.orange-top { border-top: 5px solid #fd7e14; }
.validity-card.red-top { border-top: 5px solid #dc3545; }


.validity-card h4 {
    color: inherit;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}
.validity-card.blue-top h4 { color: #007bff; }
.validity-card.orange-top h4 { color: #fd7e14; }
.validity-card.red-top h4 { color: #dc3545; }


.validity-card h4 .fas {
    color: inherit;
    margin-right: 10px;
    font-size: 1.5rem;
}

.validity-card p {
    color: #495057;
    line-height: 1.6;
}

/* Cidades Atendidas */
.pag-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.pag-city-card {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 3px solid #007bff;
}

.pag-city-card .fas {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
}

.pag-city-card h3 {
    font-size: 1.1rem;
    color: #343a40;
    margin: 0;
}

.pag-expanded-content p {
    font-size: 1.1rem;
    color: #495057;
    text-align: center;
}

.pag-expanded-content p strong {
    color: #007bff;
}

/* Responsividade Geral */
@media (max-width: 768px) {
    .pag-section-header h1 {
        font-size: 2rem;
    }
    .pag-section-header p {
        font-size: 1rem;
    }
    .pag-hoot-tab {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    .pag-hoot-faq-question h2 {
        font-size: 1.4rem;
    }
    .pag-hoot-faq-question .faq-icon {
        font-size: 1.5rem;
    }
    .pag-hoot-faq-question .hoot-faq-toggle {
        font-size: 1.3rem;
    }
    .pag-hoot-faq-answer {
        padding: 15px;
    }
    .feature-box h3, .mission-box h3, .vision-box h3, .values-box h3,
    .flow-title, .tips-title, .legal-notice h3, .info-box h4,
    .project-type-card h4, .card-header-custom h4, .risk-level-table th,
    .project-types-comparison .project-type-card h4, .card-item-danger-custom h4,
    .card-item-success-custom h4, .card-dispensa h4, .card-difference h4,
    .document-category-card h4, .protocol-steps-grid .step-card h4,
    .professional-card h4, .measure-card h4, .alert-warning-info h4,
    .section-subtitle, .rule-header h4, .info-box-purple-light h4,
    .info-box-blue-light h4, .card-item-secondary-custom h4, .prazo-card h4,
    .validity-card h4 {
        font-size: 1.2rem;
    }
    .step-number, .step-badge {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .step-header h3 {
        font-size: 1.2rem;
    }
    .tips-flex-container .tip-icon-check strong {
        font-size: 1rem;
    }
    .checklist-item label {
        font-size: 0.9rem;
    }
    .pag-city-card h3 {
        font-size: 1rem;
    }
    .pag-city-card .fas {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pag-section-header h1 {
        font-size: 1.8rem;
    }
    .pag-section-header p {
        font-size: 0.9rem;
    }
    .pag-btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .pag-hoot-tab {
        padding: 8px 12px;
        font-size: 0.8rem;
        gap: 5px;
    }
    .pag-hoot-faq-question h2 {
        font-size: 1.2rem;
    }
    .pag-hoot-faq-question .faq-icon {
        font-size: 1.3rem;
    }
    .pag-hoot-faq-question .hoot-faq-toggle {
        font-size: 1.1rem;
    }
    .pag-hoot-faq-answer {
        padding: 15px;
    }
    .feature-box, .mission-box, .vision-box, .values-box, .why-us-box,
    .flow-container, .step-detail-card, .tips-container, .legal-notice,
    .info-box, .info-box-danger, .card-item, .project-type-card,
    .card-item-custom, .card-info-box, .card-difference, .validity-list li,
    .document-category-card, .protocol-steps-grid .step-card,
    .professional-card, .measure-card, .alert-warning-info, .rule-card,
    .info-box-purple-light, .info-box-blue-light, .card-item-secondary-custom,
    .prazo-card, .validity-card, .pag-city-card {
        padding: 15px;
    }
    .step-number, .step-badge {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .step-header h3 {
        font-size: 1.1rem;
    }
    .tips-flex-container .tip-item {
        min-width: 100%;
    }
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    .pag-cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}