/*
Theme Name: Galp Telegestão
Theme URI: https://galp-tech.com
Author: Galp Telegestão
Author URI: https://galp-tech.com
Description: Tema corporativo para a Galp Telegestão - Soluções em IoT e Cidades Inteligentes
Version: 1.0
License: Proprietary
Text Domain: galp
*/

/* =============================================
   IMPORTS & RESET
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --navy: #142640;
  --navy-light: #1e3655;
  --navy-dark: #0d1a2d;
  --gold: #d4952b;
  --gold-light: #e6b34d;
  --gold-dark: #b37a1f;
  --bg-warm: hsl(35, 30%, 90%);
  --text-muted: #5c6b7a;
  --border-color: #d8dde3;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  color: #1a2530;
  background: #fff;
  line-height: 1.6;
  padding-top: 88px; /* compensa header fixo */
}
body.elementor-template-canvas { padding-top: 0; }
/* Hero/page-hero estendem por baixo do header fixo */
.hero, .page-hero { margin-top: -88px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

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

/* =============================================
   HEADER
============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  min-height: 88px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 88px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.site-header .logo,
.site-header .logo a,
.site-header .custom-logo-link { display: inline-flex; align-items: center; }
.site-header .logo img,
.site-header .custom-logo { height: 56px; width: auto; max-width: 220px; display: block; }

.main-nav { display: flex; align-items: center; gap: 1.75rem; flex-wrap: nowrap; }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--gold); }

.btn-conectada {
  display: inline-block;
  padding: 0.55rem 1.25rem;
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-conectada:hover { background: var(--gold); color: #fff !important; }

/* Hamburger */
.mobile-toggle {
  display: none; cursor: pointer; background: none; border: none;
  width: 40px; height: 40px; padding: 8px;
  flex-direction: column; justify-content: space-between;
}
.mobile-toggle span {
  display: block; height: 3px; width: 100%;
  background: var(--navy); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 960px) {
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  }
  .main-nav.active { display: flex; }
  .main-nav a { padding: 0.75rem 0; border-bottom: 1px solid #f0f2f5; }
  .main-nav .btn-conectada { margin-top: 0.75rem; text-align: center; }
  .mobile-toggle { display: flex; }
}

/* =============================================
   HERO SECTION (Carrossel)
============================================= */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  opacity: 0.75;
  mix-blend-mode: multiply;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0.4;
}
.hero .container { position: relative; z-index: 1; padding-top: 6rem; }
.hero .hero-content { max-width: 640px; }
.hero .hero-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.hero .hero-tag .bar {
  width: 4px;
  height: 2rem;
  background: var(--gold);
  border-radius: 9999px;
}
.hero .hero-tag span {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 36rem;
}

/* =============================================
   GRADIENT DIVIDER
============================================= */
.gradient-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* =============================================
   ABOUT SECTION
============================================= */
.about-section { padding: 5rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.about-section p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-section .about-img { width: 100%; }

/* =============================================
   DIFFERENTIALS SECTION
============================================= */
.differentials {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.differentials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  opacity: 0.75;
}
.differentials .container { position: relative; z-index: 1; padding: 5rem 1rem; }
.differentials .diff-tag {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.differentials h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.differentials h2.subtle { font-size: clamp(1.5rem, 3vw, 2.25rem); opacity: 0.6; }
.differentials .btn-products {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.75rem 2.5rem;
  border: 2px solid #fff;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s;
}
.differentials .btn-products:hover { background: #fff; color: var(--navy); }

/* =============================================
   CLIENTS SECTION
============================================= */
.clients-section { padding: 5rem 0; }
.clients-wrapper {
  background: var(--bg-warm);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
}
.clients-stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 1rem; }
.clients-stars svg { width: 2rem; height: 2rem; fill: var(--gold); color: var(--gold); }
.clients-wrapper h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.clients-wrapper > p {
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto 3rem;
}
.clients-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.clients-carousel::-webkit-scrollbar { display: none; }
.client-card {
  min-width: 12rem;
  height: 12rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  gap: 0.75rem;
  transition: box-shadow 0.2s;
}
.client-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.client-card img { height: 5rem; width: 5rem; object-fit: contain; }
.client-card span {
  font-size: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.7;
  text-align: center;
  line-height: 1.3;
}
.btn-contato {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.75rem 2.5rem;
  background: var(--navy);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-contato:hover { background: var(--navy-light); }

/* =============================================
   FAQ SECTION
============================================= */
.faq-section { padding: 5rem 0; }
.faq-section .faq-container { max-width: 48rem; margin: 0 auto; }
.faq-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 1rem;
}
.faq-section > .faq-container > p {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  text-align: left;
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--gold); transition: transform 0.2s; }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 1.25rem; }

