/* =============================================
   RENTAL SET v2.0 - Custom Styles
   ============================================= */

/* ── Variables ── */
:root {
  --rs-orange:     #eeb335;
  --rs-orange-dark:#c8962a;
  --rs-navy:       #1A1400;
  --rs-navy-light: #2E2300;
  --rs-gray:       #6C757D;
  --rs-light:      #F8F9FA;
  --rs-white:      #FFFFFF;
  --rs-font:       'Poppins', sans-serif;
  --rs-transition: all 0.35s ease;
  --rs-shadow:     0 8px 30px rgba(0,0,0,.12);
  --rs-shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --rs-radius:     12px;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--rs-font);
  color: #333;
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.7;
}

/* Previne qualquer elemento de estourar a largura */
section, header, footer, nav { max-width: 100%; overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; }

a { text-decoration: none; }

img { max-width: 100%; }

/* ── Section helpers ── */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--rs-navy);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--rs-gray);
  max-width: 600px;
  margin: 0 auto;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: var(--rs-orange);
  border-radius: 4px;
  margin: 12px auto 20px;
  display: block;
}

.section-pad { padding: 90px 0; }

/* ── Buttons ── */
.btn-rs-primary {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--rs-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-rs-primary:hover {
  background: #1aad54;
  border-color: #1aad54;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

.btn-rs-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 13px 36px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--rs-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-rs-outline:hover {
  background: #fff;
  color: var(--rs-navy);
  transform: translateY(-2px);
}

.btn-rs-dark {
  background: var(--rs-navy);
  color: #fff;
  border: 2px solid var(--rs-navy);
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--rs-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-rs-dark:hover {
  background: var(--rs-navy-light);
  border-color: var(--rs-navy-light);
  color: #fff;
  transform: translateY(-2px);
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--rs-transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
.whatsapp-float svg { fill: #fff; width: 30px; height: 30px; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,.70); }
}

/* ── Navbar ── */
#mainNav {
  transition: var(--rs-transition);
  padding: 16px 0;
  background: #eeb335 !important;
}
#mainNav.scrolled {
  background: #eeb335 !important;
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.30);
}
#mainNav .navbar-brand img {
  height: 72px;
  transition: var(--rs-transition);
}
#mainNav.scrolled .navbar-brand img { height: 58px; }
#mainNav .nav-link {
  color: #1a1400 !important;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--rs-transition);
}
#mainNav.scrolled .nav-link {
  color: #1a1400 !important;
}
#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: #1a1400;
  transition: var(--rs-transition);
  border-radius: 2px;
}
#mainNav.scrolled .nav-link::after {
  background: #1a1400;
}
#mainNav .nav-link:hover, #mainNav .nav-link.active {
  color: #1a1400 !important;
  opacity: 0.7;
}
#mainNav.scrolled .nav-link:hover,
#mainNav.scrolled .nav-link.active {
  color: #1a1400 !important;
}
#mainNav .nav-link:hover::after, #mainNav .nav-link.active::after {
  left: 14px; right: 14px;
}
#mainNav .btn-nav-cta {
  background: #25D366;
  color: #fff !important;
  border-radius: 50px;
  padding: 9px 22px !important;
  font-weight: 700;
  margin-left: 8px;
  border: 2px solid #25D366;
}
#mainNav.scrolled .btn-nav-cta {
  background: #25D366;
  color: #fff !important;
  border-color: #25D366;
}
#mainNav .btn-nav-cta:hover { background: #1aad54; border-color: #1aad54; }
#mainNav .btn-nav-cta::after { display: none; }

