/* ===============================
   VARIÁVEIS
================================ */
:root {
  --blue: #005C8C;
  --blue-dark: #003D5C;
  --blue-deep: #001E30;
  --blue-light: #0077B6;
  --orange: #F26522;
  --orange-dark: #D4541A;
  --white: #FFFFFF;

  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;

  --shadow-md: 0 4px 16px rgba(0, 92, 140, 0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0, 92, 140, 0.15), 0 4px 12px rgba(0,0,0,0.08);
  --radius: 14px;
}

/* ===============================
   RESET E BASE
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

section {
  padding: 96px 24px;
}

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

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

.section-divider {
  width: 56px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 24px;
}

.center {
  text-align: center;
}

.center .section-divider {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--blue-dark);
  margin-bottom: 16px;
}

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

.section-sub {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 620px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center .section-sub {
  margin: 0 auto;
}

/* ===============================
   BOTÕES
================================ */
.btn-primary,
.btn-secondary,
.whatsapp-cta,
.email-cta,
.social-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 15px 28px;
  box-shadow: 0 4px 20px rgba(242, 101, 34, 0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* ===============================
   HEADER
================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: rgba(0, 36, 56, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: 0.3s ease;
}

#header.scrolled {
  background: rgba(0, 36, 56, 1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 120px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo img {
  height: 160px;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-desktop a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.2s;
}

.nav-desktop a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.header-cta {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  transition: 0.2s;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--orange-dark);
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ===============================
   MENU MOBILE
================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  z-index: 999;

  background: rgba(0,30,50,0.98);
  backdrop-filter: blur(12px);
  padding: 16px 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-direction: column;
  gap: 4px;
}

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

.mobile-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
}

.mobile-nav a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.mobile-cta {
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 700 !important;
  margin-top: 8px;
}

/* ===============================
   HERO
================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #001E30 0%, #003D5C 40%, #005C8C 75%, #0077B6 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(242,101,34,0.12), transparent 70%);
  top: -100px;
  right: -150px;
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,119,182,0.2), transparent 70%);
  bottom: -100px;
  left: -100px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: rgba(242,101,34,0.15);
  border: 1px solid rgba(242,101,34,0.35);
  color: #FFA06A;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--orange);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.76);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--white);
}

.stat strong span {
  color: var(--orange);
}

.stat small {
  font-size: 12px;
  color: rgba(255,255,255,0.58);
  font-weight: 500;
}

.hero-image-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-img-frame {
  background: rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 14px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.hero-img-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  background: var(--white);
}

/* ===============================
   QUEM SOMOS
================================ */
.about {
  background: var(--gray-50);
}

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

.about-visual {
  position: relative;
}

.about-image-card {
  height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-float-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--white);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  border-left: 4px solid var(--orange);
}

.about-float-card.orange {
  top: -20px;
  left: -20px;
  bottom: auto;
  right: auto;
  background: var(--orange);
  color: var(--white);
  border-left: none;
}

.about-float-card strong {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  color: var(--blue);
}

.about-float-card strong span {
  color: var(--orange);
}

.about-float-card.orange strong {
  color: var(--white);
}

.about-float-card.orange strong span {
  color: var(--white);
}

.about-float-card p {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 4px;
}

.about-float-card.orange p {
  color: rgba(255,255,255,0.86);
}

.about-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.about-values div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark);
}

.about-values span {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===============================
   SERVIÇOS
================================ */
.services {
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}

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

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

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,92,140,0.08);
  color: var(--blue);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 17px;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.service-card a {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

.services-showcase {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 32px;
  align-items: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
}

.services-showcase-image {
  border-radius: 12px;
  overflow: hidden;
  height: 340px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--white);
}

.services-showcase-content h3 {
  font-size: 26px;
  color: var(--blue-dark);
  margin-bottom: 14px;
}

.services-showcase-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===============================
   LOCAÇÃO
================================ */
.rental {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  position: relative;
  overflow: hidden;
}

.rental::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}

.rental .container {
  position: relative;
  z-index: 1;
}

.rental .section-title {
  color: var(--white);
}

.rental .section-sub {
  color: rgba(255,255,255,0.72);
}

.rental .section-label {
  color: #FFA06A;
}

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

.rental-grid-two {
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
}

.rental-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px;
  transition: 0.3s;
}

.rental-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.rental-icon {
  width: 52px;
  height: 52px;
  background: rgba(242,101,34,0.2);
  color: var(--orange);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.rental-card h3 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 10px;
}

.rental-card p {
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  line-height: 1.7;
}

.rental-gallery {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.rental-gallery-main,
.rental-gallery-side {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0,0,0,0.22);
  background: var(--white);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rental-gallery-main img,
.rental-gallery-side img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--white);
}

.section-action {
  text-align: center;
  margin-top: 48px;
}

/* ===============================
   PEÇAS
================================ */
.parts {
  background: var(--gray-50);
}

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

.parts-content .btn-primary {
  margin-top: 32px;
}

.advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.advantages div {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 18px;
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 600;
}

.advantages div::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
  margin-right: 8px;
}

.parts-visual {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  padding: 22px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parts-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.pieces-preparation {
  margin-top: 72px;
}

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

.piece-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: 0.3s;
}

.piece-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.piece-image {
  height: 210px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #f3f7fa);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  margin-bottom: 20px;
  overflow: hidden;
}

.piece-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.piece-card h3 {
  color: var(--blue-dark);
  font-size: 18px;
  margin-bottom: 10px;
}

.piece-card p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
}

/* ===============================
   ATENDIMENTO
================================ */
.attendance {
  background: var(--white);
}

.attendance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.sla-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: 0.2s;
}

.sla-card:hover {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.sla-card strong {
  min-width: 56px;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  color: var(--blue);
}

.sla-card h3 {
  font-size: 15px;
  color: var(--blue-dark);
  margin-bottom: 0;
}

.coverage-box {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius);
  padding: 36px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.coverage-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.coverage-box p {
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 16px;
}

.coverage-phone {
  margin: 24px 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.coverage-phone span {
  color: var(--orange);
}

/* ===============================
   CONTATO
================================ */
.contact {
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: 0.2s;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0,92,140,0.08);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 800;
}

.contact-icon i {
  font-size: 18px;
}

.contact-icon.whatsapp {
  background: rgba(37,211,102,0.12);
  color: #25D366;
}

.contact-icon.instagram {
  background: rgba(225,48,108,0.10);
  color: #E1306C;
}

.contact-icon.linkedin {
  background: rgba(10,102,194,0.12);
  color: #0A66C2;
}

.contact-card strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-card span {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-dark);
  display: block;
  line-height: 1.5;
  word-break: break-word;
  margin-bottom: 2px;
}

.contact-card small {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 4px;
  line-height: 1.6;
}

.contact-card small a {
  color: var(--blue);
  font-weight: 600;
}

.contact-card small a:hover {
  color: var(--orange);
}

.contact-cta-box {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius);
  padding: 34px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  align-self: start;
}

.contact-cta-box h3 {
  font-size: 24px;
  margin-bottom: 14px;
  max-width: 440px;
}

.contact-cta-box p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
  max-width: 460px;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-points div {
  color: rgba(255,255,255,0.90);
  font-size: 14px;
}

.contact-points div::before {
  content: "✓";
  color: var(--orange);
  font-weight: 800;
  margin-right: 8px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.whatsapp-cta,
.email-cta,
.social-cta {
  min-height: 52px;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
}

.whatsapp-cta {
  background: #25D366;
  color: var(--white);
}

.whatsapp-cta:hover {
  background: #20B85A;
  transform: translateY(-2px);
}

.email-cta {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
}

.email-cta:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.social-cta {
  background: rgba(225,48,108,0.16);
  color: var(--white);
  border: 1px solid rgba(225,48,108,0.26);
}

.social-cta:hover {
  background: rgba(225,48,108,0.24);
  transform: translateY(-2px);
}

/* ===============================
   FOOTER
================================ */
.footer {
  background: var(--gray-800);
  color: var(--white);
  padding: 56px 24px 32px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 260px) repeat(3, minmax(180px, 1fr));
  gap: 36px;
  margin-bottom: 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-logo img {
  height: 160px;
  width: auto;
  object-fit: contain;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===============================
   WHATSAPP FLUTUANTE
================================ */
.wa-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999;

  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;

  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: floatBounce 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
  animation: none;
}

@keyframes floatBounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ===============================
   ANIMAÇÃO AO ROLAR
================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-image-col {
    justify-content: center;
    order: -1;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid,
  .services-showcase,
  .parts-layout,
  .attendance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 720px;
    margin: 0 auto;
  }

  .services-grid,
  .pieces-grid {
    grid-template-columns: 1fr;
  }

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

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

  .services-showcase-image {
    height: 320px;
  }

  .rental-gallery-main,
  .rental-gallery-side {
    height: 320px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 20px;
  }

  .header-inner {
    height: 120px;
  }

  .mobile-nav {
    top: 120px;
  }

  .logo img {
    height: 130px;
  }

  .nav-desktop,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-inner {
    padding: 56px 24px;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 42px);
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .services-grid,
  .rental-grid,
  .rental-grid-two,
  .advantages,
  .pieces-grid,
  .rental-gallery {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-float-card,
  .about-float-card.orange {
    position: static;
    margin-top: 14px;
  }

  .about-image-card,
  .services-showcase-image,
  .rental-gallery-main,
  .rental-gallery-side {
    height: 260px;
  }

  .parts-visual {
    min-height: 240px;
  }

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

  .footer-brand {
    justify-content: center;
  }

  .footer-logo {
    width: 100%;
    justify-content: center;
  }

  .footer-logo img {
    height: 130px;
    max-width: 280px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .wa-float {
    width: 54px;
    height: 54px;
    right: 18px;
    bottom: 18px;
  }
}