/* =============================================
   LOCAMAQ - Complete Vanilla CSS
   Mobile-first responsive design
   ============================================= */

/* ----- CSS Reset & Base ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ----- Design Tokens (CSS Variables) ----- */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(220, 20%, 15%);
  --card: hsl(220, 15%, 97%);
  --card-foreground: hsl(220, 20%, 15%);
  --primary: hsl(0, 84%, 50%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(210, 80%, 35%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(220, 15%, 92%);
  --muted-foreground: hsl(220, 15%, 45%);
  --accent: hsl(210, 80%, 45%);
  --border: hsl(220, 15%, 88%);
  --ring: hsl(0, 84%, 50%);
  --radius: 0.5rem;
  --hero-bg: hsl(220, 20%, 12%);
  --whatsapp: hsl(142, 70%, 45%);
  --whatsapp-hover: hsl(142, 70%, 40%);
}

/* ----- Typography ----- */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

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

ul, ol {
  list-style: none;
}

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

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

/* ----- Text Gradient Classes ----- */
.text-gradient-primary {
  background: linear-gradient(135deg, hsl(0, 84%, 50%), hsl(0, 84%, 40%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-gradient-secondary {
  background: linear-gradient(135deg, hsl(210, 80%, 40%), hsl(210, 80%, 30%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ----- Section Container ----- */
.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ----- Animations ----- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-12px);
  }
  60% {
    transform: translateX(-50%) translateY(-6px);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-up-delay-1 {
  animation-delay: 0.1s;
}

.fade-in-up-delay-2 {
  animation-delay: 0.2s;
}

.fade-in-up-delay-3 {
  animation-delay: 0.3s;
}

.fade-in-up-delay-4 {
  animation-delay: 0.4s;
}

.fade-in-up-delay-5 {
  animation-delay: 0.5s;
}

.fade-in-up-delay-6 {
  animation-delay: 0.6s;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* ----- Animate Fade In Up (alias) ----- */
.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* =============================================
   BUTTONS
   ============================================= */

/* ----- Button Base ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 300ms ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

/* ----- Button Sizes ----- */
.btn-sm {
  height: 36px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 0.875rem;
}

.btn-lg {
  height: 48px;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 1rem;
}

.btn-xl {
  height: 56px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 1.125rem;
}

/* ----- Button Primary (Hero) ----- */
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px hsla(0, 84%, 50%, 0.4);
}

/* ----- Button Hero Outline ----- */
.btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  background-color: transparent;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* ----- Button WhatsApp ----- */
.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.05);
  box-shadow: 0 0 30px hsla(142, 70%, 45%, 0.4);
}

/* ----- Button Secondary ----- */
.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-secondary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px hsla(210, 80%, 35%, 0.3);
}

/* ----- Button Outline (generic) ----- */
.btn-outline {
  border: 2px solid var(--border);
  background-color: transparent;
  color: var(--foreground);
  font-weight: 500;
}

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

/* ----- Full-width button ----- */
.btn-full {
  width: 100%;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  height: 80px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  height: 56px;
  flex-shrink: 0;
}

.header-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* ----- Desktop Nav ----- */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(34, 40, 49, 0.7);
  transition: color 300ms ease;
}

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

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(34, 40, 49, 0.7);
  transition: color 300ms ease;
}

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

/* ----- Header CTA ----- */
.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
  }
}

/* ----- Hamburger Menu Button ----- */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

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

/* ----- Menu Toggle (alias for hamburger) ----- */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* ----- Mobile Menu ----- */
.mobile-menu {
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  padding: 24px 0;
}

.mobile-menu.hidden {
  display: none;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(34, 40, 49, 0.7);
  transition: color 300ms ease;
  padding: 4px 0;
}

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

.mobile-nav .btn {
  margin-top: 8px;
}

/* ----- Legacy mobile menu support ----- */
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.mobile-menu-links .nav-link {
  font-size: 1rem;
  padding: 4px 0;
}

.mobile-menu-links .btn {
  margin-top: 8px;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--hero-bg);
  overflow: hidden;
  padding-top: 80px;
}