/* Hamburger color — escuro para contrastar com barra dourada */
.navbar-toggler {
  border-color: rgba(26,20,0,.4);
  padding: 6px 10px;
  border-radius: 10px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(26,20,0,.15); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826,20,0,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Menu mobile expandido */
@media (max-width: 991px) {
  #mainNav #navbarNav {
    background: #1a1400;
    border-radius: 0 0 18px 18px;
    padding: 8px 12px 16px;
    margin-top: 4px;
    box-shadow: 0 10px 32px rgba(0,0,0,.35);
    border-top: 2px solid var(--rs-orange);
  }

  /* Especificidade alta: dois IDs garantem que o branco sempre vence */
  #mainNav #navbarNav .nav-link {
    color: rgba(255,255,255,.88) !important;
    padding: 13px 16px !important;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
    transition: all 0.2s ease;
  }
  #mainNav #navbarNav .nav-item:last-of-type .nav-link { border-bottom: none; }

  #mainNav #navbarNav .nav-link:hover,
  #mainNav #navbarNav .nav-link.active {
    background: rgba(238,179,53,.12);
    color: var(--rs-orange) !important;
    padding-left: 22px !important;
    opacity: 1;
  }
  #mainNav #navbarNav .nav-link::after { display: none !important; }

  /* Botão CTA dentro do menu mobile */
  #mainNav #navbarNav .btn-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    margin: 12px 0 4px !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    font-size: 0.9rem;
    background: #25D366 !important;
    color: #fff !important;
    border-color: #25D366 !important;
  }
  #mainNav #navbarNav .btn-nav-cta:hover {
    background: #1aad54 !important;
    color: #fff !important;
  }
}

/* ── Hero ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=85&fit=crop')
    center center / cover no-repeat;
  background-color: #0D1B2A;
  overflow: hidden;
}
/* Overlay escuro degradê para legibilidade do texto */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,18,28,.55) 0%, rgba(10,18,28,.78) 70%, rgba(10,18,28,.92) 100%),
    linear-gradient(180deg, rgba(10,18,28,.35) 0%, rgba(10,18,28,.65) 100%);
  z-index: 1;
}
/* Faixa dourada sutil no rodapé do hero */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rs-orange), transparent);
  z-index: 2;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 60%, rgba(238,179,53,.14) 0%, transparent 55%),
    radial-gradient(circle at 85% 15%, rgba(238,179,53,.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(238,179,53,.15);
  border: 1px solid rgba(238,179,53,.4);
  color: var(--rs-orange);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--rs-orange); border-radius: 50%; animation: blink 1.2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title {
  font-size: clamp(2.5rem, 6.4vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0,0,0,.45);
}
.hero-title .highlight {
  color: var(--rs-orange);
  position: relative;
  display: inline-block;
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: rgba(255,255,255,.95);
  margin: 0 auto 24px;
  max-width: 720px;
  line-height: 1.45;
  letter-spacing: .2px;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.hero-tagline .highlight { color: var(--rs-orange); font-weight: 800; font-style: normal; }

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.hero-centered .hero-title { letter-spacing: -.5px; }
.hero-centered .hero-desc { margin-left: auto; margin-right: auto; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 50px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-stat-item { color: rgba(255,255,255,.9); }
.hero-stat-item .num { font-size: 1.8rem; font-weight: 800; color: var(--rs-orange); line-height: 1; }
.hero-stat-item .label { font-size: 0.78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }
.hero-divider { width: 1px; background: rgba(255,255,255,.2); align-self: stretch; }

/* Hero scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce-scroll 2s infinite;
}
.scroll-indicator .mouse {
  width: 24px; height: 36px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-indicator .mouse::before {
  content: '';
  width: 4px; height: 8px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  animation: scroll-dot 1.5s infinite;
}
@keyframes scroll-dot { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(10px);opacity:0} }
@keyframes bounce-scroll { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── Stats Bar ── */
#stats-bar {
  background: var(--rs-orange);
  padding: 50px 0;
}
.stat-box { text-align: center; }
.stat-box .stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
}
.stat-box .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}
.stat-separator {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.3);
  margin: auto;
}

/* ── About ── */
#sobre { background: var(--rs-light); }

.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--rs-radius);
  box-shadow: var(--rs-shadow);
  width: 100%;
  object-fit: cover;
  height: 450px;
}

