* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body { background: #f5f5f5; }

/* ─── HEADER ─────────────────────────────────────────── */
.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 40px;
  background: white;
  border-bottom: 4px solid #244c73;
  position: relative;
}

.nav-left { justify-self: end; display: flex; gap: 15px; font-size: 24px; }
.nav-right { display: flex; gap: 15px; align-items: center; width: 100%; font-size: 24px; }
.logo { text-align: center; }
.logo img { width: 290px; display: block; margin: 0 auto; }
.logo h2 { font-size: 25px; color: #244c73; }

.header a { text-decoration: none; color: #222; font-weight: 500; padding: 10px; display: inline-flex; align-items: center; }
.header a:hover { color: #244c73; }
.header a.login-btn { margin-left: auto; border: 1px solid #244c73; border-radius: 3px; padding: 4px 12px; transition: 0.3s; }
.header a.login-btn:hover { background: #244c73; color: white !important; }

/* ─── HAMBURGER ──────────────────────────────────────── */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; z-index: 1001; }
.hamburger span { display: block; width: 26px; height: 3px; background: #244c73; border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── MOBILE MENU ────────────────────────────────────── */
.mobile-menu { display: none; flex-direction: column; background: white; border-top: 2px solid #244c73; padding: 20px; gap: 5px; position: absolute; top: 100%; left: 0; width: 100%; z-index: 1000; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: #222; font-weight: 500; font-size: 16px; padding: 12px 10px; border-radius: 6px; transition: 0.2s; }
.mobile-menu a:hover { background: #f0f4fa; color: #244c73; }
.mobile-menu .login-btn { margin-top: 10px; border: 1px solid #244c73; border-radius: 3px; text-align: center; padding: 10px; color: #244c73 !important; }
.mobile-menu .login-btn:hover { background: #244c73 !important; color: white !important; }

/* ─── BREAKPOINTS HEADER ─────────────────────────────── */
@media (max-width: 1200px) { .nav-left, .nav-right { font-size: 18px; gap: 8px; } .logo img { width: 220px; } .logo h2 { font-size: 20px; } }
@media (max-width: 900px) { .nav-left, .nav-right { font-size: 14px; gap: 4px; } .logo img { width: 160px; } .logo h2 { font-size: 16px; } .header { padding: 15px 20px; } }
@media (max-width: 700px) {
  .header { grid-template-columns: 1fr auto; padding: 14px 20px; }
  .nav-left, .nav-right { display: none; }
  .logo { grid-column: 1; }
  .logo img { width: 130px; }
  .logo h2 { font-size: 13px; }
  .hamburger { display: flex; grid-column: 2; }
}

/* ─── HERO ───────────────────────────────────────────── */
.hero { height: 50vh; width: 100%; background: url('../../assets/ceupanoramico.jpg') center/cover no-repeat; position: relative; }
.hero h1 { position: absolute; left: 50%; transform: translateX(-50%); bottom: 20px; color: #244c73; font-size: 23px; background: rgba(255,255,255,0.7); padding: 20px; max-width: 670px; width: 90%; text-align: center; opacity: 0; animation: aparecer 1.2s ease forwards; }
@keyframes aparecer { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 700px) { .hero h1 { font-size: 16px; padding: 14px; } }

/* ─── VOO ────────────────────────────────────────────── */
.voo { padding: 60px 80px; }
.voo-titulo { text-align: center; font-size: 40px; color: #244c73; margin-bottom: 50px; }

.voo-intro { display: flex; gap: 30px; align-items: center; margin-bottom: 50px; }
.voo-intro img {width: 50%;height: auto;border-radius: 8px;}
.voo-intro h2 { color: #244c73; margin-bottom: 15px; }
.voo-intro p { font-size: 16px; line-height: 1.7; color: #333; text-align: justify; }

.voo-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 50px; }
.voo-card { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: 0.3s; }
.voo-card:hover { transform: translateY(-5px); }
.voo-card h3 { color: #244c73; margin-bottom: 10px; }

.voo-beneficios { margin: 50px 0; padding: 30px; background: white; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.voo-beneficios h2 { color: #244c73; margin-bottom: 15px; }
.voo-beneficios ul { padding-left: 20px; }
.voo-beneficios li { margin-bottom: 10px; line-height: 1.6; color: #333; }

.voo-cta { text-align: center; background: #244c73; color: white; padding: 40px; border-radius: 10px; transition: 0.3s; }
.voo-cta h2 { margin-bottom: 10px; }
.voo-cta p { margin-bottom: 20px; }
.voo-cta a { background: #fff; color: #244c73; padding: 12px 25px; border-radius: 6px; font-weight: bold; text-decoration: none; display: inline-block; transition: 0.3s; border: 1px solid #244c73; }
.voo-cta a:hover { background: #244c73; color: #fff; border-color: #fff; }
.voo-cta:has(a:hover) { background: white; color: #244c73; }

@media (max-width: 900px) {
  .voo { padding: 40px 30px; }
  .voo-titulo { font-size: 28px; }
  .voo-intro { flex-direction: column; }
  .voo-intro img { width: 100%; height: auto; }
}
@media (max-width: 600px) {
  .voo { padding: 30px 16px; }
  .voo-titulo { font-size: 24px; margin-bottom: 30px; }
  .voo-cta { padding: 30px 20px; }
}

/* ─── FOOTER ─────────────────────────────────────────── */
.linha-mapa { width: 100%; height: 6px; background: #5fa8d3; }
.mapa { width: 100%; }
.mapa iframe { width: 100%; height: 300px; border: none; display: block; }

.footer { background: white; color: #222; padding: 40px 80px; border-top: 2px solid #eee; }
.footer-container { display: flex; justify-content: space-between; gap: 40px; }
.footer-logo img { width: 450px; }
.footer h1 { font-size: 28px; color: #244c73; margin-bottom: 10px; }
.footer p { font-size: 18px; margin-bottom: 8px; }
.footer a { color: #25D366; text-decoration: none; font-weight: bold; }
.footer a:hover { color: #1ebe5d; }

@media (max-width: 900px) {
  .footer { padding: 40px 30px; }
  .footer-container { flex-direction: column; align-items: center; text-align: center; gap: 30px; }
  .footer-logo img { width: 200px; }
  .footer h1 { font-size: 20px; }
  .footer p { font-size: 15px; }
}

/* ─── COPYRIGHT ──────────────────────────────────────── */
.copyright { background: linear-gradient(90deg, #244c73 0%, #4f86c6 40%, #ffffff 100%); padding: 20px 80px; }
.copyright-container { display: flex; align-items: center; justify-content: space-between; }
.copyright-logo img { width: 120px; }
.copyright-texto { flex: 1; text-align: center; font-size: 13px; color: #222; }
@media (max-width: 600px) { .copyright { padding: 20px; background: #244c73; } .copyright-container { flex-direction: column; gap: 10px; text-align: center; } .copyright-texto { color: white; } }