/* =============================================
   CERAMICA ITAPIRA — V2: AZUL DOMINANTE + DETALHES VERMELHO
   Azul Royal como cor principal em TUDO, vermelho só nos acentos
   Mobile-first | Botões pill | Seções clean
   ============================================= */

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

:root {
  --blue: #1A3C9E;
  --blue-light: #2B52C4;
  --blue-dark: #0E2A72;
  --blue-deeper: #091D54;
  --red: #E84430;
  --red-dark: #C73525;
  --red-light: #F05A48;
  --wa-green: #25D366;
  --white: #FFFFFF;
  --blue-50: #EDF1FA;
  --blue-100: #D6DFEF;
  --gray-50: #F7F8FA;
  --gray-100: #EEF0F4;
  --gray-200: #D8DCE4;
  --gray-400: #8C93A3;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --shadow: 0 4px 20px rgba(26,60,158,0.12);
  --shadow-lg: 0 8px 40px rgba(26,60,158,0.18);
  --radius: 12px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

/* --- BUTTONS (pill style) --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 9999px; font-weight: 600;
  font-size: 0.95rem; border: none; cursor: pointer;
  transition: var(--transition); text-align: center; justify-content: center;
}
.btn svg { flex-shrink: 0; }
.btn-wa { background: var(--wa-green); color: var(--white); }
.btn-wa:hover { background: #1EBE5D; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-xl { padding: 18px 44px; font-size: 1.1rem; }

/* --- SHINE EFFECT (botões CTA) --- */
.btn-wa, .btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-wa::after, .btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 70%,
    transparent 100%
  );
  animation: btn-shine 3s ease-in-out infinite;
}
@keyframes btn-shine {
  0% { left: -100%; }
  60% { left: 120%; }
  100% { left: 120%; }
}
.btn-block { width: 100%; }

/* --- NOTIFICATION BAR — vermelho como acento --- */
.notification-bar {
  background: var(--red); color: var(--white);
  padding: 10px 0; font-size: 0.85rem; text-align: center;
}
.notification-bar strong { color: var(--white); font-weight: 800; }

/* --- HEADER — azul --- */
#header {
  background: var(--white); position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(26,60,158,0.08); transition: var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 44px; height: 44px; background: var(--blue); color: var(--white);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; letter-spacing: -1px;
}
.logo-icon-white { background: rgba(255,255,255,0.15); }
.logo-text strong { display: block; font-size: 1rem; color: var(--blue); line-height: 1.2; }
.logo-text small { font-size: 0.7rem; color: var(--red); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.nav-desktop { display: flex; gap: 28px; }
.nav-desktop a { font-size: 0.9rem; font-weight: 500; color: var(--gray-600); transition: var(--transition); position: relative; }
.nav-desktop a:hover { color: var(--blue); }
.nav-desktop a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--red); transition: width 0.3s ease;
}
.nav-desktop a:hover::after { width: 100%; }
.header-cta { white-space: nowrap; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--blue); margin: 6px 0; transition: var(--transition); border-radius: 2px; }
.nav-mobile {
  display: none; flex-direction: column; gap: 0; background: var(--white);
  border-top: 2px solid var(--blue); padding: 16px 20px;
}
.nav-mobile a { padding: 12px 0; font-size: 1rem; font-weight: 500; color: var(--blue); border-bottom: 1px solid var(--blue-100); }
.nav-mobile .btn { margin-top: 12px; text-align: center; justify-content: center; }

@media (max-width: 900px) {
  .nav-desktop, .header-cta { display: none; }
  .hamburger { display: block; }
  .nav-mobile.open { display: flex; }
}

/* --- HERO — azul profundo --- */
.hero {
  position: relative; background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-deeper) 100%);
  padding: 100px 0 80px; overflow: hidden; min-height: 540px;
  display: flex; align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url('img/hero-bg-new.jpg') center/cover no-repeat;
  opacity: 0.1; mix-blend-mode: luminosity;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge {
  display: inline-block; background: var(--red);
  color: var(--white); padding: 8px 20px; border-radius: 9999px;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero h1 { font-family: var(--font); font-size: 3.2rem; font-weight: 900; color: var(--white); line-height: 1.08; margin-bottom: 16px; }
.hero h1 span { color: var(--white); position: relative; }
.hero h1 span::after {
  content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 6px;
  background: var(--red); opacity: 0.8; border-radius: 3px; z-index: -1;
}
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .hero { padding: 70px 0 60px; min-height: auto; }
  .hero h1 { font-size: 2.1rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* --- PAGE HERO (internal pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-deeper) 100%);
  padding: 48px 0 40px; color: var(--white);
}
.page-hero h1 { font-size: 2.4rem; font-weight: 900; margin-bottom: 12px; }
.page-hero > .container > p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 24px; max-width: 700px; }
.page-hero-nav { display: flex; gap: 10px; flex-wrap: wrap; }
.page-hero-nav .btn-outline { border-color: rgba(255,255,255,0.35); font-size: 0.85rem; padding: 8px 20px; }
.page-hero-nav .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 0.85rem;
  color: rgba(255,255,255,0.5); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb strong { color: var(--white); }

