/* =============================================
   Nitrox MA — Stylesheet
   ============================================= */

:root {
  --green-dark: #1a4d2e;
  --green: #2d6a3e;
  --green-light: #3d8b55;
  --orange: #e87722;
  --orange-light: #f5923e;
  --black: #0d0d0d;
  --gray-900: #1a1a1a;
  --gray-800: #2a2a2a;
  --gray-700: #444;
  --gray-500: #777;
  --gray-300: #ccc;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --font: 'Montserrat', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --transition: 0.3s ease;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--orange);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  min-width: 0;
}

.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.text-green { color: var(--green-light); }
.text-orange { color: var(--orange); }

/* ---- Buttons ---- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 119, 34, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--green-dark);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn--whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: var(--white);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

@media (min-width: 1025px) {
  .btn:not(.btn--full) {
    width: auto;
    display: inline-flex;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__actions .btn {
    width: auto;
    flex: 0 1 auto;
  }

  .cta-banner__actions {
    flex-direction: row;
    width: auto;
  }

  .cta-banner__actions .btn {
    width: auto;
  }
}

/* ---- Section shared ---- */
.section {
  padding: 100px 0;
}

.section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__header .section__desc {
  margin: 0 auto;
}

/* ---- Reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
  min-width: 0;
  width: 100%;
}

.header__logo {
  flex-shrink: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.header__logo img,
.header__logo-img {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav__link--cta {
  background: var(--orange);
  color: var(--white) !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--orange-light);
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.92) 0%,
    rgba(26, 77, 46, 0.85) 50%,
    rgba(13, 13, 13, 0.88) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero__content {
  padding: 80px 0 120px;
  max-width: 800px;
  width: 100%;
  min-width: 0;
}

.hero__badge {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 8px 16px;
  background: rgba(232, 119, 34, 0.15);
  border: 1px solid rgba(232, 119, 34, 0.4);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-light);
  margin-bottom: 24px;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero__title {
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
  width: 100%;
  max-width: 100%;
}

.hero__actions .btn {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex-shrink: 1;
}

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.hero__stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Sobre ---- */
.sobre {
  background: var(--gray-100);
}

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

.sobre__visual {
  position: relative;
}

