* {
  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 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;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}

.header a.login-btn:hover {
  background: #244c73;
  border-color: #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/aviaoinicio.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; }
}

/* ─── MAIN CONTENT ───────────────────────────────────── */
.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-section {
  margin-bottom: 30px;
}

.header-section h1 {
  font-size: 18px;
  color: #244c73;
  font-weight: bold;
  margin-bottom: 15px;
}

.header-section p {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.5;
  text-align: justify;
}

.header-section p.intro-text {
  font-size: 15px;
  color: #244c73;
  font-weight: 600;
  margin-bottom: 18px;
}

.header-section p.subtitle {
  margin-top: 20px;
  margin-bottom: 15px;
  color: #244c73;
}

.bullet-list {
  margin-left: 20px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.bullet-list li {
  margin-bottom: 8px;
}

/* ─── MANUFACTURER ───────────────────────────────────── */
.manufacturer-section {
  margin-bottom: 25px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  overflow: hidden;
}

.manufacturer-title {
  background-color: #f0f0f0;
  padding: 12px 15px;
  font-size: 13px;
  font-weight: bold;
  color: #244c73;
  margin: 0;
  text-transform: uppercase;
  border-bottom: 1px solid #d0d0d0;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  padding: 0;
}

.model-box {
  padding: 15px;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 13px;
  color: #333;
  line-height: 1.4;
}

.model-box:last-child {
  border-right: none;
}

.models-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.models-column {
  border-right: 1px solid #e0e0e0;
}

.models-column:last-child {
  border-right: none;
}

.models-column .model-box {
  border-right: none;
  border-bottom: none;
  padding: 15px;
  font-size: 13px;
  color: #333;
  font-weight: 500;
}

@media (max-width: 600px) {
  .models-table { grid-template-columns: 1fr; }
  .models-column { border-right: none; border-bottom: 1px solid #e0e0e0; }
  .models-column:last-child { border-bottom: none; }
}

/* ─── CAROUSEL ───────────────────────────────────────── */
.carousel-section {
  margin-top: 40px;
  padding: 20px;
  border: 2px solid #244c73;
  border-radius: 8px;
  background: #f9f9f9;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
}

.carousel-wrapper {
  flex: 1;
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .carousel-wrapper { height: 220px; }
  .carousel-section { padding: 12px; }
}

.carousel-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-img.active { opacity: 1; }

.carousel-btn {
  background-color: #244c73;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  flex-shrink: 0;
}

.carousel-btn:hover { background-color: #1a3651; transform: scale(1.1); }
.carousel-btn:active { transform: scale(0.95); }

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: 0.3s;
}

.indicator.active { background-color: #244c73; }
.indicator:hover  { background-color: #a0a0a0; }

/* ─── FOOTER ─────────────────────────────────────────── */
.linha-mapa {
  width: 100%;
  height: 6px;
  background: #5fa8d3;
}

.mapa { width: 100%; margin: 0; }

.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;
  align-items: flex-start;
  gap: 40px;
}

.footer-logo img { width: 450px; }

.footer-contato,
.footer-atendimento { max-width: 300px; }

.footer h1 { font-size: 28px; color: #244c73; margin-bottom: 10px; }
.footer p  { font-size: 18px; margin-bottom: 8px; line-height: 1.4; color: #222; }
.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;
  border-top: 1px solid #eee;
}

.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; }
}