/* ===== GABDRENO - Custom Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --azul-escuro: #0d1f3c;
  --azul-medio: #1a3a6b;
  --azul-claro: #2563eb;
  --cinza-industrial: #374151;
  --cinza-claro: #f1f5f9;
  --laranja: #f97316;
  --laranja-hover: #ea6c0a;
  --branco: #ffffff;
  --texto-claro: #94a3b8;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--branco);
  color: var(--cinza-industrial);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 31, 60, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  padding: 0 1.5rem;
}

#navbar.scrolled {
  padding: 0 1.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--branco);
  letter-spacing: 2px;
  text-decoration: none;
}

.nav-logo span {
  color: var(--laranja);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--laranja);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--laranja);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--laranja);
  color: var(--branco) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--laranja-hover) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO CAROUSEL OTIMIZADO ===== */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--azul-escuro);
}

@media (max-width: 768px) {
  #hero {
    min-height: 520px;
    height: auto;
  }
}

@media (max-width: 480px) {
  #hero {
    min-height: 450px;
  }
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 31, 60, 0.9) 0%, rgba(13, 31, 60, 0.4) 50%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
  padding-top: 80px;
}

@media (max-width: 768px) {
  .carousel-overlay {
    background: linear-gradient(to bottom, rgba(13, 31, 60, 0.8) 0%, rgba(13, 31, 60, 0.95) 100%);
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    padding-top: 100px;
    align-items: flex-end;
    min-height: 520px;
  }
}

@media (max-width: 480px) {
  .carousel-overlay {
    padding: 1rem;
    padding-top: 80px;
    min-height: 450px;
  }
}

.carousel-content {
  max-width: 650px;
  z-index: 5;
  width: 100%;
}

@media (max-width: 768px) {
  .carousel-content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .carousel-content {
    max-width: 100%;
  }
}

.carousel-tag {
  display: inline-block;
  background: var(--laranja);
  color: var(--branco);
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .carousel-tag {
    padding: 5px 12px;
    margin-bottom: 0.8rem;
  }
}

.carousel-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .carousel-content h1 {
    font-size: clamp(1.5rem, 5vw, 1.9rem) !important;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .carousel-content h1 {
    font-size: clamp(1.3rem, 4vw, 1.6rem) !important;
    margin-bottom: 0.8rem;
  }
}

.carousel-content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .carousel-content p {
    font-size: clamp(0.9rem, 2.5vw, 1rem) !important;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .carousel-content p {
    font-size: clamp(0.85rem, 2vw, 0.9rem) !important;
    margin-bottom: 1.2rem;
  }
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-btns {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    gap: clamp(0.5rem, 2vw, 0.6rem);
    flex-wrap: nowrap;
  }
}

.btn-primary,
.btn-outline {
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 0.4em;
}

@media (max-width: 768px) {
  .btn-primary,
  .btn-outline {
    width: 100%;
    padding: clamp(10px, 3vw, 13px) clamp(14px, 4vw, 20px);
    font-size: clamp(0.8rem, 2.2vw, 0.95rem);
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .btn-primary,
  .btn-outline {
    padding: clamp(9px, 2.5vw, 11px) clamp(12px, 3vw, 16px);
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    min-height: 40px;
  }
}

.btn-primary {
  background: var(--laranja);
  color: var(--branco);
  border: 2px solid var(--laranja);
}

.btn-primary:hover {
  background: var(--laranja-hover);
  border-color: var(--laranja-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--branco);
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: var(--branco);
  color: var(--azul-escuro);
  border-color: var(--branco);
}

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .carousel-dots {
    bottom: 1.5rem;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .carousel-dots {
    bottom: 1rem;
    gap: 6px;
  }
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

@media (max-width: 480px) {
  .dot {
    width: 8px;
    height: 8px;
  }
}

.dot.active {
  background: var(--laranja);
  transform: scale(1.3);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--branco);
  font-size: 1.2rem;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
  .carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    opacity: 0.7;
  }
}

@media (max-width: 480px) {
  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    top: auto;
    bottom: 80px;
  }
}

.carousel-arrow:hover {
  background: var(--laranja);
  border-color: var(--laranja);
}

.arrow-prev {
  left: 2rem;
}

.arrow-next {
  right: 2rem;
}

