/* ============================================================
   HIDROJATO BR - STYLESHEET
   Hidrojateamento em Bauru - SEO 2026 Otimizado
   ============================================================ */

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary:    #f97316;   /* Laranja principal */
  --color-primary-dark: #ea6c0a;
  --color-secondary:  #16a34a;   /* Verde WhatsApp */
  --color-secondary-dark: #15803d;
  --color-dark:       #111827;
  --color-dark-nav:   #1a1a2e;
  --color-white:      #ffffff;
  --color-gray-light: #f3f4f6;
  --color-accent:     #fbbf24;   /* Amarelo destaque */
  --font-main:        'Montserrat', sans-serif;
  --font-body:        'Inter', sans-serif;
  --transition:       0.3s ease;
  --shadow-md:        0 4px 20px rgba(0,0,0,0.25);
  --shadow-lg:        0 8px 40px rgba(0,0,0,0.4);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

/* ============================================================
   TOP BAR - Informações rápidas (24h, Atendimento, Orçamento)
============================================================ */
.topbar {
  background-color: var(--color-dark);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  font-family: var(--font-main);
  letter-spacing: 0.02em;
}

.topbar__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.topbar__item--orange svg { color: var(--color-primary); }
.topbar__item--blue   svg { color: #60a5fa; }
.topbar__item--green  svg { color: #4ade80; }

/* ============================================================
   NAVBAR - Barra de navegação principal
============================================================ */
.navbar {
  background-color: var(--color-white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 150px;
  width: auto;
}

/* Menu de navegação */
.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.navbar__menu a {
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.navbar__menu a:hover {
  color: var(--color-primary);
  background: rgba(249,115,22,0.08);
}

/* Localidade */
.navbar__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}

.navbar__location svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Botão CTA telefone */
.navbar__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #080808;
  color: var(--color-white) !important;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(249,115,22,0.4);
}

.navbar__cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 202, 16, 0.5);
}

.navbar__cta svg {
  width: 18px;
  height: 18px;
}

/* Dropdown menu */
.navbar__menu-item--has-dropdown {
  position: relative;
}

.navbar__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  list-style: none;
  padding: 8px 0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 250px;
  z-index: 1000;
}

.navbar__menu-item--has-dropdown:hover .navbar__dropdown {
  display: flex;
  flex-direction: column;
}

.navbar__dropdown li {
  padding: 0;
}

.navbar__dropdown a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--color-dark);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.navbar__dropdown a:hover {
  background: rgba(249,115,22,0.1);
  color: var(--color-primary);
  padding-left: 25px;
}

/* Hamburguer mobile */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.navbar__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================================
   HERO SECTION - Banner principal
============================================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Imagem de fundo com lazy loading */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Overlay escuro para legibilidade */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,20,0.82) 0%,
    rgba(10,10,20,0.65) 50%,
    rgba(10,10,20,0.55) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 60px 24px;
}

/* Badge de serviço */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.5);
  color: var(--color-accent);
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.hero__badge svg {
  width: 14px;
  height: 14px;
}

/* H1 - Palavra-chave foco: "Hidrojateamento em Bauru" */
.hero__title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero__title-highlight {
  position: relative;
  display: inline-block;
  color: var(--color-white);
}

/* Sublinhado decorativo laranja */
.hero__title-highlight::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 28px auto 24px;
  line-height: 1.7;
}

/* Tags de serviços */
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.hero__tag {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 0;
}

.hero__tag-sep {
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

/* Botões CTA */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-secondary);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(22,163,74,0.5);
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22,163,74,0.6);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e77509;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}

.btn-phone:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(249,115,22,0.1);
}

.btn-phone svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   TRUST BAR - Barra de confiança
============================================================ */
.trustbar {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(249,115,22,0.3);
  padding: 18px 0;
  position: relative;
  z-index: 2;
}

.trustbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
}

.trustbar__item svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.trustbar__divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   ANIMAÇÕES
============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__badge    { animation: fadeInUp 0.5s ease 0.1s both; }
.hero__title    { animation: fadeInUp 0.5s ease 0.2s both; }
.hero__subtitle { animation: fadeInUp 0.5s ease 0.35s both; }
.hero__tags     { animation: fadeInUp 0.5s ease 0.45s both; }
.hero__actions  { animation: fadeInUp 0.5s ease 0.55s both; }