/* =============================================
   CATALOG SECTION
============================================= */
.catalog-section {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
}
.catalog-section h2 { color: #fff; margin-bottom: 1rem; }
.catalog-section p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.btn-catalog {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-catalog:hover { background: var(--gold-dark); }

/* =============================================
   PAGE HERO (páginas internas)
============================================= */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  opacity: 0.7;
}
.page-hero .container { position: relative; z-index: 1; padding-top: 4rem; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 36rem;
  margin: 0 auto;
}

/* =============================================
   PRODUCTS PAGE
============================================= */
.products-section { background: var(--navy); padding: 5rem 0; }
.product-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) { .product-item { flex-direction: column; } }
.product-circle {
  width: 18rem; height: 18rem;
  border-radius: 50%;
  border: 4px solid var(--gold);
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  flex-shrink: 0;
}
.product-circle img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.product-info { max-width: 32rem; text-align: left; }
@media (max-width: 768px) { .product-info { text-align: center; } }
.product-info h2 {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1.5rem;
}
.product-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.product-info li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}
.product-buttons { display: flex; gap: 1rem; margin-top: 1.5rem; }
@media (max-width: 768px) { .product-buttons { justify-content: center; } }
.btn-datasheet {
  padding: 0.625rem 1.5rem;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.btn-datasheet:hover { background: var(--gold-dark); }
.btn-more-info {
  padding: 0.625rem 1.5rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  border-radius: 4px;
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s;
}
.btn-more-info:hover { background: var(--gold); color: #fff; }

/* =============================================
   SOBRE NÓS
============================================= */
.sobre-empresa { padding: 5rem 0; }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) { .sobre-grid { grid-template-columns: 1fr; } }
.sobre-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.sobre-tag .bar { width: 4px; height: 2rem; background: var(--gold); border-radius: 9999px; }
.sobre-tag span {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sobre-empresa h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.sobre-empresa p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.sobre-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sobre-images img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  width: 100%;
  height: 16rem;
  object-fit: cover;
}
.sobre-images img:nth-child(2) { margin-top: 2rem; }

/* Missão / Valores / Compromisso */
.mvv-section { padding: 5rem 0; background: hsl(210, 20%, 95%); }
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) { .mvv-grid { grid-template-columns: 1fr; } }
.mvv-card {
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.mvv-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin: 1rem 0;
}
.mvv-card p { color: var(--text-muted); line-height: 1.7; }
.mvv-card .icon { width: 2.5rem; height: 2.5rem; color: var(--gold); }

/* Contadores */
.counters-section {
  position: relative;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}
.counters-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0.8;
}
.counters-section .container { position: relative; z-index: 1; }
.counters-section h2 { color: #fff; margin-bottom: 3rem; }
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) { .counters-grid { grid-template-columns: repeat(2, 1fr); } }
.counter-item { display: flex; flex-direction: column; align-items: center; }
.counter-item .number {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
}
.counter-item p { color: rgba(255,255,255,0.8); margin-top: 0.5rem; }