@media (max-width: 768px) {
  .arrow-prev {
    left: 1.5rem;
  }
  
  .arrow-next {
    right: 1.5rem;
  }
}

@media (max-width: 480px) {
  .arrow-prev {
    left: 12px;
  }
  
  .arrow-next {
    right: 12px;
  }
}

/* ===== SECTIONS GENERAL ===== */
section {
  padding: 80px 1.5rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--azul-escuro);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--azul-claro);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--cinza-industrial);
  line-height: 1.8;
  max-width: 680px;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--laranja);
  border-radius: 2px;
  margin: 1rem 0 2rem;
}

/* ===== EMPRESA ===== */
#empresa {
  background: var(--cinza-claro);
}

.empresa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 3rem;
}

.empresa-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(13, 31, 60, 0.2);
}

.empresa-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.empresa-img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(13, 31, 60, 0.6), transparent 50%);
}

.empresa-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: var(--laranja);
  color: var(--branco);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
}

.stats-row {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.stat {
  text-align: center;
  background: var(--branco);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  flex: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border-top: 3px solid var(--azul-claro);
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--azul-escuro);
  line-height: 1;
}

.stat-txt {
  font-size: 0.8rem;
  color: var(--cinza-industrial);
  margin-top: 4px;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.area-tag {
  background: var(--azul-escuro);
  color: var(--branco);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* CIANORTH CARD */
.cianorth-card {
  background: linear-gradient(135deg, var(--azul-escuro), var(--azul-medio));
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 3rem;
  color: var(--branco);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  box-shadow: 0 10px 40px rgba(13, 31, 60, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cianorth-icon {
  width: 70px;
  height: 70px;
  background: rgba(249, 115, 22, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 2px solid var(--laranja);
}

.cianorth-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--branco);
}

.cianorth-card .sub {
  font-size: 0.85rem;
  color: var(--laranja);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cianorth-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== PRODUTOS ===== */
#produtos {
  background: var(--branco);
}

.produtos-tabs {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid #e2e8f0;
  background: var(--branco);
  color: var(--cinza-industrial);
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--azul-escuro);
  color: var(--branco);
  border-color: var(--azul-escuro);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.prod-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.35s ease;
  background: var(--branco);
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13, 31, 60, 0.15);
}

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

.prod-body {
  padding: 1.5rem;
}

.prod-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 0.4rem;
}

.prod-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 0.5rem;
}

.prod-desc {
  font-size: 0.88rem;
  color: var(--cinza-industrial);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.btn-spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--azul-escuro);
  color: var(--branco);
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-spec:hover {
  background: var(--azul-claro);
  transform: translateX(3px);
}

/* CiaNorth Supplies Grid */
.cianorth-supplies {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.2rem;
}

.supply-card {
  background: var(--cinza-claro);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.supply-card:hover {
  background: var(--azul-escuro);
  color: var(--branco);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(13, 31, 60, 0.2);
}

.supply-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.supply-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: inherit;
}

/* ===== CONTATO ===== */
#contato {
  background: var(--azul-escuro);
}

#contato .section-label { color: var(--laranja); }
#contato .section-title { color: var(--branco); }
#contato .section-title span { color: var(--laranja); }
#contato .divider { background: var(--laranja); }

.contato-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

.contato-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.4rem 1.8rem;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  min-width: 160px;
  text-align: center;
}

.contato-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.contato-item--wpp { border-color: rgba(37, 211, 102, 0.3); }
.contato-item--wpp:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.5);
}

.contato-item--addr {
  cursor: default;
  flex-basis: 100%;
  max-width: 380px;
}
.contato-item--addr:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.contato-icon { font-size: 1.5rem; line-height: 1; }

.contato-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.contato-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--branco);
}

.contato-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn-wpp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: var(--branco);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-wpp-cta:hover {
  background: #1fb959;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

/* ===== FOOTER ===== */
footer {
  background: var(--azul-escuro);
  border-top: 3px solid var(--laranja);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--branco);
  letter-spacing: 2px;
}

