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

/* ===== CSS VARIABLES ===== */
:root {
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(215, 30%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 30%, 15%);
  --primary: hsl(215, 70%, 35%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-dark: hsl(215, 75%, 25%);
  --primary-light: hsl(215, 60%, 50%);
  --secondary: hsl(210, 15%, 93%);
  --muted: hsl(210, 15%, 95%);
  --muted-foreground: hsl(215, 10%, 45%);
  --accent: hsl(45, 95%, 55%);
  --accent-foreground: hsl(215, 30%, 15%);
  --accent-dark: hsl(42, 90%, 45%);
  --border: hsl(210, 15%, 88%);
  --radius: 0.75rem;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
  background-image: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animated {
  animation-fill-mode: forwards;
}

.animate-on-scroll.animated.fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.animate-on-scroll.animated.fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-on-scroll.animated.slide-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-on-scroll.animated.slide-right {
  animation: slideInRight 0.6s ease-out forwards;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsla(215, 75%, 25%, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(215, 60%, 50%, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 4px;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header__logo-nova {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary-foreground);
  font-size: 0.875rem;
  letter-spacing: -0.025em;
}

.header__logo-locacoes {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--accent);
  font-size: 0.875rem;
  letter-spacing: -0.025em;
}

/* Desktop Nav */
.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header__nav-link {
  color: hsla(0, 0%, 100%, 0.8);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.header__nav-link:hover {
  color: var(--accent);
}

/* CTA Button */
.header__cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn--accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn--accent:hover {
  background-color: var(--accent-dark);
}

.btn--outline-white {
  background-color: var(--primary-foreground);
  color: var(--foreground);
  border: 1px solid hsla(0, 0%, 100%, 0.3);
}

.btn--outline-white:hover {
  background-color: hsla(0, 0%, 100%, 0.9);
}

.btn--whatsapp {
  background-color: hsl(142, 70%, 45%);
  color: var(--primary-foreground);
}

.btn--whatsapp:hover {
  background-color: hsl(142, 70%, 38%);
}

.btn--sm {
  padding: 0.4rem 0.5rem;
  font-size: 0.65rem;
  gap: 0.2rem;
}

.btn--lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

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

.btn svg,
.btn .btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn--lg svg,
.btn--lg .btn-icon {
  width: 20px;
  height: 20px;
}

.btn--sm svg,
.btn--sm .btn-icon {
  width: 12px;
  height: 12px;
}

/* Mobile Menu Toggle */
.header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: var(--primary-foreground);
  padding: 0.5rem;
}

.header__toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Nav */
.header__mobile-nav {
  display: none;
  background-color: hsla(215, 75%, 25%, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid hsla(215, 60%, 50%, 0.2);
  padding-bottom: 1rem;
}

.header__mobile-nav.open {
  display: block;
}

.header__mobile-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: hsla(0, 0%, 100%, 0.8);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s;
}

.header__mobile-link:hover {
  color: var(--accent);
  background-color: hsla(215, 60%, 50%, 0.1);
}

.header__mobile-cta {
  padding: 0.5rem 1.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsla(215, 75%, 25%, 0.92) 0%,
    hsla(215, 70%, 35%, 0.85) 50%,
    hsla(215, 60%, 50%, 0.78) 100%
  );
}

.hero__accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--accent);
}

.hero__content {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  max-width: 768px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero__badge {
  display: inline-block;
  background-color: hsla(45, 95%, 55%, 0.2);
  border: 1px solid hsla(45, 95%, 55%, 0.4);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.875rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--primary-foreground);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero__subtitle {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
}

.hero__stat {
  text-align: center;
  flex: 1;
  min-width: 0;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--accent);
}

.hero__stat-label {
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 0.6875rem;
  margin-top: 0.25rem;
}

/* ===== EQUIPMENT SECTION ===== */
.equipment {
  padding: 5rem 0 5rem;
  background-color: var(--muted);
}

.equipment__header {
  text-align: center;
  margin-bottom: 4rem;
}

.equipment__badge {
  display: inline-block;
  background-color: hsla(215, 70%, 35%, 0.1);
  border: 1px solid hsla(215, 70%, 35%, 0.2);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.875rem;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title .text-primary {
  color: var(--primary);
}

.section-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
}

.equipment__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.equipment__card {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px -4px hsla(215, 70%, 35%, 0.15);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
}

.equipment__card:hover {
  box-shadow: 0 8px 30px -4px hsla(215, 70%, 35%, 0.25);
}

.equipment__card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--background);
  padding: 1rem;
}

.equipment__card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s;
}

.equipment__card:hover .equipment__card-image img {
  transform: scale(1.05);
}

.equipment__card.hidden-card {
  display: none;
}

.equipment__card.hidden-card.show-card {
  display: flex;
  animation: fadeUp 0.4s ease-out forwards;
}

.equipment__load-more {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.equipment__load-more .btn {
  cursor: pointer;
}

.btn--outline-less {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--outline-less:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.equipment__card-body {
  padding: 0.75rem;
  background-color: var(--card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.equipment__card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--foreground);
  font-size: 0.8125rem;
  text-align: center;
  line-height: 1.3;
  flex: 1;
  display: flex;
  align-items: center;
}

.equipment__materials-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 2rem;
  text-align: center;
}

.equipment__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 5rem 0 5rem;
  background-color: var(--background);
}