/* Fábrica */
.fabrica-section { padding: 5rem 0; }
.fabrica-section .section-header { text-align: center; margin-bottom: 3rem; }
.fabrica-section h2 { color: var(--navy); }
.fabrica-section .section-header p { color: var(--text-muted); max-width: 36rem; margin: 1rem auto 0; }
.fabrica-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) { .fabrica-grid { grid-template-columns: repeat(2, 1fr); } }
.fabrica-grid img {
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

/* =============================================
   CONTACT PAGE
============================================= */
.contact-section { padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form h2, .contact-info h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-family: 'Open Sans', sans-serif;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--gold);
}
.contact-form button {
  width: 100%;
  padding: 0.75rem;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover { background: var(--navy-light); }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-item .icon-circle { color: var(--gold); margin-top: 0.25rem; }
.contact-info-item h4 { font-weight: 600; color: var(--navy); font-family: 'Open Sans', sans-serif; }
.contact-info-item p { color: var(--text-muted); font-size: 0.875rem; }

/* =============================================
   BLOG
============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 5rem 0;
}
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-body h3 {
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.blog-card-body .date { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.blog-card-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--bg-warm);
  padding: 3rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: flex-start;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer .logo img { height: 56px; }
.site-footer .copyright {
  color: var(--navy);
  opacity: 0.5;
  font-size: 0.75rem;
  margin-top: 1rem;
}
.footer-contact p { color: var(--navy); opacity: 0.7; font-size: 0.875rem; line-height: 1.6; }
.footer-address p { color: var(--navy); opacity: 0.7; font-size: 0.875rem; line-height: 1.6; }
.footer-address a { color: var(--gold); font-weight: 500; }
.footer-address a:hover { text-decoration: underline; }
.footer-social { display: flex; gap: 1rem; justify-content: flex-end; }
.footer-social a {
  color: var(--navy);
  opacity: 0.7;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold); opacity: 1; }

/* =============================================
   WHATSAPP BUTTON
============================================= */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 1.75rem; height: 1.75rem; fill: #fff; }

/* =============================================
   RESPONSIVIDADE EXTRA - TABLET & MOBILE PEQUENO
============================================= */

/* Tablet (até 1024px) */
@media (max-width: 1024px) {
  .container { max-width: 100%; padding: 0 1.5rem; }
  .main-nav { gap: 1.25rem; }
  .main-nav a { font-size: 0.8rem; }
  .hero h1 { font-size: 2.5rem; }
  .about-grid, .sobre-grid, .mvv-grid, .contact-grid { gap: 2rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-social { justify-content: flex-start; }
  .product-circle { width: 280px; height: 280px; }
  .differentials h2 { font-size: 2rem; }
}

/* Mobile padrão (até 768px) */
@media (max-width: 768px) {
  .hero { height: auto; min-height: 100vh; padding: 6rem 0 3rem; }
  .hero h1 { font-size: 2rem; line-height: 1.2; }
  .hero p { font-size: 1rem; }
  .page-hero { min-height: 280px; padding: 5rem 0 2rem; }
  .page-hero h1 { font-size: 2rem; }
  .section-title, .clients-section h2, .faq-container h2,
  .catalog-section h2, .about-section h2 { font-size: 1.75rem; }
  .differentials { padding: 3rem 0; }
  .differentials h2 { font-size: 1.5rem; }
  .product-circle { width: 240px; height: 240px; margin: 0 auto; }
  .product-info h2 { font-size: 1.5rem; text-align: center; }
  .blog-grid { gap: 1.5rem; }
  .clients-carousel { gap: 1rem; }
  .client-card { min-width: 140px; }
  .faq-container { padding: 0 1rem; }
  .faq-question { font-size: 0.95rem; padding: 1rem; }
  .catalog-section { padding: 3rem 1rem; }
  .btn-catalog, .btn-products, .btn-contato { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
  .site-footer { padding: 2.5rem 0; }
  .footer-grid { gap: 1.5rem; }
  .whatsapp-btn { width: 3rem; height: 3rem; bottom: 1rem; right: 1rem; }
  .whatsapp-btn svg { width: 1.4rem; height: 1.4rem; }
}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .site-header .logo img { height: 38px; }
  .hero h1 { font-size: 1.65rem; }
  .hero p { font-size: 0.9rem; }
  .page-hero h1 { font-size: 1.6rem; }
  .page-hero p { font-size: 0.9rem; }
  .about-section, .sobre-section, .clients-section,
  .faq-section, .catalog-section { padding: 2.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .fabrica-grid { grid-template-columns: 1fr; }
  .product-circle { width: 200px; height: 200px; }
  .product-buttons { flex-direction: column; gap: 0.75rem; }
  .product-buttons a { width: 100%; text-align: center; }
  .btn-conectada { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
  iframe { height: 220px !important; }
}

/* Foco/Acessibilidade */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Imagens fluidas em qualquer tela */
img, video, iframe { max-width: 100%; height: auto; }