/* Pulse no botão WhatsApp */
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(22,163,74,0.5); }
  50%       { box-shadow: 0 4px 30px rgba(22,163,74,0.8); }
}

.btn-whatsapp {
  animation: pulse-green 2.5s ease-in-out infinite;
}

.btn-whatsapp:hover {
  animation: none;
}

/* ============================================================
   SUBPAGES HEADER - Cabeçalho padronizado para subpáginas
============================================================ */
.subpage-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-dark);
}

.subpage-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.6; /* Otimizado para leitura */
}

.subpage-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
  z-index: 1;
}

.subpage-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 1000px;
}

.subpage-hero__title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.subpage-hero__breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.subpage-hero__breadcrumb a {
  color: var(--color-white);
  transition: var(--transition);
}

.subpage-hero__breadcrumb a:hover {
  color: var(--color-primary);
}

/* Ajuste para o menu mobile no style.css */
.navbar__menu.is-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  z-index: 999;
}

@media (max-width: 992px) {
  .navbar__menu {
    display: none;
  }
  .navbar__toggle {
    display: flex;
  }
  .navbar__location {
    display: none;
  }
}

/* ============================================================
   ESTILOS PARA ÍCONES REAIS (PNG)
============================================================ */
.real-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.porque-card:hover .real-icon,
.value-card:hover .real-icon,
.solution-card:hover .real-icon,
.benefit-card:hover .real-icon,
.tech-card:hover .real-icon {
  transform: scale(1.1) rotate(2deg);
}

.porque-icon, .value-icon, .solution-icon, .benefit-icon, .tech-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  height: 80px;
}

/* ============================================================
   RESPONSIVE - Mobile First
============================================================ */
@media (max-width: 1024px) {
  .navbar__location {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar__inner {
    height: 64px;
    padding: 0 16px;
  }

  .navbar__menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-top: 2px solid var(--color-primary);
    z-index: 999;
  }

  .navbar__menu.is-open {
    display: flex;
  }

  .navbar__dropdown {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(249,115,22,0.05);
    margin-top: 8px;
  }

  .navbar__menu-item--has-dropdown:hover .navbar__dropdown {
    display: none;
  }

  .navbar__menu a {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__cta {
    font-size: 0.8rem;
    padding: 10px 14px;
  }

  .hero {
    min-height: 500px;
  }

  .hero__content {
    padding: 48px 16px;
  }

  .topbar__inner {
    gap: 20px;
  }

  .topbar__item {
    font-size: 0.78rem;
  }

  .trustbar__inner {
    gap: 20px;
  }

  .trustbar__divider {
    display: none;
  }

  .trustbar__item {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .btn-whatsapp, .btn-phone {
    width: 100%;
    justify-content: center;
  }

  .hero__actions {
    flex-direction: column;
  }

  .topbar__item:nth-child(3) {
    display: none;
  }

  .navbar__logo img {
    height: 80px;
  }

  .navbar__cta {
    display: none;
  }
}

/* ============================================================
   ARTICLE WRAPPER - Portal Style Layout (O Antagonista Style)
============================================================ */
.article-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}

@media (max-width: 1024px) {
  .article-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .article-sidebar {
    order: 2;
  }
  .article-main {
    order: 1;
  }
}

/* MAIN ARTICLE */
.article {
  background: var(--color-white);
}

.article-header {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e5e7eb;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-category {
  background: var(--color-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
}

.article-category a {
  color: white;
}

.article-date,
.article-time {
  color: #6b7280;
}

.article-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1.2;
  margin: 15px 0;
}

.article-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 15px 0 0;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.article-share span {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 0.9rem;
}

.article-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f3f4f6;
  border-radius: 50%;
  color: var(--color-dark);
  font-size: 1.1rem;
  transition: 0.3s;
}

.article-share a:hover {
  background: var(--color-primary);
  color: white;
}

/* FEATURED IMAGE */
.article-featured-image {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ARTICLE CONTENT */
.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
}

.article-content h2 {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-dark);
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--color-primary);
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.article-content li {
  padding: 12px 0 12px 30px;
  position: relative;
  margin-bottom: 10px;
}