.footer-brand .logo span {
  color: var(--laranja);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.footer-col h4 {
  color: var(--branco);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--laranja);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

/* ===== WHATSAPP BTN ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  animation: pulse-wha 2s infinite;
  transition: transform 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes pulse-wha {

  0%,
  100% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8);
  }
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--azul-escuro);
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.8rem 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ===== RESPONSIVIDADE MOBILE ===== */
@media (max-width: 900px) {
  .empresa-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cianorth-card {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .carousel-overlay {
    background: linear-gradient(to bottom, rgba(13, 31, 60, 0.7) 0%, rgba(13, 31, 60, 0.95) 100%);
    padding: 0 1.5rem;
    align-items: center;
    text-align: center;
  }

  .carousel-content {
    margin-top: -20px;
  }

  .carousel-content h1 {
    font-size: 1.8rem !important;
    margin-bottom: 1rem;
  }

  .carousel-content p {
    font-size: 0.95rem !important;
    margin-bottom: 2rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    padding: 14px;
  }

  .carousel-arrow {
    top: auto;
    bottom: 20px;
    width: 45px;
    height: 45px;
  }

  .arrow-prev {
    left: 20px;
  }

  .arrow-next {
    right: 20px;
  }

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

/* ===== AJUSTES FINAIS: HERO 100% RESPONSIVO + CONTATO SEM FORMULÁRIO ===== */
#inicio {
  overflow: hidden;
}

#hero {
  height: min(100svh, 860px);
  min-height: clamp(520px, 72svh, 720px);
}

.carousel-track,
.carousel-slide,
.carousel-slide img,
.carousel-overlay {
  min-height: inherit;
}

.carousel-slide img {
  display: block;
}

.carousel-overlay {
  padding: clamp(88px, 12vh, 130px) clamp(1.25rem, 7vw, 8%) clamp(4.5rem, 10vh, 6rem);
}

.carousel-content {
  max-width: min(650px, 92vw);
}

.carousel-content h1 {
  font-size: clamp(2rem, 5vw, 3.7rem) !important;
  line-height: 1.08;
  text-wrap: balance;
}

.carousel-content p {
  font-size: clamp(0.98rem, 1.7vw, 1.2rem) !important;
  max-width: 58ch;
}

.hero-btns {
  align-items: stretch;
}

.carousel-arrow {
  z-index: 10;
}

.contato-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.info-card,
.contato-cta-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: var(--branco);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem;
  margin-bottom: 1rem;
}

.info-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.16);
  color: var(--laranja);
  font-size: 1.25rem;
}

.info-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.info-value,
.info-value a {
  color: var(--branco);
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}

.info-value a:hover {
  color: var(--laranja);
}

.contato-cta-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contato-cta-panel h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.contato-cta-panel p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contato-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-email-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 8px;
  color: var(--branco);
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-decoration: none;
  font-weight: 700;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}

.btn-email-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  #hero {
    height: auto;
    min-height: 620px;
  }

  .carousel-overlay {
    background: linear-gradient(to bottom, rgba(13, 31, 60, 0.58) 0%, rgba(13, 31, 60, 0.96) 78%);
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 1.5rem 96px;
  }

  .carousel-content {
    margin-top: 0;
  }

  .carousel-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

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

@media (max-width: 600px) {
  #hero {
    min-height: 100svh;
  }

  .carousel-overlay {
    padding: 92px 1rem 88px;
  }

  .carousel-tag {
    font-size: 0.68rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
  }

  .carousel-content h1 {
    font-size: clamp(1.55rem, 9vw, 2.25rem) !important;
    margin-bottom: 0.85rem;
  }

  .carousel-content p {
    font-size: clamp(0.88rem, 4vw, 1rem) !important;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
    white-space: normal;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
    bottom: 18px;
    font-size: 1rem;
  }

  .arrow-prev { left: 12px; }
  .arrow-next { right: 12px; }

  .carousel-dots {
    bottom: 28px;
  }

  .info-card {
    padding: 1rem;
    gap: 0.8rem;
  }

  .info-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .contato-actions,
  .btn-wpp-cta,
  .btn-email-cta {
    width: 100%;
  }
}