/* Active nav link */
.nav-desktop a.active { color: var(--blue); }
.nav-desktop a.active::after { width: 100%; }

@media (max-width: 640px) {
  .page-hero { padding: 32px 0 28px; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero-nav .btn-outline { font-size: 0.78rem; padding: 6px 14px; }
}

/* --- SECTIONS --- */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 2rem; font-weight: 800; color: var(--blue); margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: var(--gray-600); max-width: 600px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  color: var(--red); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px;
}

/* --- CATEGORIAS GRID (estilo print referência) --- */
.produtos-categorias { background: var(--blue-50); }
.categorias-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.categoria-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); border: 2px solid var(--blue-100);
  display: flex; flex-direction: column; cursor: pointer;
}
.categoria-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.categoria-card-img {
  padding: 24px; background: var(--gray-50); display: flex;
  align-items: center; justify-content: center; min-height: 180px;
}
.categoria-card-img img { max-height: 150px; width: auto; object-fit: contain; transition: transform 0.4s ease; }
.categoria-card:hover .categoria-card-img img { transform: scale(1.08); }
.categoria-card-footer {
  background: var(--blue); color: var(--white); padding: 16px 20px;
}
.categoria-card-footer strong { display: block; font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.categoria-card-footer span { font-size: 0.82rem; opacity: 0.7; }

@media (max-width: 640px) {
  .categorias-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .categoria-card-img { padding: 16px; min-height: 120px; }
  .categoria-card-img img { max-height: 100px; }
  .categoria-card-footer { padding: 12px 14px; }
  .categoria-card-footer strong { font-size: 0.9rem; }
}

/* --- CATÁLOGO DETALHADO POR CATEGORIA --- */
.catalogo-section { background: var(--white); }
.catalogo-section.catalogo-alt { background: var(--blue-50); }
.catalogo-header { margin-bottom: 32px; }
.catalogo-header h2 { font-size: 2rem; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.catalogo-header p { font-size: 1rem; color: var(--gray-600); }

/* --- FILTROS POR LINHA --- */
.linha-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.linha-btn {
  padding: 8px 22px; border-radius: 9999px; background: var(--white);
  border: 2px solid var(--blue-100); font-size: 0.85rem; font-weight: 600;
  color: var(--blue); cursor: pointer; transition: var(--transition);
  font-family: var(--font);
}
.linha-btn:hover { border-color: var(--blue); background: rgba(26,60,158,0.05); }
.linha-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* --- PRODUTOS GRID (items individuais) --- */
.produtos-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.produto-item {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 2px solid var(--blue-100);
  transition: var(--transition);
}
.produto-item:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.produto-item.hidden { display: none; }
.produto-item-img {
  padding: 20px; background: var(--gray-50); display: flex;
  align-items: center; justify-content: center; min-height: 160px;
}
.produto-item-img img { max-height: 130px; width: auto; object-fit: contain; }
.produto-item-info { padding: 16px 18px; }
.produto-item-info strong { display: block; font-size: 0.95rem; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.produto-item-info .produto-dim { display: block; font-size: 0.82rem; color: var(--gray-600); margin-bottom: 4px; }
.produto-item-info .produto-linha {
  display: inline-block; font-size: 0.75rem; font-weight: 600; color: var(--blue);
  background: var(--blue-50); padding: 2px 10px; border-radius: 9999px; margin-bottom: 4px;
}
.produto-specs {
  margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--blue-100);
  display: flex; flex-direction: column; gap: 3px;
}
.produto-specs span {
  font-size: 0.78rem; color: var(--gray-600);
}
.produto-specs b {
  color: var(--blue); font-weight: 700;
}
.catalogo-cta { text-align: center; margin-top: 32px; }

/* --- SELO SUSTENTABILIDADE (Cerâmica vs Cimento) --- */
.selo-sustentabilidade {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 70px 0; position: relative; overflow: hidden;
}
.selo-grid {
  display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center;
}
.selo-badge-circle {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, #2E7D32, #43A047);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); box-shadow: 0 8px 32px rgba(46,125,50,0.3), inset 0 0 0 6px rgba(255,255,255,0.25);
  text-align: center; position: relative; flex-shrink: 0;
  border: 4px solid rgba(255,255,255,0.5);
  animation: selo-pulse 3s ease-in-out infinite;
}
.selo-badge-circle::before {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px dashed rgba(46,125,50,0.4);
}
.selo-leaf { margin-bottom: 4px; line-height: 1; }
.selo-label { font-size: 0.82rem; line-height: 1.2; }
.selo-label strong { font-size: 1.2rem; display: block; letter-spacing: 2px; }
@keyframes selo-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(46,125,50,0.3), inset 0 0 0 6px rgba(255,255,255,0.25); }
  50% { box-shadow: 0 8px 40px rgba(46,125,50,0.5), inset 0 0 0 6px rgba(255,255,255,0.35); }
}
.selo-content h2 { font-size: 1.8rem; font-weight: 800; color: #1B5E20; margin-bottom: 12px; }
.selo-content > p { font-size: 1rem; color: #33691E; margin-bottom: 24px; line-height: 1.6; }
.selo-comparativo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.selo-vs-item {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.selo-vs-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.selo-ceramica { border-top: 4px solid #43A047; }
.selo-ceramica h4 { color: #2E7D32; }
.selo-cimento { border-top: 4px solid #9E9E9E; }
.selo-cimento h4 { color: #616161; }
.selo-vs-item ul { list-style: none; padding: 0; }
.selo-vs-item li {
  font-size: 0.88rem; color: var(--gray-600); padding: 5px 0;
  border-bottom: 1px solid var(--gray-100);
}
.selo-vs-item li:last-child { border-bottom: none; }
.selo-ceramica li strong { color: #2E7D32; }

@media (max-width: 768px) {
  .selo-grid { grid-template-columns: 1fr; text-align: center; }
  .selo-badge-circle { margin: 0 auto 16px; width: 140px; height: 140px; }
  .selo-leaf svg { width: 32px; height: 32px; }
  .selo-label { font-size: 0.72rem; }
  .selo-label strong { font-size: 1rem; }
  .selo-comparativo { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .produtos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .produto-item-img { padding: 12px; min-height: 110px; }
  .produto-item-img img { max-height: 90px; }
  .produto-item-info { padding: 12px 14px; }
  .produto-item-info strong { font-size: 0.82rem; }
}

/* --- NÚMEROS — fundo azul escuro, números brancos, acento vermelho --- */
.numeros {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white); padding: 60px 0; text-align: center;
}
.numeros h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 40px; color: var(--white); }
.numeros-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.numero-item { padding: 16px; }
.numero-value { font-size: 3.5rem; font-weight: 900; color: var(--white); display: inline; }
.numero-suffix { font-size: 2rem; font-weight: 700; color: var(--red); }
.numero-label { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

@media (max-width: 640px) {
  .numeros-grid { grid-template-columns: repeat(2, 1fr); }
  .numero-value { font-size: 2.5rem; }
}

/* (tabela de preços removida — catálogo sem preços) */

/* --- SOBRE — fundo branco, borda azul --- */
.sobre { background: var(--white); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sobre-img { position: relative; border-radius: var(--radius); overflow: hidden; border: 4px solid var(--blue); }
.sobre-img img { width: 100%; border-radius: calc(var(--radius) - 4px); aspect-ratio: 4/3; object-fit: cover; }
.sobre-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--red); color: var(--white);
  padding: 12px 20px; border-radius: var(--radius);
  font-size: 0.85rem; line-height: 1.3; text-align: center;
}
.sobre-img-badge strong { font-size: 2rem; display: block; }
.sobre-text h2 { font-size: 2rem; font-weight: 800; color: var(--blue); margin-bottom: 16px; }
.sobre-text p { font-size: 1rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.7; }
.sobre-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.highlight-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: var(--blue-50); border-radius: var(--radius);
  border-left: 3px solid var(--red);
}
.highlight-icon { font-size: 1.5rem; }
.highlight-item strong { display: block; font-size: 0.9rem; color: var(--blue); }
.highlight-item small { font-size: 0.78rem; color: var(--gray-400); }

@media (max-width: 768px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 32px; }
  .sobre-highlights { grid-template-columns: 1fr; }
}

/* --- VANTAGENS (Pontos Fortes) --- */
.vantagens { background: var(--blue-50); }
.vantagens-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.vantagem-card {
  background: var(--white); padding: 32px 24px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow); transition: var(--transition);
  border-top: 4px solid transparent;
}
.vantagem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-top-color: var(--red); }
.vantagem-icon { font-size: 2.5rem; margin-bottom: 16px; }
.vantagem-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.vantagem-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.5; }

.sustentabilidade-banner {
  display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius);
  overflow: hidden; background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); box-shadow: var(--shadow-lg);
}
.sustentabilidade-banner img { width: 100%; height: 100%; object-fit: cover; }
.sustentabilidade-content { padding: 40px; color: var(--white); display: flex; flex-direction: column; justify-content: center; }
.sustentabilidade-content h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.sustentabilidade-content p { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-bottom: 24px; line-height: 1.6; }
.sustentabilidade-stats { display: flex; gap: 32px; }
.sustentabilidade-stats div { text-align: center; }
.sustentabilidade-stats strong { display: block; font-size: 1.8rem; color: var(--red-light); }
.sustentabilidade-stats small { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
  .vantagens-grid { grid-template-columns: 1fr; }
  .sustentabilidade-banner { grid-template-columns: 1fr; }
  .sustentabilidade-banner img { height: 200px; }
  .sustentabilidade-content { padding: 24px; }
  .sustentabilidade-stats { gap: 16px; }
}