.article-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.2rem;
}

.article-content strong {
  color: var(--color-dark);
  font-weight: 700;
}

/* CTA BUTTONS */
.article-cta {
  display: flex;
  gap: 15px;
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, rgba(249,115,22,0.1) 0%, rgba(22,163,74,0.1) 100%);
  border-radius: 12px;
  border-left: 6px solid var(--color-primary);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
  flex: 1;
  justify-content: center;
}

.btn-cta-primary {
  background: #25d366;
  color: white;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-cta-primary:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.btn-cta-secondary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.btn-cta-secondary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

/* ARTICLE FOOTER */
.article-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #e5e7eb;
}

.article-author {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 5px;
}

.author-info p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  background: #f3f4f6;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
}

.tag a {
  color: var(--color-dark);
  text-decoration: none;
}

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

/* ARTICLE NAVIGATION */
.article-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #e5e7eb;
}

.nav-link {
  display: block;
  padding: 20px;
  background: #f9fafb;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-link:hover {
  background: var(--color-gray-light);
  border-left: 4px solid var(--color-primary);
  padding-left: 16px;
}

.nav-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.nav-title {
  display: block;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
}

/* SIDEBAR */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-widget {
  background: #f9fafb;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.widget-title {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary);
}

/* TOC LIST */
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 12px;
}

.toc-list a {
  display: block;
  padding: 8px 12px;
  color: #4b5563;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: 0.3s;
  font-weight: 500;
}

.toc-list a:hover {
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  padding-left: 15px;
}

/* CTA WIDGET */
.cta-widget {
  background: linear-gradient(135deg, rgba(249,115,22,0.1) 0%, rgba(22,163,74,0.1) 100%);
  border: 2px solid var(--color-primary);
}

.cta-widget p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 20px;
}

.btn-widget {
  display: block;
  width: 100%;
  padding: 14px;
  margin-bottom: 10px;
  background: #25d366;
  color: white;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.3s;
}

.btn-widget:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

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

.btn-widget-secondary:hover {
  background: var(--color-primary-dark);
}

/* SERVICES LIST */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.services-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.services-list a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
}

.services-list a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

/* BLOG LIST */
.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-list li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
}

.blog-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-list a {
  display: block;
  color: #4b5563;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
  margin-bottom: 5px;
}

.blog-list a:hover {
  color: var(--color-primary);
}

.blog-date {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 500;
}

/* EXTERNAL LINKS */
.external-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.external-links li {
  margin-bottom: 12px;
}

.external-links a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.external-links a:hover {
  color: var(--color-primary);
}

.external-links a:after {
  content: "↗";
  font-size: 0.8rem;
}

/* CONTACT WIDGET */
.contact-widget p {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 10px 0;
}

.contact-widget strong {
  color: var(--color-dark);
  font-weight: 700;
}

/* ============================================================
   MAIN CONTAINER - Layout das subpáginas (LEGACY)
============================================================ */
.main-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

@media (max-width: 992px) {
  .main-container {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: none;
  }
}

.article-header {
  margin-bottom: 30px;
}

.article-header h1 {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-dark);
  margin: 0 0 15px;
}

.article-header p {
  font-size: 1.1rem;
  color: #4b5563;
  margin: 0;
}

.featured-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content h2 {
  font-family: var(--font-main);
  font-size: 1.8rem;
  color: var(--color-dark);
  margin: 40px 0 20px;
  border-left: 5px solid var(--color-primary);
  padding-left: 15px;
}

.content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #4b5563;
  line-height: 1.8;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
}

.sidebar-box {
  background: var(--color-gray-light);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid #eee;
}

.sidebar-box h3 {
  font-family: var(--font-main);
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--color-dark);
}

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

