/* Reset e Tipografia */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f4f6f9;
  color: #333;
  line-height: 1.6;
}

/* Header com Imagem de Aeroporto Operando */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1542296332-2e4473faf563?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 24, 72, 0.82);
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

/* Logo Cubo Motoboy24h */
.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

.logo-cubo {
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.4));
}

.sub-domain {
  font-size: 0.95rem;
  color: #ffcc00;
  font-weight: bold;
  margin-top: 8px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 2.1rem;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.95;
}

/* Botões com Ação WhatsApp */
.btn-whatsapp {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebd56;
  transform: translateY(-2px);
}

/* Seção Cias Aéreas com SVGs Fiéis */
.airlines {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.airlines h2 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #444;
}

.airline-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 15px;
  width: 200px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.logo-card:hover {
  transform: translateY(-3px);
}

.svg-logo {
  width: 100%;
  height: 100%;
}

/* Tabela de Preços Card Design */
.pricing {
  padding: 50px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #00142e;
}

.cards-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  flex: 1;
  min-width: 290px;
  max-width: 450px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-top: 5px solid #002060;
}

.card h3 {
  color: #002060;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.card .price {
  font-size: 2.2rem;
  font-weight: bold;
  color: #25d366;
  margin-bottom: 15px;
}

.card ul {
  list-style: none;
}

.card li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

/* Formulário de Ação */
.form-section {
  background-color: #fff;
  padding: 40px 25px;
  max-width: 700px;
  margin: 20px auto 60px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-section h2 {
  text-align: center;
  color: #002060;
  margin-bottom: 5px;
}

.form-section p {
  text-align: center;
  margin-bottom: 25px;
  color: #666;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #002060;
}

.btn-submit {
  width: 100%;
  background-color: #25d366;
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #1ebd56;
}

/* Botão Flutuante */
.float-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s;
}

.float-btn:hover {
  transform: scale(1.08);
}

/* Rodapé */
footer {
  background-color: #0f172a;
  color: #cbd5e1;
  text-align: center;
  padding: 35px 20px;
}

.social-links {
  margin-bottom: 20px;
}

.social-links a {
  color: #ffcc00;
  margin: 0 12px;
  text-decoration: none;
  font-size: 1rem;
}

.social-links a:hover {
  text-decoration: underline;
}

.footer-info p {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.footer-info .copy {
  margin-top: 12px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Responsividade */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .cards-container {
    flex-direction: column;
  }
  .logo-card {
    width: 100%;
    max-width: 260px;
  }
}