/* --- CTA FINAL — azul com botão vermelho --- */
.cta-final {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white); text-align: center; padding: 70px 0;
}
.cta-final h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; color: var(--white); }
.cta-final p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.cta-final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-final .btn-outline { border-color: rgba(255,255,255,0.3); }
.cta-final .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* --- CONTATO --- */
.contato-section { background: var(--white); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contato-center { text-align: center; }
.contato-center h2 { margin-bottom: 32px; }
.contato-center .contato-canais { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px; }
.contato-center .contato-canal { flex-direction: column; text-align: center; padding: 32px 20px; }
.contato-center .contato-canal .canal-icon { margin-bottom: 12px; }
@media (max-width: 768px) { .contato-center .contato-canais { grid-template-columns: 1fr; } }
.contato-info h2 { font-size: 2rem; font-weight: 800; color: var(--blue); margin-bottom: 24px; }
.contato-canais { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.contato-canal {
  display: flex; align-items: center; gap: 16px; padding: 16px;
  background: var(--blue-50); border-radius: var(--radius); border: 1px solid var(--blue-100);
  transition: var(--transition);
}
.contato-canal:hover { transform: translateX(4px); border-color: var(--blue); }
.canal-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.canal-icon.wa { background: rgba(37,211,102,0.1); color: var(--wa-green); }
.canal-icon.ig { background: rgba(225,48,108,0.1); color: #E1306C; }
.canal-icon.loc { background: rgba(26,60,158,0.1); font-size: 1.5rem; }
.contato-canal strong { display: block; font-size: 1rem; color: var(--blue); }
.contato-canal span { font-size: 0.9rem; color: var(--gray-400); }
.contato-horario { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

.contato-form {
  background: var(--blue-50); padding: 32px; border-radius: var(--radius);
  border: 2px solid var(--blue-100);
}
.contato-form h3 { font-size: 1.3rem; font-weight: 700; color: var(--blue); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 2px solid var(--blue-100);
  border-radius: var(--radius); font-family: var(--font); font-size: 0.95rem;
  transition: var(--transition); color: var(--gray-800); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,60,158,0.1);
}
.form-group textarea { resize: vertical; }

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

/* --- FOOTER — azul escuro profundo --- */
footer {
  background: var(--blue-deeper); color: rgba(255,255,255,0.7); padding: 60px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-text strong { color: var(--white); }
.footer-logo .logo-text small { color: var(--red-light); }
.footer-col p { font-size: 0.9rem; line-height: 1.6; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; font-weight: 700; position: relative; padding-bottom: 8px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px; background: var(--red); border-radius: 1px; }
.footer-col a, .footer-col span { display: block; font-size: 0.85rem; margin-bottom: 10px; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; font-size: 0.8rem; }
.footer-dev { margin-top: 8px; font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-dev a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-dev a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
}

/* --- FLOATING WHATSAPP --- */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 64px; height: 64px; background: var(--wa-green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.float-wa svg { width: 32px; height: 32px; }
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.float-wa-pulse {
  position: absolute; width: 100%; height: 100%;
  border-radius: 50%; background: var(--wa-green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* --- AOS animations --- */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