.sidebar-list li {
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.sidebar-list a {
  text-decoration: none;
  color: #4b5563;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
}

.sidebar-list a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.btn-whatsapp {
  display: block;
  background: #25d366;
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 20px;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* ============================================================
   SEÇÃO DE SERVIÇOS ORIGINAL
============================================================ */
.servicos {
  padding: 60px 20px;
  background: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  padding-bottom: 20px;
  transition: .3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  font-size: 20px;
  margin: 15px 10px;
}

.card p {
  font-size: 14px;
  padding: 0 15px;
  color: #555;
}

.botoes {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.btn-wpp {
  background: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-info {
  background: #333;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.btn-wpp:hover {
  background: #1ebe5d;
}

.btn-info:hover {
  background: #111;
}

/* Tablet */
@media(max-width:900px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Celular */
@media(max-width:600px) {
  .container {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SEÇÃO PORQUE HIDROJATO
============================================================ */
.hidrojateamento {
  padding: 80px 20px;
  background: #f5f7fa;
}

.hidrojateamento h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #222;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.col-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.servicos-lista {
  margin-top: 30px;
}

.servicos-lista h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.servicos-lista ul {
  padding-left: 20px;
  line-height: 1.8;
}

.col-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.beneficios {
  padding-left: 20px;
  margin-bottom: 40px;
  line-height: 1.9;
}

.setores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.setor {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.setor h4 {
  margin-bottom: 8px;
  font-size: 18px;
  color: #0a5aa1;
}

.setor p {
  font-size: 14px;
  color: #555;
}

/* TABLET */
@media(max-width:900px) {
  .grid {
    grid-template-columns: 1fr;
  }

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

/* MOBILE */
@media(max-width:600px) {
  .hidrojateamento h2 {
    font-size: 26px;
  }

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

/* ============================================================
   SEÇÃO PORQUE HIDROJATO (NOVA ESTRUTURA)
============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.porque-hidrojato {
  max-width: 1300px;
  margin: auto;
  padding: 80px 20px;
}

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

.imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.conteudo {
  background: #021e27;
  color: white;
  padding: 70px 60px;
  border-radius: 6px;
}

.conteudo h2 {
  font-size: 36px;
  margin-bottom: 40px;
  line-height: 1.3;
}

.conteudo span {
  color: #19b7d7;
}

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

.icone {
  min-width: 50px;
  height: 50px;
  background: #19b7d7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 22px;
}

.item h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.item p {
  font-size: 16px;
  line-height: 1.7;
  color: #cfd8dc;
  max-width: 480px;
}

@media (max-width: 1024px) {
  .porque-grid {
    grid-template-columns: 1fr;
  }

  .imagem img {
    height: 400px;
  }

  .conteudo {
    padding: 60px 40px;
  }

  .conteudo h2 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .porque-hidrojato {
    padding: 60px 15px;
  }

  .conteudo {
    padding: 40px 25px;
  }

  .conteudo h2 {
    font-size: 26px;
  }

  .item {
    gap: 15px;
  }

  .item p {
    font-size: 14px;
    max-width: 100%;
  }
}

/* ============================================================
   SEÇÃO ULTRA
============================================================ */
.ultra-section {
  padding: 120px 8%;
  background: linear-gradient(120deg, #fffcfb, #080808);
  position: relative;
  overflow: hidden;
}

.ultra-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .2;
}

.ultra-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.ultra-content {
  flex: 1;
  color: rgb(10, 10, 10);
}

.ultra-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.ultra-content p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 35px;
  opacity: .9;
}

.ultra-btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 40px;
  background: #e7e5e5;
  color: rgb(15, 15, 15);
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.ultra-btn:hover {
  background: #f8f7f7;
  transform: translateY(-2px);
}

.ultra-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ultra-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* Tablet */
@media (max-width:1024px) {
  .ultra-content h1 {
    font-size: 38px;
  }
}

/* Mobile */
@media (max-width:768px) {
  .ultra-container {
    flex-direction: column;
    text-align: center;
  }

  .ultra-content p {
    margin: auto;
    margin-bottom: 30px;
  }

  .ultra-image img {
    max-width: 100%;
  }

  .ultra-content h1 {
    font-size: 32px;
  }

  .ultra-section {
    padding: 80px 6%;
  }
}

/* ============================================================
   NOVA SEÇÃO: HIDROJATEAMENTO EM BAURU
============================================================ */

.hidrojateamento-bauru {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hidrojateamento-bauru::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,0.5), transparent);
}

.hidrojateamento-bauru__container {
  max-width: 1400px;
  margin: 0 auto;
}

.hidrojateamento-bauru__header {
  margin-bottom: 80px;
  text-align: center;
}

.hidrojateamento-bauru__title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #111827;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hidrojateamento-bauru__intro {
  font-size: 1.1rem;
  color: #374151;
  max-width: 900px;
  margin: 0 auto 25px;
  line-height: 1.8;
  font-weight: 500;
}

.hidrojateamento-bauru__content {
  font-size: 1rem;
  color: #4b5563;
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.8;
  text-align: justify;
}

.hidrojateamento-bauru__content strong {
  color: #111827;
  font-weight: 700;
}

/* ============================================================
   GRID DE SERVIÇOS - 21 CARDS
============================================================ */

.hidrojateamento-bauru__services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

/* CARD DE SERVIÇO */
.service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(249,115,22,0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  border-color: rgba(249,115,22,0.3);
}

.service-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__image {
  transform: scale(1.05);
}

.service-card__title {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  padding: 20px 20px 10px;
  line-height: 1.3;
}

.service-card__description {
  font-size: 0.95rem;
  color: #4b5563;
  padding: 0 20px 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card__actions {
  display: flex;
  gap: 12px;
  padding: 20px;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
}

.service-card__btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
}

.service-card__btn--whatsapp {
  background: #25D366;
  color: white;
}

.service-card__btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.service-card__btn--info {
  background: #f3f4f6;
  color: #111827;
  border: 2px solid #e5e7eb;
}

.service-card__btn--info:hover {
  background: #e5e7eb;
  border-color: #d1d5db;
  transform: translateY(-2px);
}

/* ============================================================
   ANIMAÇÕES PARA CARDS
============================================================ */

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card[data-aos="fade-up"] {
  animation: slideInUp 0.6s ease-out forwards;
  opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }
.service-card:nth-child(7) { animation-delay: 0.35s; }
.service-card:nth-child(8) { animation-delay: 0.4s; }
.service-card:nth-child(9) { animation-delay: 0.45s; }
.service-card:nth-child(10) { animation-delay: 0.5s; }
.service-card:nth-child(11) { animation-delay: 0.55s; }
.service-card:nth-child(12) { animation-delay: 0.6s; }
.service-card:nth-child(13) { animation-delay: 0.65s; }
.service-card:nth-child(14) { animation-delay: 0.7s; }
.service-card:nth-child(15) { animation-delay: 0.75s; }
.service-card:nth-child(16) { animation-delay: 0.8s; }
.service-card:nth-child(17) { animation-delay: 0.85s; }
.service-card:nth-child(18) { animation-delay: 0.9s; }
.service-card:nth-child(19) { animation-delay: 0.95s; }
.service-card:nth-child(20) { animation-delay: 1s; }
.service-card:nth-child(21) { animation-delay: 1.05s; }

/* ============================================================
   RESPONSIVO - SEÇÃO HIDROJATEAMENTO
============================================================ */

@media (max-width: 1200px) {
  .hidrojateamento-bauru__services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }

  .hidrojateamento-bauru__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .hidrojateamento-bauru {
    padding: 60px 15px;
  }

  .hidrojateamento-bauru__header {
    margin-bottom: 50px;
  }

  .hidrojateamento-bauru__title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .hidrojateamento-bauru__intro {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hidrojateamento-bauru__content {
    font-size: 0.95rem;
  }

  .hidrojateamento-bauru__services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  .service-card__image-wrapper {
    height: 200px;
  }

  .service-card__title {
    font-size: 1.1rem;
    padding: 15px 15px 8px;
  }

  .service-card__description {
    font-size: 0.9rem;
    padding: 0 15px 15px;
  }

  .service-card__actions {
    padding: 15px;
    gap: 10px;
  }

  .service-card__btn {
    min-width: 100px;
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hidrojateamento-bauru {
    padding: 40px 10px;
  }

  .hidrojateamento-bauru__title {
    font-size: 1.5rem;
  }

  .hidrojateamento-bauru__intro {
    font-size: 0.95rem;
  }

  .hidrojateamento-bauru__services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card {
    border-radius: 8px;
  }

  .service-card__image-wrapper {
    height: 180px;
  }

  .service-card__actions {
    flex-direction: column;
  }

  .service-card__btn {
    width: 100%;
    min-width: unset;
  }
}