/* ── Brand Showcase (substitui foto/logo simples) ── */
.about-showcase {
  position: relative;
  border-radius: 22px;
  padding: 44px 38px 36px;
  background:
    radial-gradient(700px 320px at 110% -20%, rgba(238,179,53,.22), transparent 60%),
    linear-gradient(135deg, #1A1400 0%, #2E2300 55%, #1A1400 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 24px 60px rgba(26,20,0,.28),
    0 4px 14px rgba(26,20,0,.18);
  overflow: hidden;
  isolation: isolate;
  transition: transform .5s cubic-bezier(.25,.8,.25,1);
}
.about-showcase:hover { transform: translateY(-4px); }

/* Padrão de pontinhos decorativo */
.showcase-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1.2px, transparent 1.2px);
  background-size: 18px 18px;
  background-position: 0 0;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 70%);
}

/* Glow laranja diagonal */
.showcase-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,179,53,.28), transparent 65%);
  filter: blur(20px);
  bottom: -120px;
  left: -120px;
  z-index: 0;
  pointer-events: none;
}

/* Selo "Fundada em 2014" */
.showcase-since {
  position: absolute;
  top: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  z-index: 2;
}
.showcase-since .since-label {
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
}
.showcase-since .since-year {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--rs-orange);
  line-height: 1;
  letter-spacing: 1px;
}

/* Logo em tile branco flutuante */
.showcase-logo-tile {
  position: relative;
  z-index: 1;
  margin: 18px auto 26px;
  max-width: 320px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 22px 28px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 12px 32px rgba(0,0,0,.35),
    0 0 0 1px rgba(238,179,53,.18);
  transform: rotate(-1.4deg);
  transition: transform .5s cubic-bezier(.25,.8,.25,1);
}
.about-showcase:hover .showcase-logo-tile { transform: rotate(0deg) scale(1.02); }
.showcase-logo-tile img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

/* Linha laranja de destaque */
.showcase-accent {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--rs-orange);
  border-radius: 2px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

/* Tagline */
.showcase-tagline {
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgba(255,255,255,.92);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 30px;
  letter-spacing: .2px;
}
.showcase-tagline em {
  font-style: normal;
  color: var(--rs-orange);
  font-weight: 800;
}