/* ===== CORREÇÃO DEFINITIVA: HERO SEM ESTOURO NO MOBILE ===== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

#inicio,
#hero {
  width: 100%;
  max-width: 100vw;
  overflow: hidden !important;
}

#hero .carousel-track {
  width: 100% !important;
  max-width: 100vw !important;
}

#hero .carousel-slide {
  flex: 0 0 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

#hero .carousel-overlay {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100vw !important;
}

#hero .carousel-content {
  width: 100% !important;
  max-width: 680px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: none !important;
}

@media (max-width: 768px) {
  #hero {
    height: auto !important;
    min-height: 100svh !important;
  }

  #hero .carousel-track {
    transform: none !important;
    height: 100% !important;
  }

  #hero .carousel-slide {
    width: 100% !important;
    min-height: 100svh !important;
  }

  #hero .carousel-slide:not(:first-child) {
    display: none !important;
  }

  #hero .carousel-slide img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  #hero .carousel-overlay {
    position: relative !important;
    min-height: 100svh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 96px 18px 92px !important;
    background: linear-gradient(to bottom, rgba(13, 31, 60, 0.64) 0%, rgba(13, 31, 60, 0.96) 78%) !important;
  }

  #hero .carousel-content {
    max-width: 440px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  #hero .carousel-tag {
    max-width: 100% !important;
    white-space: normal !important;
    word-break: normal !important;
  }

  #hero .carousel-content h1,
  #hero .carousel-content p {
    max-width: 100% !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  #hero .hero-btns {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
  }

  #hero .btn-primary,
  #hero .btn-outline {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
  }

  #hero .carousel-arrow,
  #hero .carousel-dots {
    display: none !important;
  }
}

@media (max-width: 420px) {
  #hero .carousel-overlay {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  #hero .carousel-content h1 {
    font-size: clamp(1.45rem, 8.4vw, 2rem) !important;
    line-height: 1.12 !important;
  }

  #hero .carousel-content p {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
  }
}


/* ===== CORREÇÃO: REMOVER APENAS ESPAÇAMENTO BRANCO AO REDOR DO HERO ===== */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

section#inicio,
#inicio {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important;
  background: var(--azul-escuro) !important;
}

#inicio #hero,
#hero {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important;
  display: block !important;
}

#hero + *,
#inicio + section {
  margin-top: 0 !important;
}


/* ===== AJUSTE DE CORES: SOMENTE CONTATO COMO A SEÇÃO EMPRESA ===== */
/* Navbar/menu e footer permanecem com as cores originais. */
#contato {
  background: var(--cinza-claro) !important;
  color: var(--cinza-industrial) !important;
}

#contato .section-label {
  color: var(--laranja) !important;
}

#contato .section-title {
  color: var(--azul-escuro) !important;
}

#contato .section-title span {
  color: var(--azul-claro) !important;
}

#contato .section-sub {
  color: var(--cinza-industrial) !important;
}

#contato .divider {
  background: var(--laranja) !important;
}

#contato .info-card,
#contato .contato-cta-panel {
  background: var(--branco) !important;
  color: var(--cinza-industrial) !important;
  border: 1px solid rgba(13, 31, 60, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07) !important;
}

#contato .info-icon {
  background: rgba(37, 99, 235, 0.10) !important;
  color: var(--azul-claro) !important;
}

#contato .info-label {
  color: var(--laranja) !important;
}

#contato .info-value,
#contato .info-value a {
  color: var(--azul-escuro) !important;
}

#contato .info-value a:hover {
  color: var(--laranja) !important;
}

#contato .contato-cta-panel h3 {
  color: var(--azul-escuro) !important;
}

#contato .contato-cta-panel p {
  color: var(--cinza-industrial) !important;
}

#contato .btn-email-cta {
  color: var(--azul-escuro) !important;
  border: 1px solid rgba(13, 31, 60, 0.22) !important;
  background: var(--branco) !important;
}

#contato .btn-email-cta:hover {
  background: var(--azul-escuro) !important;
  color: var(--branco) !important;
  border-color: var(--azul-escuro) !important;
}


/* ===== FOOTER ORGANIZADO EM DUAS COLUNAS ===== */
.footer-grid--duas-colunas {
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.9fr) !important;
  align-items: start;
}

.footer-produtos ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1.25rem;
}

.footer-produtos ul li {
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .footer-grid--duas-colunas {
    grid-template-columns: 1fr !important;
  }

  .footer-produtos ul {
    grid-template-columns: 1fr;
  }
}