/* ----- Hero Background Image ----- */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ----- Hero Overlays ----- */
.hero-overlay-lr {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(220, 20%, 12%) 0%, transparent 70%);
  z-index: 1;
}

.hero-overlay-bt {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(220, 20%, 12%) 0%, transparent 50%);
  z-index: 1;
}

/* ----- Hero Content ----- */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

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

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

/* ----- Hero Logo Badge ----- */
.hero-logo-badge {
  height: 80px;
  width: auto;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-logo-badge {
    height: 112px;
    margin-bottom: 2rem;
  }
}

/* ----- Hero Title ----- */
.hero-title {
  font-size: 2.25rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-title-highlight {
  color: #fff;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

/* ----- Hero Subtitle ----- */
.hero-subtitle {
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 2rem;
  max-width: 36rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* ----- Hero Stats Row ----- */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .hero-stat-value {
    font-size: 3rem;
  }
}

.hero-stat-value--primary {
  color: #fff;
}

.hero-stat-value--secondary {
  color: #fff;
}

.hero-stat-value--white {
  color: #fff;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ----- Stat aliases (HTML uses .stat / .stat-value / .stat-label) ----- */
.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ----- Hero CTA Buttons ----- */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

/* ----- Hero CTAs (alias) ----- */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

/* ----- Scroll Indicator ----- */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator svg {
  width: 32px;
  height: 32px;
}

/* =============================================
   SECTION SHARED STYLES
   ============================================= */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.section--card-bg {
  background-color: var(--card);
}

.section--dark-bg {
  background-color: var(--hero-bg);
}

/* ----- Section Headers ----- */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.125rem;
  }
}

/* ----- Section-specific classes ----- */
.section-about,
.section-differentials {
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: var(--background);
}

.section-equipment {
  padding-top: 56px;
  padding-bottom: 32px;
  background-color: var(--background);
}

.section-contact {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--card);
}

@media (min-width: 1024px) {
  .section-contact {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/* ----- Section Header h2 ----- */
.section-header h2 {
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.section-header > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* =============================================
   EQUIPMENT SECTION
   ============================================= */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .equipment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .equipment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .equipment-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ----- Equipment Card ----- */
.equipment-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #fff;
  transition: all 300ms ease;
}

.equipment-card:hover {
  border-color: hsla(210, 80%, 35%, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.equipment-card-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #fff;
}

.equipment-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 300ms ease;
  padding: 8px;
}

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

.equipment-card-body {
  padding: 16px;
  text-align: center;
}

.equipment-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.equipment-card-body h3 {
  margin-bottom: 0.75rem;
}

.equipment-card-body .btn {
  font-size: 0.75rem;
  padding: 0.5rem 1.25rem;
  margin-top: 0.25rem;
}

/* ----- Equipment Image & Body (alias classes) ----- */
.equipment-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--muted);
}

.equipment-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 300ms ease;
  padding: 8px;
}

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

.equipment-body {
  padding: 16px;
  text-align: center;
}

.equipment-body h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .equipment-body h3 {
    font-size: 1rem;
  }
}

.equipment-body .btn {
  width: 100%;
  font-size: 0.75rem;
}

/* ----- Equipment CTA ----- */
.equipment-cta {
  text-align: center;
  margin-top: 4rem;
}

.equipment-cta p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* ----- Ver Mais Button ----- */
.equipment-ver-mais {
  text-align: center;
  margin-top: 2.5rem;
}

.equipment-card.is-hidden {
  display: none;
}

