/* cores extraídas do logo: #F05235, #F58234, #00AFF0 */
:root {
  --alfa-red: #f05235;
  --alfa-orange: #f58234;
  --alfa-blue: #00aff0;
}
html {
  scroll-behavior: smooth !important;
}
body {
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    sans-serif;
  background: #fafafa;
}
.bg-alfa-red {
  background-color: #f05235;
}
.bg-alfa-orange {
  background-color: #f58234;
}
.bg-alfa-blue {
  background-color: #00aff0;
}
.text-alfa-red {
  color: #f05235;
}
.text-alfa-orange {
  color: #f58234;
}
.text-alfa-blue {
  color: #00aff0;
}
.border-alfa-red {
  border-color: #f05235;
}
.hover\:bg-alfa-red-dark:hover {
  background-color: #d9442a;
}
.hover\:bg-alfa-blue-dark:hover {
  background-color: #0095cc;
}
.hover\:text-alfa-red:hover {
  color: #f05235;
}
.hover\:text-alfa-blue:hover {
  color: #00aff0;
}
.card-hover {
  transition: all 0.25s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
}
.logo-symbol {
  background: linear-gradient(135deg, #f05235 0%, #f58234 70%, #f05235 100%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: white;
  box-shadow: 0 6px 12px rgba(240, 82, 53, 0.25);
}
.logo-symbol span {
  transform: rotate(-6deg);
}
.bg-gradient-hero {
  background: linear-gradient(135deg, #f05235 0%, #f58234 100%);
}
.bg-blue-soft {
  background: #e6f6fe;
}
.slogan-highlight {
  background: linear-gradient(120deg, #f05235 0%, #f58234 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
/* Menu mobile */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease;
}
.mobile-menu.open {
  max-height: 24rem;
  opacity: 1;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease,
    visibility 1.2s;
  z-index: 1;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(240, 82, 53, 0.55) 0%,
    rgba(245, 130, 52, 0.4) 55%,
    rgba(240, 82, 53, 0.35) 100%
  );
}
/* para imagens de blog */
.blog-img-placeholder {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 2.5rem;
}
.blog-img-placeholder i {
  opacity: 0.7;
}
/* WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.2s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}
/* Mapa */
#mapIframe {
  width: 100%;
  height: 100%;
  min-height: 224px;
  border-radius: 1rem;
}
#mapContainer {
  min-height: 224px;
}
/* Botão download catálogo */
.btn-download {
  background: linear-gradient(135deg, #f05235 0%, #f58234 100%);
  transition: all 0.3s ease;
}
.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -8px rgba(240, 82, 53, 0.4);
}

/* ===== ESTILO DOS AVIÕES ===== */
.airplane-container {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: linear-gradient(135deg, #f05235 0%, #f58234 100%);
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.airplane {
  position: absolute;
  font-size: 2rem;
  animation: flyAirplane linear infinite;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

/* Aviões brancos */
.airplane-white {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.15);
}

/* Aviões escuros */
.airplane-dark {
  color: rgba(0, 0, 0, 0.25);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.airplane i {
  display: inline-block;
  transform: rotate(45deg);
}

/* Variações de tamanho e velocidade */
.airplane-1 {
  font-size: 2.8rem;
  top: 12px;
  animation-duration: 10s;
}
.airplane-2 {
  font-size: 1.8rem;
  top: 35px;
  animation-duration: 14s;
}
.airplane-3 {
  font-size: 2.2rem;
  top: 5px;
  animation-duration: 12s;
}
.airplane-4 {
  font-size: 1.6rem;
  top: 45px;
  animation-duration: 16s;
}
.airplane-5 {
  font-size: 3rem;
  top: 8px;
  animation-duration: 18s;
  opacity: 0.8;
}
.airplane-6 {
  font-size: 2rem;
  top: 42px;
  animation-duration: 13s;
  opacity: 0.7;
}
.airplane-7 {
  font-size: 2.4rem;
  top: 20px;
  animation-duration: 15s;
  opacity: 0.6;
}
.airplane-8 {
  font-size: 1.4rem;
  top: 50px;
  animation-duration: 17s;
  opacity: 0.5;
}

@keyframes flyAirplane {
  0% {
    left: -120px;
  }
  100% {
    left: calc(100% + 120px);
  }
}

/* Rastro dos aviões (estrelinhas) */
.airplane::after {
  content: '✦ ✦ ✦';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.4rem;
  letter-spacing: 5px;
  white-space: nowrap;
  animation: trailFade 1.2s ease-in-out infinite;
}

.airplane-white::after {
  color: rgba(255, 255, 255, 0.2);
}

.airplane-dark::after {
  color: rgba(0, 0, 0, 0.08);
}

@keyframes trailFade {
  0%,
  100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.5;
  }
}