.sobre__logo-wrap {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.sobre__logo-icon {
  width: 100%;
  height: auto;
}

.sobre__flyer {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.sobre__text {
  margin-bottom: 16px;
  color: var(--gray-700);
  font-size: 1.02rem;
}

.sobre__features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sobre__features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sobre__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.sobre__features strong {
  display: block;
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 2px;
}

.sobre__features span {
  font-size: 0.88rem;
  color: var(--gray-500);
}

/* ---- Setores ---- */
.setores {
  background: var(--white);
}

.setores__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.setor-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.setor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.setor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.setor-card:hover::before {
  transform: scaleX(1);
}

.setor-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(45, 106, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.setor-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.setor-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ---- Produtos ---- */
.produtos {
  background: var(--green-dark);
}

.produtos .section__tag { color: var(--orange-light); }
.produtos .section__title { color: var(--white); }
.produtos .section__desc { color: rgba(255, 255, 255, 0.65); }

.produtos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.produto-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

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

.produto-card__header {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.produto-card__header--medicinal { background: var(--green); }
.produto-card__header--industrial { background: var(--green-dark); }
.produto-card__header--outros { background: var(--orange); }

.produto-card__header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.produto-card__list {
  padding: 24px;
}

.produto-card__list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 10px;
}

.produto-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.produto-card__list li:last-child {
  border-bottom: none;
}

/* ---- Serviços ---- */
.servicos {
  background: var(--gray-100);
}

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

.servicos__intro .btn {
  margin-top: 28px;
}

.servicos__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.servico-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}

.servico-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.servico-item__num {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(45, 106, 62, 0.2);
  line-height: 1;
  flex-shrink: 0;
}

.servico-item h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.servico-item p {
  font-size: 0.88rem;
  color: var(--gray-500);
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 60px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner__text h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner__text p {
  color: rgba(255, 255, 255, 0.75);
}

.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.cta-banner__actions .btn {
  flex: 1 1 auto;
  min-width: 0;
}

/* ---- Contato ---- */
.contato {
  background: var(--white);
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.contato__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato__card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}

.contato__card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.contato__card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.contato__card p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.contato__card a {
  color: var(--gray-700);
}

.contato__card a:hover {
  color: var(--orange);
}

.contato__plus-code {
  font-size: 0.82rem !important;
  color: var(--gray-500) !important;
  margin-top: 4px;
}

.contato__form {
  background: var(--gray-100);
  padding: 32px;
  border-radius: var(--radius);
}

.contato__form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-800);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 106, 62, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contato__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contato__map iframe {
  display: block;
}

/* ---- Footer ---- */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 60px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand img {
  margin-bottom: 16px;
  height: 32px;
  width: auto;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer__links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.65);
}

.footer__links a:hover {
  color: var(--orange);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .setores__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .produtos__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .hero__content {
    padding: 56px 0 100px;
  }

  .hero__title {
    font-size: clamp(1.45rem, 5.5vw, 2.2rem);
  }

  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero__badge {
    font-size: 0.78rem;
    padding: 8px 14px;
  }

  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner__actions .btn {
    width: 100%;
  }

  .servicos__intro .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .container {
    padding: 0 16px;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .header__logo img {
    height: 28px;
    max-width: 140px;
    object-fit: contain;
    object-position: left center;
  }

  .header__toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    padding: 16px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-110%);
    opacity: 0;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav__link {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .nav__link--cta {
    margin-left: 0;
    text-align: center;
    margin-top: 8px;
  }

  .section {
    padding: 56px 0;
  }

  .section__header {
    margin-bottom: 40px;
  }

  .section__tag {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
  }

  .section__title {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .section__desc {
    font-size: 0.95rem;
  }

  .btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 40px 0 90px;
  }

  .hero__badge {
    font-size: 0.78rem;
    padding: 8px 14px;
  }

  .hero__title {
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
  }

  .hero__subtitle {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  .hero__actions {
    gap: 10px;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 24px;
  }

  .hero__stat {
    text-align: center;
  }

  .hero__stat strong {
    font-size: 1.5rem;
  }

  .hero__stat span {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .hero__scroll {
    bottom: 20px;
  }

  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sobre__visual {
    overflow: hidden;
    border-radius: var(--radius);
  }

  .sobre__logo-wrap {
    width: 52px;
    height: 52px;
    top: 8px;
    left: 8px;
    padding: 8px;
  }

  .sobre__text {
    font-size: 0.95rem;
  }

  .sobre__features li {
    gap: 12px;
  }

  .sobre__feature-icon {
    width: 42px;
    height: 42px;
  }

  .sobre__features strong {
    font-size: 0.9rem;
  }

  .sobre__features span {
    font-size: 0.82rem;
  }

  .setor-card {
    padding: 24px 18px;
  }

  .setor-card h3 {
    font-size: 1rem;
  }

  .servicos__intro .btn {
    width: 100%;
  }

  .servico-item {
    padding: 18px;
    gap: 14px;
  }

  .servico-item__num {
    font-size: 1.2rem;
  }

  .servico-item h3 {
    font-size: 0.9rem;
  }

  .servico-item p {
    font-size: 0.84rem;
  }

  .cta-banner {
    padding: 40px 0;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .cta-banner__text h2 {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .cta-banner__text p {
    font-size: 0.92rem;
  }

  .contato__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contato__card {
    padding: 16px;
    gap: 12px;
  }

  .contato__card-icon {
    width: 40px;
    height: 40px;
  }

  .contato__card h3 {
    font-size: 0.85rem;
  }

  .contato__card p {
    font-size: 0.85rem;
    word-break: break-word;
  }

  .contato__form {
    padding: 20px 16px;
  }

  .contato__form h3 {
    font-size: 1.05rem;
    margin-bottom: 18px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 12px 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contato__map iframe {
    height: 280px;
  }

  .footer {
    padding-top: 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }

  .footer__brand p {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .footer__links li {
    font-size: 0.85rem;
    word-break: break-word;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

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

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero__stat {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
  }

  .hero__stat strong {
    font-size: 1.4rem;
    min-width: 36px;
  }

  .hero__stat span {
    font-size: 0.82rem;
  }

  .section__title {
    font-size: 1.35rem;
  }

  .produto-card__header {
    padding: 18px;
  }

  .produto-card__header h3 {
    font-size: 1rem;
  }

  .produto-card__list {
    padding: 18px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero__title {
    font-size: 1.35rem;
  }

  .btn {
    padding: 11px 16px;
    font-size: 0.85rem;
  }
}