.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about__badge {
  display: inline-block;
  background-color: hsla(45, 95%, 55%, 0.1);
  color: var(--accent-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.about__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.875rem;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about__title .text-primary {
  color: var(--primary);
}

.about__text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about__text strong {
  color: var(--foreground);
}

.about__text:last-of-type {
  margin-bottom: 0;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.about__feature-card {
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 20px -4px hsla(215, 70%, 35%, 0.15);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.about__feature-card:hover {
  box-shadow: 0 8px 30px -4px hsla(215, 70%, 35%, 0.25);
}

.about__feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background-color: hsla(45, 95%, 55%, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.about__feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-dark);
  stroke: var(--accent-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about__feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--foreground);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.about__feature-desc {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  padding: 5rem 0 5rem;
  background-color: var(--background);
}

.benefits__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.benefits__badge {
  display: inline-block;
  background-color: hsla(215, 70%, 35%, 0.1);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.benefits__content {
  max-width: 896px;
  margin: 0 auto;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.benefits__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px -4px hsla(215, 70%, 35%, 0.15);
  transition: box-shadow 0.3s;
}

.benefits__card:hover {
  box-shadow: 0 8px 30px -4px hsla(215, 70%, 35%, 0.25);
}

.benefits__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: hsla(45, 95%, 55%, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.benefits__icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-dark);
  stroke: var(--accent-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits__text {
  color: var(--foreground);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.contact__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--accent);
}

.contact__inner {
  position: relative;
  z-index: 10;
}

.contact__grid {
  display: grid;
  gap: 3rem;
  align-items: flex-start;
}

.contact__badge {
  display: inline-block;
  background-color: hsla(45, 95%, 55%, 0.2);
  border: 1px solid hsla(45, 95%, 55%, 0.3);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.contact__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.875rem;
  color: var(--primary-foreground);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.contact__desc {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: hsla(0, 0%, 100%, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all 0.3s;
  cursor: pointer;
}

.contact__info-card:hover {
  background-color: hsla(0, 0%, 100%, 0.1);
  border-color: hsla(45, 95%, 55%, 0.3);
}

.contact__info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  background-color: hsla(45, 95%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.contact__info-card:hover .contact__info-icon {
  background-color: hsla(45, 95%, 55%, 0.3);
}

.contact__info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__info-label {
  color: hsla(0, 0%, 100%, 0.6);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.contact__info-value {
  color: var(--primary-foreground);
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--primary-dark);
  padding: 2.5rem 0;
  border-top: 1px solid hsla(215, 60%, 50%, 0.15);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 4px;
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer__brand-nova {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary-foreground);
  font-size: 0.75rem;
  letter-spacing: -0.025em;
}

.footer__brand-locacoes {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: -0.025em;
}

.footer__brand-sub {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 0.625rem;
  margin-top: 0.25rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer__nav-link {
  color: hsla(0, 0%, 100%, 0.6);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer__nav-link:hover {
  color: var(--accent);
}

.footer__copyright {
  color: hsla(0, 0%, 100%, 0.4);
  font-size: 0.75rem;
  text-align: center;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 56px;
  height: 56px;
  background-color: hsl(142, 70%, 45%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  animation: scaleIn 0.5s ease-out 1s both;
}

.whatsapp-float:hover {
  background-color: hsl(142, 70%, 38%);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* WhatsApp icon in buttons */
.whatsapp-svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */

/* Small phones (up to 480px) */
@media (min-width: 480px) {
  .hero__buttons {
    flex-direction: row;
  }

  .contact__buttons {
    flex-direction: row;
  }
}

/* SM: 640px */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }

  .btn--sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .btn--sm svg,
  .btn--sm .btn-icon {
    width: 14px;
    height: 14px;
  }

  .equipment__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

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

  .equipment__card-body {
    padding: 1rem;
  }

  .equipment__card-name {
    font-size: 0.875rem;
  }
}

/* MD: 768px */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .header__inner {
    height: 80px;
  }

  .header__logo-nova,
  .header__logo-locacoes {
    font-size: 1rem;
  }

  .header__nav {
    display: flex;
  }

  .header__cta {
    display: flex;
  }

  .header__toggle {
    display: none;
  }

  .hero__content {
    padding-top: 7rem;
    padding-bottom: 4rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1.125rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
    gap: 3rem;
  }

  .hero__stat {
    text-align: center;
    flex: none;
  }

  .hero__stat-value {
    font-size: 2.25rem;
  }

  .hero__stat-label {
    font-size: 0.8125rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .equipment {
    padding: 5rem 0 7rem;
  }

  .about {
    padding: 5rem 0 7rem;
  }

  .about__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .about__title {
    font-size: 2.25rem;
  }

  .benefits {
    padding: 5rem 0 7rem;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .contact {
    padding: 5rem 0 7rem;
  }

  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .contact__title {
    font-size: 2.25rem;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* LG: 1024px */
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .about__title {
    font-size: 3rem;
  }

  .contact__title {
    font-size: 3rem;
  }

  .equipment__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