/* Stats row */
.showcase-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 18px 8px 4px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.showcase-stats .ss-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.showcase-stats .ss-item strong {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--rs-orange);
  line-height: 1;
  font-family: var(--rs-font);
}
.showcase-stats .ss-item strong sup {
  font-size: .55em;
  font-weight: 800;
  margin-left: 1px;
  top: -.5em;
}
.showcase-stats .ss-item span {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 600;
}
.showcase-stats .ss-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .about-showcase { padding: 36px 28px 28px; max-width: 540px; margin: 0 auto; }
  .showcase-logo-tile { max-width: 280px; padding: 18px 22px; }
  .showcase-tagline { font-size: 1.05rem; }
}
@media (max-width: 480px) {
  .about-showcase { padding: 32px 22px 24px; border-radius: 18px; }
  .showcase-since { top: 16px; right: 16px; }
  .showcase-since .since-year { font-size: 1.3rem; }
  .showcase-logo-tile { max-width: 240px; padding: 16px 20px; margin: 14px auto 22px; }
  .showcase-tagline { font-size: .98rem; margin-bottom: 22px; }
  .showcase-stats .ss-item strong { font-size: 1.35rem; }
  .showcase-stats .ss-item span { font-size: .64rem; letter-spacing: 1px; }
}
.about-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--rs-navy);
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--rs-shadow);
}
.about-badge .num { font-size: 2.2rem; font-weight: 900; color: var(--rs-orange); display: block; }
.about-badge .text { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.8); }

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.check-item .check-icon {
  width: 28px; height: 28px;
  min-width: 28px;
  background: rgba(238,179,53,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-item .check-icon svg { fill: var(--rs-orange); width: 14px; height: 14px; }
.check-item p { margin: 0; color: #555; font-size: 0.95rem; }

/* ── Services ── */
#servicos { background: #fff; }
.service-card {
  background: var(--rs-light);
  border-radius: var(--rs-radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--rs-transition);
  border: 1px solid transparent;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rs-orange);
  transform: scaleX(0);
  transition: var(--rs-transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--rs-shadow);
  border-color: rgba(238,179,53,.15);
  background: #fff;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--rs-orange) 0%, var(--rs-orange-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: var(--rs-transition);
}
.service-card:hover .icon-wrap { transform: rotateY(180deg); }
.service-card .icon-wrap svg { fill: #fff; width: 34px; height: 34px; }
.service-card h4 { font-size: 1.05rem; color: var(--rs-navy); margin-bottom: 12px; font-weight: 700; }
.service-card p { color: var(--rs-gray); font-size: 0.9rem; margin: 0; }

/* ── Serviços para Entes Públicos ── */
.ep-section {
  position: relative;
  background: var(--rs-navy);
  color: #fff;
  overflow: hidden;
  scroll-margin-top: 90px;
}
.ep-section .ep-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(238,179,53,.18), transparent 60%),
    radial-gradient(700px 380px at -10% 100%, rgba(238,179,53,.10), transparent 60%),
    linear-gradient(135deg, var(--rs-navy) 0%, var(--rs-navy-light) 100%);
  z-index: 0;
}
.ep-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 0;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 80%);
}
.ep-section .section-title { color: #fff; }
.ep-section .accent-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--rs-orange);
  border-radius: 2px;
  margin: 12px 0 24px;
}

/* Grid de capacidades */
.ep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.ep-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  backdrop-filter: blur(4px);
  transition: all .3s cubic-bezier(.25,.8,.25,1);
}
.ep-item:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(238,179,53,.35);
  transform: translateY(-3px);
}
.ep-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--rs-orange) 0%, var(--rs-orange-dark) 100%);
  color: var(--rs-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(238,179,53,.30);
}
.ep-icon svg { width: 22px; height: 22px; }
.ep-item strong {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}
.ep-item p {
  margin: 0;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}

@media (max-width: 767px) {
  .ep-grid { grid-template-columns: 1fr; gap: 12px; }
  .ep-item { padding: 14px; }
}

/* ── Equipment / Catalog ── */
#equipamentos {
  background:
    radial-gradient(1100px 420px at 90% -10%, rgba(238,179,53,.10), transparent 60%),
    radial-gradient(900px 360px at -10% 110%, rgba(26,20,0,.05), transparent 60%),
    var(--rs-light);
  scroll-margin-top: 90px;
}

/* ── Equipment Category Header ── */
.equip-category { margin-bottom: 56px; }

.cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.cat-header .cat-dot {
  width: 10px; height: 10px;
  background: var(--rs-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(238,179,53,.18);
  flex-shrink: 0;
}
.cat-header .cat-title {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: var(--rs-navy);
  letter-spacing: .2px;
  margin: 0;
  white-space: nowrap;
}
.cat-header .cat-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(26,20,0,.18), rgba(26,20,0,0));
}
.cat-header .cat-count {
  font-size: .72rem;
  font-weight: 700;
  color: var(--rs-orange-dark);
  background: rgba(238,179,53,.14);
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  flex-shrink: 0;
}

/* ── Equipment Cards ── */
.equip-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(26,20,0,.04), 0 6px 24px rgba(26,20,0,.05);
  border: 1px solid rgba(26,20,0,.06);
  transition: transform .35s cubic-bezier(.25,.8,.25,1),
              box-shadow .35s cubic-bezier(.25,.8,.25,1),
              border-color .25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.equip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rs-orange), var(--rs-orange-dark));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
  z-index: 2;
}
.equip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26,20,0,.12);
  border-color: rgba(238,179,53,.35);
}
.equip-card:hover::before { transform: scaleX(1); }

