@charset "UTF-8";

/* ===== MENU LATERAL ===== */
.menuLateral {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 73, 145, 0.06);
  border: 1px solid rgba(0, 151, 178, 0.15);
}

.menuLateral .title {
  border: none;
  color: #004991;
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 12px;
  margin-bottom: 16px;
  display: block;
  border-bottom: 2px solid #0097b2;
  letter-spacing: -0.5px;
}

.menuLateral ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.menuLateral li {
  padding: 0;
  margin-bottom: 8px;
  list-style: none;
}

.menuLateral li a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  color: #4b5563;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.25s ease;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  text-decoration: none;
}

.menuLateral li a:hover,
.menuLateral li.active a,
.menuLateral li a.active {
  background: linear-gradient(135deg, #0097b2, #004991);
  color: #ffffff !important;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 151, 178, 0.25);
  border-color: transparent;
}

/* ===== GALERIA DE IMAGENS ===== */
.galleryImages {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.galleryImages .main-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  max-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galleryImages .main-image img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.thumbnail-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.thumbnail {
  width: 90px;
  height: 65px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #ffffff;
}

.thumbnail:hover {
  border-color: #0097b2;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 151, 178, 0.2);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== BANNER DE CTA ABAIXO DA IMAGEM ===== */
.seo-cta-banner {
  background: linear-gradient(135deg, #004991 0%, #0097b2 100%);
  border-radius: 16px;
  padding: 28px 32px;
  color: #ffffff;
  margin: 25px 0 35px 0;
  box-shadow: 0 12px 30px rgba(0, 151, 178, 0.22);
  position: relative;
  overflow: hidden;
}

.seo-cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.seo-cta-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.seo-cta-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 680px;
}

.seo-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-seo-cta {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.btn-seo-cta.btn-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-seo-cta.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  color: #ffffff !important;
}

.btn-seo-cta.btn-orcamento {
  background: #ffffff;
  color: #004991 !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

.btn-seo-cta.btn-orcamento:hover {
  background: #f8fafc;
  color: #0097b2 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
}

/* ===== CONTEÚDO DA PÁGINA SEO ===== */
.seo-page-content {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
}

.seo-page-content h2,
.seo-page-content h3,
.seo-page-content h4 {
  color: #004991;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.seo-page-content h2 {
  font-size: 22px;
  border-left: 4px solid #0097b2;
  padding-left: 12px;
}

.seo-page-content h3 {
  font-size: 19px;
}

.seo-page-content p {
  margin-bottom: 16px;
}

.seo-page-content ul,
.seo-page-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.seo-page-content li {
  margin-bottom: 8px;
}

/* ===== REGIÕES QUE ATENDEMOS ===== */
.regioes-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(0, 73, 145, 0.05);
  border: 1px solid rgba(0, 151, 178, 0.12);
  margin-top: 30px;
}

.regioes-title {
  color: #004991;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
  text-align: center;
}

.rowTab {
  display: flex;
  flex-direction: column;
}

.rowTab .d-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.tabs {
  flex: 1;
  min-width: 220px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.tab {
  width: 100%;
}

.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tab-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #f8fafc;
  color: #004991;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-bottom: 0;
  border-bottom: 1px solid #e2e8f0;
}

.tab-label:hover {
  background: #f0fdfa;
  color: #0097b2;
}

.tab-label::after {
  content: "❯";
  font-size: 12px;
  transition: all 0.35s ease;
}

input:checked + .tab-label {
  background: linear-gradient(135deg, #0097b2, #004991);
  color: #ffffff;
  border-bottom-color: transparent;
}

input:checked + .tab-label::after {
  transform: rotate(90deg);
  color: #ffffff;
}

.tab-content {
  max-height: 0;
  padding: 0 16px;
  color: #374151;
  background: #ffffff;
  transition: all 0.35s ease;
  overflow: hidden;
}

input:checked ~ .tab-content {
  max-height: 400px;
  padding: 16px;
  overflow-y: auto;
}

.tab-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tab-content li {
  padding: 5px 0;
  font-size: 13px;
  border-bottom: 1px dashed #f1f5f9;
  color: #4b5563;
}

.tab-content li:last-child {
  border-bottom: none;
}

.tab-content li strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  .seo-cta-banner {
    padding: 24px 20px;
  }
  .seo-cta-title {
    font-size: 19px;
  }
  .seo-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-seo-cta {
    width: 100%;
    justify-content: center;
  }
  .rowTab .d-flex {
    flex-direction: column;
  }
  .tabs {
    min-width: 100%;
  }
}