/* ===== CSS VARIABLES ===== */
:root {
  --background: #ffffff;
  --foreground: hsl(0, 1%, 31%);
  --card: #ffffff;
  --card-foreground: hsl(0, 1%, 31%);
  --primary: hsl(43, 96%, 51%);
  --primary-foreground: #ffffff;
  --secondary: hsl(0, 1%, 31%);
  --secondary-foreground: #ffffff;
  --muted: hsl(43, 20%, 95%);
  --muted-foreground: hsl(0, 1%, 45%);
  --border: hsl(43, 20%, 88%);
  --gold: hsl(43, 96%, 51%);
  --gold-light: hsl(43, 96%, 60%);
  --gold-dark: hsl(43, 96%, 42%);
  --charcoal: hsl(0, 1%, 31%);
  --charcoal-light: hsl(0, 1%, 45%);
  --warm-white: hsl(40, 30%, 97%);
  --radius: 0.5rem;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

ul {
  list-style: none;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

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

.text-small {
  font-size: 0.875rem;
}

.hidden {
  display: none !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.625rem 1.25rem;
}

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

.btn-full {
  width: 100%;
  padding: 0.75rem 1.25rem;
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  border-radius: 9999px;
  background-color: hsla(43, 96%, 51%, 0.1);
  padding: 0.375rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.badge-hero {
  border: 1px solid hsla(43, 96%, 51%, 0.4);
  background-color: hsla(43, 96%, 51%, 0.1);
  margin-bottom: 1.5rem;
}

.badge-small {
  display: inline-block;
  border-radius: 9999px;
  background-color: hsla(43, 96%, 51%, 0.1);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 2.5rem;
  width: auto;
}

.navbar-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--primary);
}

.btn-nav-whatsapp {
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
}

.mobile-toggle {
  display: block;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background-color: #fff;
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.mobile-menu.open {
  display: block;
  max-height: 400px;
  opacity: 1;
}

.mobile-menu-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu .nav-link {
  text-align: left;
}

.btn-mobile-whatsapp {
  padding: 0.75rem 1.25rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: hsla(0, 1%, 31%, 0.80);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 8rem;
}

.hero-text {
  max-width: 48rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.7);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  line-height: 1.75;
}

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

.btn-hero {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px hsla(43, 96%, 51%, 0.3);
}

.btn-hero:hover {
  box-shadow: 0 20px 25px -5px hsla(43, 96%, 51%, 0.3);
}

.btn-hero .arrow-icon {
  transition: transform 0.3s ease;
}

.btn-hero:hover .arrow-icon {
  transform: translateX(4px);
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: 2px solid hsla(0, 0%, 100%, 0.2);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: hsla(0, 0%, 100%, 0.9);
  transition: all 0.3s ease;
}

.btn-outline-hero:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 1rem;
  background-color: var(--background);
  overflow: hidden;
}

.section-muted {
  background-color: hsla(43, 20%, 95%, 0.3);
}

.section-warm {
  background-color: var(--warm-white);
  overflow: hidden;
}

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

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-header > p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* ===== EQUIPMENT ===== */
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.equipment-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  overflow: hidden;
  transition: all 0.3s ease;
}

.equipment-card:hover {
  border-color: hsla(43, 96%, 51%, 0.4);
  box-shadow: 0 20px 25px -5px hsla(43, 96%, 51%, 0.05);
}

.equipment-image {
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--muted);
}

.equipment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.equipment-info {
  padding: 1.5rem;
}