/* Imagem */
.equip-card .equip-img-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F4F5F7 0%, #E9EBEE 100%);
  flex-shrink: 0;
}
.equip-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  object-position: center;
  padding: 18px;
  transition: transform .55s cubic-bezier(.25,.8,.25,1);
}
.equip-card:hover img { transform: scale(1.07); }

/* Chip "Locação" no canto da imagem */
.equip-card .equip-img-wrap::before {
  content: 'Locação';
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  color: var(--rs-navy);
  font-size: .64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  z-index: 1;
}

/* Overlay laranja com CTA no hover */
.equip-card .equip-img-wrap::after {
  content: 'Solicitar orçamento →';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(238,179,53,.92), rgba(200,150,42,.94));
  color: var(--rs-navy);
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.equip-card:hover .equip-img-wrap::after { opacity: 1; }

/* Info */
.equip-card .equip-info {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
  min-height: 108px;
}
.equip-card .equip-info::after {
  content: '→';
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(238,179,53,.12);
  color: var(--rs-orange-dark);
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .25s ease, color .25s ease;
}
.equip-card:hover .equip-info::after {
  background: var(--rs-orange);
  color: var(--rs-navy);
  transform: translateX(3px);
}

.equip-card .equip-info strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--rs-navy);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color .2s;
  padding-right: 32px;
  width: 100%;
}
.equip-card:hover .equip-info strong { color: var(--rs-orange-dark); }
.equip-card .equip-info p {
  margin: 0;
  font-size: .79rem;
  color: var(--rs-gray);
  line-height: 1.5;
  padding-right: 32px;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(.79rem * 1.5 * 2);
}

/* Colunas sempre altura igual */
.equip-category .row { align-items: stretch; }
.equip-category .row > [class*="col"] { display: flex; }

@media (max-width: 767px) {
  .cat-header { gap: 10px; margin-bottom: 20px; }
  .cat-header .cat-count {
    font-size: .62rem;
    padding: 4px 9px;
    letter-spacing: .8px;
  }
}
@media (max-width: 575px) {
  .equip-card img { height: 140px; padding: 14px; }
  .equip-card .equip-info { padding: 14px 14px 16px; min-height: 96px; }
  .equip-card .equip-info strong { font-size: .86rem; padding-right: 28px; }
  .equip-card .equip-info p {
    font-size: .74rem;
    padding-right: 28px;
    min-height: calc(.74rem * 1.5 * 2);
  }
  .equip-card .equip-info::after {
    width: 24px; height: 24px;
    right: 12px; bottom: 12px;
    font-size: .8rem;
  }
  .equip-card .equip-img-wrap::before {
    top: 8px; left: 8px;
    font-size: .58rem;
    padding: 3px 8px;
  }
}

/* PDF/Catalog button CTA box */
.catalog-cta {
  background: linear-gradient(135deg, var(--rs-navy) 0%, var(--rs-navy-light) 100%);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.catalog-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(238,179,53,.1);
  border-radius: 50%;
}
.catalog-cta::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
}
.catalog-cta h3 { color: #fff; font-size: 1.6rem; margin-bottom: 12px; }
.catalog-cta p  { color: rgba(255,255,255,.7); margin-bottom: 28px; }

/* ── PDF Gallery Modal ── */
.modal-gallery .modal-content {
  background: #111;
  border: none;
  border-radius: 16px;
  overflow: hidden;
}
.modal-gallery .modal-header {
  background: var(--rs-navy);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 18px 24px;
}
.modal-gallery .modal-title { color: #fff; font-weight: 700; }
.modal-gallery .btn-close { filter: invert(1); }
.modal-gallery .modal-body { padding: 24px; }

/* ── PDF Viewer (uma página por vez) ── */
.pdf-viewer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* Botões laterais (chevrons) */
.pv-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .25s ease;
  z-index: 2;
}
.pv-nav:hover {
  background: var(--rs-orange);
  color: var(--rs-navy);
  transform: scale(1.08);
}
.pv-nav svg { width: 28px; height: 28px; }
.pv-nav:active { transform: scale(.95); }

/* Palco da página */
.pv-stage {
  position: relative;
  flex: 1;
  min-height: 60vh;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.pv-stage img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity .35s ease;
  cursor: zoom-in;
}
.pv-stage img.loaded { opacity: 1; }

/* Loader (3 pontinhos) */
.pv-loader {
  position: absolute;
  display: flex;
  gap: 8px;
  z-index: 1;
}
.pv-loader span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--rs-orange);
  animation: pv-bounce 1s infinite ease-in-out;
}
.pv-loader span:nth-child(2) { animation-delay: .15s; }
.pv-loader span:nth-child(3) { animation-delay: .3s; }
@keyframes pv-bounce {
  0%, 80%, 100% { transform: scale(.5); opacity: .4; }
  40%           { transform: scale(1);  opacity: 1;  }
}