.btn-ver-mais {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.btn-ver-mais:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ver-mais svg {
  transition: transform 300ms ease;
}

.btn-ver-mais:hover svg {
  transform: translateY(2px);
}

.btn-ver-mais.is-expanded svg {
  transform: rotate(180deg);
}

.btn-ver-mais.is-expanded:hover svg {
  transform: rotate(180deg) translateY(2px);
}

/* ----- Equipment Bottom CTA ----- */
.equipment-bottom-cta {
  text-align: center;
  margin-top: 3rem;
}

.equipment-bottom-cta p {
  margin-bottom: 1.5rem;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-header {
  text-align: left;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .about-header {
    margin-bottom: 4rem;
  }
}

.about-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 42rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .about-description {
    font-size: 1.125rem;
  }
}

/* ----- Features Grid ----- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ----- Feature Card ----- */
.feature-card {
  padding: 32px;
  border-radius: 0.75rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  transition: all 300ms ease;
}

.feature-card:hover {
  border-color: hsla(0, 84%, 50%, 0.5);
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: hsla(0, 84%, 50%, 0.1);
  margin-bottom: 1rem;
  transition: background-color 300ms ease;
}

.feature-card:hover .feature-icon-box {
  background-color: hsla(0, 84%, 50%, 0.2);
}

.feature-icon-box svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.feature-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-card-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ----- Feature Icon (alias) & Feature Card inner elements ----- */
.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: hsla(0, 84%, 50%, 0.1);
  margin-bottom: 1.5rem;
  transition: background-color 300ms ease;
}

.feature-card:hover .feature-icon {
  background-color: hsla(0, 84%, 50%, 0.2);
}

.feature-icon svg {
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

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

/* ----- Mission Statement ----- */
.mission-statement {
  border-radius: 1rem;
  background: linear-gradient(135deg, hsla(210, 80%, 35%, 0.1), hsla(0, 84%, 50%, 0.05));
  border: 1px solid hsla(210, 80%, 35%, 0.2);
  padding: 2rem;
}

@media (min-width: 1024px) {
  .mission-statement {
    padding: 3rem;
  }
}

.mission-statement-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mission-statement-title svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

.mission-statement-text {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .mission-statement-text {
    font-size: 1rem;
  }
}

/* ----- Mission Card (alias) ----- */
.mission-card {
  margin-top: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsla(210, 80%, 35%, 0.1), hsla(0, 84%, 50%, 0.05));
  border: 1px solid hsla(210, 80%, 35%, 0.2);
  padding: 2rem;
  text-align: center;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .mission-card {
    padding: 3rem;
  }
}

.mission-card h3 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .mission-card h3 {
    font-size: 1.875rem;
  }
}

.mission-card p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* =============================================
   DIFFERENTIALS SECTION
   ============================================= */
.differentials {
  position: relative;
  overflow: hidden;
}

/* ----- Decorative blurred circles ----- */
.differentials-decor-1 {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background-color: hsla(0, 84%, 50%, 0.05);
  filter: blur(80px);
  pointer-events: none;
}

.differentials-decor-2 {
  position: absolute;
  bottom: -8rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background-color: hsla(210, 80%, 35%, 0.05);
  filter: blur(80px);
  pointer-events: none;
}

.differentials-content {
  position: relative;
  z-index: 1;
}

/* ----- Section Differentials (alias) & Decorative Blobs ----- */
.section-differentials {
  position: relative;
  overflow: hidden;
}

.decor-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.decor-blob-tr {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  background-color: hsla(0, 84%, 50%, 0.05);
}

.decor-blob-bl {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
  background-color: hsla(210, 80%, 35%, 0.05);
}

.section-differentials-inner {
  position: relative;
  z-index: 1;
}

/* ----- Differentials Grid ----- */
.differentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .differentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ----- Differential Card ----- */
.differential-card {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  padding: 24px;
  border-radius: 0.75rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  transition: all 300ms ease;
}

.differential-card:hover {
  border-color: hsla(0, 84%, 50%, 0.3);
}

.differential-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--primary), hsla(0, 84%, 50%, 0.8));
  box-shadow: 0 4px 12px hsla(0, 84%, 50%, 0.3);
}

.differential-icon-box svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.differential-card-content {
  flex: 1;
}

.differential-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}

.differential-card-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* ----- Differential Icon (alias) & Card inner elements ----- */
.differential-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--primary), hsla(0, 84%, 50%, 0.8));
  box-shadow: 0 4px 12px hsla(0, 84%, 50%, 0.3);
}