.equipment-info h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: hsla(43, 96%, 51%, 0.4);
  box-shadow: 0 20px 25px -5px hsla(43, 96%, 51%, 0.05);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: hsla(43, 96%, 51%, 0.1);
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.about-card {
  position: relative;
  border-radius: 1rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.about-card:hover {
  box-shadow: 0 20px 25px -5px hsla(43, 96%, 51%, 0.05);
}

.about-card-dark {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-card.about-card-dark p {
  color: #fff;
}

.about-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background-color: hsla(43, 96%, 51%, 0.1);
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.about-card:not(.about-card-dark):hover .about-icon {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.about-icon-dark {
  background-color: hsla(43, 96%, 51%, 0.2);
}

.about-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--muted-foreground);
  line-height: 1.75;
}

.values-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.values-list li svg {
  color: var(--primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.values-list li span {
  color: var(--muted-foreground);
}

/* Stats */
.stats-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: var(--card);
  border: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: hsla(43, 96%, 51%, 0.4);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-card-whatsapp {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  box-shadow: 0 10px 15px -3px hsla(43, 96%, 51%, 0.2);
}

.contact-card-whatsapp:hover {
  background-color: var(--gold-dark);
  border-color: transparent;
}

.contact-card-whatsapp .contact-text h3,
.contact-card-whatsapp .contact-text p {
  color: var(--primary-foreground);
}

.contact-card-whatsapp .contact-text p {
  opacity: 0.8;
}

.contact-icon,
.contact-icon-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.contact-icon {
  background-color: hsla(43, 96%, 51%, 0.1);
  color: var(--primary);
}

.contact-icon-whatsapp {
  background-color: hsla(0, 0%, 100%, 0.2);
}

.contact-text {
  min-width: 0;
}

.contact-text h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.contact-text p {
  color: var(--muted-foreground);
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-card .arrow-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.contact-card:hover .arrow-icon {
  transform: translateX(4px);
}

.contact-map {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  min-height: 400px;
}

.contact-map iframe {
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.footer-inner {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

.footer-logo {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
}

.footer-contact li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 0.875rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease;
}

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

/* ===== CTA BANNER (Alugar é melhor) ===== */
.section-cta {
  background: linear-gradient(135deg, var(--secondary) 0%, hsl(0, 1%, 22%) 100%);
  padding: 4rem 1rem;
  text-align: center;
}

.cta-inner {
  max-width: 700px;
}

.section-cta h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-cta h2 strong {
  color: var(--primary);
}

.section-cta p {
  color: hsla(0, 0%, 100%, 0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  justify-content: flex-start;
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 2px solid var(--border);
  background: var(--card);
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tab.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* ===== TAB PANELS ===== */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ===== CAROUSEL ===== */
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-track-container {
  overflow: hidden;
  flex: 1;
  border-radius: 1rem;
  padding: 4px;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
}

.carousel-card {
  flex: 0 0 100%;
  min-width: 0;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.carousel-card:hover {
  border-color: hsla(43, 96%, 51%, 0.4);
  box-shadow: 0 10px 25px -5px hsla(43, 96%, 51%, 0.1);
}

.carousel-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--muted);
}

.carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.carousel-card-body {
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.carousel-card p.card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.35rem;
  text-align: left;
}

.carousel-card .card-desc {
  font-size: 0.88rem;
  color: var(--muted-foreground);
  line-height: 1.45;
  margin-bottom: 0.5rem;
  text-align: left;
}

.carousel-card .card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.carousel-card .card-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--foreground);
  line-height: 1.35;
}

.carousel-card .card-bullets li svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--primary);
}

.btn-equip-card-cta {
  margin: auto 0.75rem 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  border-radius: 0.5rem;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: hsla(43, 96%, 51%, 0.1);
}

/* Equip CTA */
.equip-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.equip-cta p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.equip-cta .btn {
  padding: 0.75rem 1.5rem;
}

/* ===== ANIMATIONS ===== */
/* Fade in up - for scroll-triggered elements */
.animate-on-scroll,
.animate-child,
.animate-on-scroll-left,
.animate-on-scroll-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll-left {
  transform: translateX(-30px);
}

.animate-on-scroll-right {
  transform: translateX(30px);
}

.animate-on-scroll.visible,
.animate-child.visible,
.animate-on-scroll-left.visible,
.animate-on-scroll-right.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Hero load animations */
.animate-on-load {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

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

/* Stagger delays for hero */
.animate-on-load[data-delay="0"] { animation-delay: 0ms; }
.animate-on-load[data-delay="150"] { animation-delay: 150ms; }
.animate-on-load[data-delay="300"] { animation-delay: 300ms; }
.animate-on-load[data-delay="450"] { animation-delay: 450ms; }

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

/* SM: 640px */
@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }

  .carousel-card {
    flex: 0 0 calc(50% - 0.5rem);
  }
}

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

  .tabs {
    justify-content: center;
    overflow-x: visible;
  }

  .navbar-desktop {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .navbar-logo img {
    height: 3rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-content {
    padding-top: 7rem;
    padding-bottom: 0;
  }

  .section {
    padding: 7rem 2rem;
  }

  .section-header h2 {
    font-size: 3rem;
  }

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

  .carousel-card {
    flex: 0 0 calc(33.333% - 0.667rem);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


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

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .carousel-card {
    flex: 0 0 calc(33.333% - 0.667rem);
  }

  .section-cta h2 {
    font-size: 2.5rem;
  }

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

  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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