/* Barra inferior com botões + contador */
.pv-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border-radius: 12px;
}
.pv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rs-orange);
  color: var(--rs-navy);
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s ease;
}
.pv-btn:hover { background: var(--rs-orange-dark); transform: translateY(-1px); }
.pv-btn:active { transform: translateY(0); }

.pv-counter {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.pv-counter-num {
  color: var(--rs-orange);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0;
  min-width: 26px;
  text-align: center;
}
.pv-counter-sep { color: rgba(255,255,255,.3); margin: 0 2px; }
.pv-counter-total { color: rgba(255,255,255,.55); font-size: .95rem; font-weight: 700; }

/* Barra de progresso */
.pv-progress {
  margin-top: 12px;
  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
}
.pv-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--rs-orange), var(--rs-orange-dark));
  border-radius: 99px;
  transition: width .35s ease;
}

@media (max-width: 575px) {
  .pdf-viewer { gap: 6px; }
  .pv-nav { width: 38px; height: 38px; }
  .pv-nav svg { width: 22px; height: 22px; }
  .pv-stage { min-height: 50vh; }
  .pv-controls { padding: 8px 10px; gap: 6px; }
  .pv-btn { padding: 8px 12px; font-size: .78rem; }
  .pv-btn svg { width: 14px; height: 14px; }
  .pv-counter { font-size: .72rem; letter-spacing: 1px; }
  .pv-counter-num { font-size: 1.15rem; min-width: 22px; }
}

/* Lightbox overlay */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}
#lightbox.active { display: flex; }
#lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,.8);
}
#lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--rs-transition);
}
#lightbox-close:hover { background: var(--rs-orange); }