.differential-icon svg {
  color: #fff;
}

.differential-card h3 {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.differential-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

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

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

/* ----- Contact Left (Info) ----- */
.contact-info-header {
  margin-bottom: 2rem;
}

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

/* ----- Contact Card (Link Card) ----- */
.contact-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 16px;
  background-color: var(--background);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 300ms ease;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  border-color: hsla(0, 84%, 50%, 0.5);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: hsla(0, 84%, 50%, 0.1);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact-card-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.125rem;
}

.contact-card-value {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--foreground);
}

/* ----- Contact Right (CTA Card) ----- */
.contact-cta-card {
  background: linear-gradient(135deg, var(--secondary), hsl(210, 80%, 30%));
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  color: #fff;
}

@media (min-width: 1024px) {
  .contact-cta-card {
    padding: 3rem;
  }
}

.contact-cta-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}

.contact-cta-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.contact-cta-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .contact-cta-title {
    font-size: 1.75rem;
  }
}

.contact-cta-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-cta-caption {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  text-align: center;
}

/* ----- Contact Info & Desc (alias classes) ----- */
.contact-info .section-tag {
  display: block;
}

.contact-info h2 {
  font-size: 1.875rem;
  color: var(--foreground);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-info h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .contact-info h2 {
    font-size: 3rem;
  }
}

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

.contact-card-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-card-value {
  display: block;
  font-weight: 600;
  color: var(--foreground);
  transition: color 300ms ease;
}

.contact-card:hover .contact-card-value {
  color: var(--primary);
}

/* ----- Contact CTA Card inner elements (alias) ----- */
.contact-cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact-cta-card h3 {
    font-size: 1.875rem;
  }
}

.contact-cta-card > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-cta-btn {
  width: 100%;
}

.contact-cta-note {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.contact-cta-wrapper {
  display: flex;
}

@media (min-width: 1024px) {
  .contact-cta-wrapper {
    padding-left: 2rem;
  }
}

.contact-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background-color: hsl(220, 20%, 12%);
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 0;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ----- Footer Logo Column ----- */
.footer-brand {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: 1 / 2;
  }
}

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

.footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 24rem;
  margin-bottom: 1.5rem;
}

/* ----- Social Icons ----- */
.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 300ms ease;
  color: #fff;
}

.social-icon:hover {
  background-color: var(--primary);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* ----- Footer Columns ----- */
.footer-column-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  color: #fff;
}

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

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 300ms ease;
}

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

/* ----- Footer Contact Info ----- */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--primary);
  margin-top: 2px;
}

/* ----- Footer Bottom Bar ----- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-location svg {
  width: 14px;
  height: 14px;
}

/* ----- Footer HTML alias classes ----- */
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 28rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 300ms ease;
  color: #fff;
}

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

.footer-links h4,
.footer-contact h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 300ms ease;
}

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

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

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 300ms ease;
}

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

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-address svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 200ms ease, box-shadow 200ms ease;
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Text alignment */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* Flex utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

/* Margin utilities */
.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* Hidden/shown at breakpoints */
.hidden {
  display: none;
}

.block {
  display: block;
}

@media (min-width: 640px) {
  .sm-block {
    display: block;
  }
  .sm-hidden {
    display: none;
  }
}

@media (min-width: 768px) {
  .md-block {
    display: block;
  }
  .md-hidden {
    display: none;
  }
  .md-flex {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .lg-block {
    display: block;
  }
  .lg-hidden {
    display: none;
  }
  .lg-flex {
    display: flex;
  }
}

@media (min-width: 1280px) {
  .xl-block {
    display: block;
  }
  .xl-hidden {
    display: none;
  }
}

/* ----- Text & Font Weight Utilities ----- */
.text-primary {
  color: var(--primary);
}

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

.text-white {
  color: #fff;
}

.fw-600 {
  font-weight: 600;
}

/* WhatsApp Floating Button (optional) */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px hsla(142, 70%, 45%, 0.4);
  transition: all 300ms ease;
  color: #fff;
}

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

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