/* ── Why Choose Us ── */
.why-section { background: #F4F6F8; }

.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 26px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
  box-shadow: 0 2px 16px rgba(26,20,0,.07);
  border: 1.5px solid transparent;
  border-top: 3px solid var(--rs-orange);
  transition: var(--rs-transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(238,179,53,.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--rs-transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26,20,0,.13);
  border-color: var(--rs-orange);
}
.why-card:hover::before { opacity: 1; }

.why-card .why-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: linear-gradient(135deg, var(--rs-orange), var(--rs-orange-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(238,179,53,.35);
  flex-shrink: 0;
}
.why-card .why-icon svg { fill: #fff; width: 26px; height: 26px; }

.why-body { flex: 1; }
.why-card h5 {
  color: var(--rs-navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.why-card p {
  color: var(--rs-gray);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.7;
}

/* Featured card (last one) gets extra orange accent */
.why-card--featured {
  background: linear-gradient(135deg, var(--rs-navy) 0%, #2E2300 100%);
  border-color: var(--rs-orange);
}
.why-card--featured h5 { color: #fff; }
.why-card--featured p  { color: rgba(255,255,255,.65); }

/* ── Partners ── */
#parceiros { background: #fff; }
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--rs-transition);
}
.partner-logo:hover { filter: none; opacity: 1; }
.partner-logo img { max-height: 70px; object-fit: contain; }

/* Logos em coluna única no mobile */
@media (max-width: 575px) {
  #parceiros .col-6 {
    width: 100% !important;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .partner-logo { padding: 14px 24px; }
  .partner-logo img { max-height: 56px; }
}

/* ── Contact ── */
#contato { background: var(--rs-light); }
.contact-info-box {
  background: var(--rs-navy);
  border-radius: var(--rs-radius);
  padding: 40px 36px;
  height: 100%;
}
.contact-info-box h3 { color: #fff; margin-bottom: 8px; }
.contact-info-box .sub { color: rgba(255,255,255,.6); font-size: 0.9rem; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item .ci-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(238,179,53,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item .ci-icon svg { fill: var(--rs-orange); width: 20px; height: 20px; }
.contact-item .ci-text { color: rgba(255,255,255,.8); font-size: 0.9rem; }
.contact-item .ci-text strong { display: block; color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }

.contact-form-box {
  background: #fff;
  border-radius: var(--rs-radius);
  padding: 40px 36px;
  box-shadow: var(--rs-shadow);
  height: 100%;
}
.contact-form-box .form-control,
.contact-form-box .form-select {
  border: 1.5px solid #E0E0E0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.92rem;
  transition: var(--rs-transition);
}
.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
  border-color: var(--rs-orange);
  box-shadow: 0 0 0 3px rgba(238,179,53,.12);
}
.contact-form-box .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 6px;
}
.btn-submit {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  font-weight: 700;
  font-size: 0.95rem;
  width: 100%;
  transition: var(--rs-transition);
  cursor: pointer;
}
.btn-submit:hover { background: #1aad54; transform: translateY(-2px); }

/* Map */
.map-wrap {
  border-radius: var(--rs-radius);
  overflow: hidden;
  box-shadow: var(--rs-shadow);
  margin-top: 32px;
}
.map-wrap iframe { display: block; width: 100%; height: 280px; border: 0; }

/* ── Footer ── */
#footer {
  background: #090F18;
  padding: 0;
}
.footer-logo img { height: 50px; margin-bottom: 16px; }
.footer-desc { color: rgba(255,255,255,.55); font-size: 0.88rem; line-height: 1.8; }
.footer-heading {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--rs-orange);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: 0.88rem;
  transition: var(--rs-transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--rs-orange); padding-left: 4px; }
.footer-links a svg { width: 12px; height: 12px; fill: var(--rs-orange); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--rs-transition);
  border: 1px solid rgba(255,255,255,.1);
}
.footer-social a:hover { background: var(--rs-orange); border-color: var(--rs-orange); }
.footer-social a svg { fill: rgba(255,255,255,.7); width: 16px; height: 16px; }
.footer-social a:hover svg { fill: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  margin-top: 50px;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: 0.8rem; margin: 0; }

/* ── Contact Section ── */
.contato-section { background: #F4F6F8; }

/* Grid: painel info + mapa */
.contato-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(26,20,0,.13);
  min-height: 520px;
}

/* Painel esquerdo escuro */
.contato-info-panel {
  background: var(--rs-navy);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.contato-info-panel::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(238,179,53,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Cada linha de info */
.contato-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contato-info-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 28px 0;
}

/* Ícone */
.contato-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(238,179,53,.15);
  border: 1.5px solid rgba(238,179,53,.3);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contato-info-icon svg { fill: var(--rs-orange); width: 22px; height: 22px; }

/* Texto de cada item */
.contato-info-text h6 {
  color: var(--rs-orange);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.contato-info-text p {
  color: rgba(255,255,255,.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
.contato-info-link {
  color: var(--rs-orange);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--rs-transition);
}
.contato-info-link:hover { color: #fff; letter-spacing: 0.5px; }
.contato-info-link--inline {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .2px;
  line-height: 1.7;
}
.contato-info-link--inline:hover { color: var(--rs-orange); letter-spacing: .2px; }

/* Botão CTA dentro do painel */
.contato-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 11px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--rs-transition);
  margin-top: 32px;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
  white-space: nowrap;
}
.contato-cta-btn:hover {
  background: #1aad54;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

/* Painel direito: mapa */
.contato-map-panel { position: relative; min-height: 460px; }
.contato-map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 460px;
}

/* Responsive contato */
@media (max-width: 900px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }
  .contato-info-panel { padding: 36px 28px; }
  .contato-map-panel, .contato-map-panel iframe { min-height: 320px; }
}

/* ── Footer top wrapper ── */
.footer-top {
  padding: 60px 0 40px;
}

/* ── Animations ── */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-animate { opacity: 1; transform: none; }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: none; }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate  { transform: none; }
[data-aos="zoom-in"]    { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate    { transform: scale(1); }

/* ── Toast ── */
.rs-toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  background: var(--rs-navy);
  color: #fff;
  border-left: 4px solid var(--rs-orange);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.88rem;
  box-shadow: var(--rs-shadow);
  z-index: 99998;
  transform: translateX(120%);
  transition: transform 0.4s ease;
  max-width: 280px;
}
.rs-toast.show { transform: translateX(0); }
.rs-toast strong { display: block; margin-bottom: 2px; color: var(--rs-orange); }

/* ── Responsive tweaks ── */
@media (max-width: 991px) {
  .section-pad { padding: 60px 0; }
  .about-badge { right: 0; }
  .stat-separator { display: none; }

  /* Navbar mobile */
  #mainNav { background: #eeb335 !important; padding: 10px 0; }
  #mainNav .nav-link { color: #1a1400 !important; }
  #mainNav .navbar-brand img { height: 52px; }

  /* Hero mobile — espaço para navbar fixo */
  #hero .row {
    padding-top: 110px !important;
    padding-bottom: 60px !important;
    align-items: flex-start !important;
  }

  /* Título maior no mobile */
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }

  /* Descrição legível */
  .hero-desc { font-size: 1rem; margin-bottom: 28px; }

  /* Badge */
  .hero-badge { font-size: 0.78rem; padding: 6px 16px; }

  /* Botões: linha única, texto sem quebrar, lado a lado */
  #hero .d-flex {
    flex-wrap: nowrap !important;
    gap: 12px !important;
  }
  #hero .btn-rs-primary,
  #hero .btn-rs-outline {
    flex: 1;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    padding: 13px 12px;
    font-size: 0.88rem;
    gap: 6px;
  }
  /* Esconde ícone nos botões do hero no mobile para caber o texto */
  #hero .btn-rs-primary svg,
  #hero .btn-rs-outline svg { display: none; }

  /* Stats: 3 itens numa linha */
  .hero-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 32px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 14px 10px;
    justify-content: space-around;
  }
  .hero-divider { display: none; }
  .hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
  }
  .hero-stat-item .num  { font-size: 1.5rem; }
  .hero-stat-item .label { font-size: 0.67rem; letter-spacing: 0.3px; }

  /* Overflow fix geral */
  #hero, #stats-bar, #sobre, #servicos, #equipamentos,
  #por-que-nos, #parceiros, #contato, #footer {
    overflow-x: hidden;
    width: 100%;
  }
  .hero-centered .hero-stats { gap: 24px; margin-top: 36px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .row { margin-left: 0; margin-right: 0; }
  [data-aos="fade-right"], [data-aos="fade-left"] {
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .catalog-cta { padding: 36px 24px; }
  .contato-info-panel { padding: 28px 20px; }
  .footer-logo img { height: 44px; }
  * { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-stats { padding: 12px 6px; }
  .hero-stat-item .num   { font-size: 1.3rem; }
  .hero-stat-item .label { font-size: 0.62rem; }
  .hero-title { font-size: clamp(2rem, 8.5vw, 3rem); }
}
