  /* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f5f7fb;
  color: #1a1a1a;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  background: #2563eb;
  color: #fff;
  font-weight: bold;
  padding: 12px 16px;
  border-radius: 8px;
}

.logo small {
  display: block;
  font-size: 12px;
  color: #666;
}

.menu a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-green {
  background: #22c55e;   /* cor de fundo */
  color: #fff;           /* cor do texto */
  font-size: 20px;       /* aumenta o tamanho da fonte */
  padding: 18px 40px;    /* aumenta altura e largura do botão */
  border-radius: 8px;    /* mantém os cantos arredondados */
  font-weight: 600;      /* peso da fonte */
  display: inline-block; /* garante que padding funcione corretamente */
  text-decoration: none; /* remove sublinhado se for link */
  transition: transform 0.25s ease, box-shadow 0.25s ease; /* animação */
}


.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #020617, #0f172a, #1e3a8a);
  color: #fff;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

.badge {
  display: inline-block;
  background: rgba(37,99,235,0.2);
  color: #60a5fa;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.1;
}

.hero h1 strong {
  color: #60a5fa;
}

.hero p {
  margin: 20px 0;
  color: #cbd5f5;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* ===== LOGO CIRCLE ===== */
.hero-logo {
  display: flex;
  justify-content: center;
}

.circle {
  width: 600px !important;   /* largura do círculo */
  height: 300px !important;  /* altura do círculo */
  border-radius: 50%;
}
  


.circle span {
  font-size: 64px;
  font-weight: bold;
}

.circle small {
  letter-spacing: 2px;
  margin-top: 5px;
}

/* ===== CATEGORIES ===== */
.categories {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.categories h2 {
  font-size: 36px;
}

.categories p {
  margin: 10px 0 40px;
  color: #666;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  padding: 30px;
  border-radius: 16px;
  background: #f9fafb;
  text-align: left;
}

.card h3 {
  margin-bottom: 10px;
}

.card.blue { border-left: 6px solid #2563eb; }
.card.red { border-left: 6px solid #ef4444; }
.card.orange { border-left: 6px solid #f59e0b; }
.card.purple { border-left: 6px solid #7c3aed; }
.card.green  { border-left: 6px solid #22c55e; }
.card.teal   { border-left: 6px solid #14b8a6; }
.card.indigo { border-left: 6px solid #4338ca; }
.card.pink   { border-left: 6px solid #ec4899; }

/* ===== STORE PHOTOS ===== */
.store-photos {
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
}

.store-photos h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.store-photos p {
  color: #64748b;
  margin-bottom: 40px;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.photo-box {
  height: 220px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform .2s ease;
}

.photo-box:hover {
  transform: translateY(-6px);
}

/* ===== BRANDS ===== */
.brands {
  padding: 90px 0;
  background: #f8fafc;
  text-align: center;
}

.brands h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.brands p {
  color: #64748b;
  margin-bottom: 45px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  align-items: center;
}

.brand-box {
  height: 110px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.brand-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: 80px 0;
  background: #f7f9fc;
}

.why-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #0a1f44;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.why-item {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.why-item h4 {
  color: #0a1f44;
  margin-bottom: 10px;
}

.why-item p {
  color: #555;
  font-size: 0.95rem;
}

.mt {
  margin-top: 40px;
}

.public-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.public-card {
  background: #0a1f44;
  color: #fff;
  text-align: center;
  padding: 18px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(10,31,68,0.25);
}

/* ===== SOCIAL ===== */
.social {
  background: #0f172a;
  padding: 70px 0;
}

.social-white {
  padding: 90px 0;
  background: #ffffff;
}

.social-card {
  background: #f8fafc;
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

.social-badge {
  display: inline-block;
  background: #eef2ff;
  color: #4f46e5;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.social-info h2 {
  font-size: 34px;
  color: #0f172a;
}

.social-info p {
  margin-top: 12px;
  max-width: 480px;
  color: #475569;
  line-height: 1.6;
}

.instagram-cta {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  padding: 18px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 15px 35px rgba(131,58,180,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.instagram-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(131,58,180,0.45);
}

/* ===== CONTATO / VISITE-NOS ===== */
.contact-section {
  background: linear-gradient(135deg, #020617, #0b1220);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  background: rgba(255,255,255,0.03);
  padding: 45px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  color: #ffffff; /* todo texto branco */
}

.contact-info h2 {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 35px;
  position: relative;
}

.contact-info h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #2563eb;
  display: block;
  margin-top: 12px;
  border-radius: 99px;
}

.contact-info p,
.contact-info strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  border-radius: 22px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.45);
  border: 2px solid rgba(255,255,255,0.05);
}

/* ===== RODAPÉ ===== */
.footer {
  background: #020617;
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer p {
  color: #94a3b8;
  font-size: 14px;
}

/* ===== ORBITA ===== */
.orbit {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.satellite {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #60a5fa;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(96,165,250,0.9);
}

.s1 { animation: orbit1 6s linear infinite; }
.s2 { animation: orbit2 8s linear infinite; }
.s3 { animation: orbit3 10s linear infinite; }
.s4 { animation: orbit4 12s linear infinite; }
.s5 { animation: orbit5 14s linear infinite; }
.s6 { animation: orbit6 16s linear infinite; }

@keyframes orbit1 { from {transform: rotate(0deg) translateX(150px) rotate(0deg);} to {transform: rotate(360deg) translateX(150px) rotate(-360deg);} }
@keyframes orbit2 { from {transform: rotate(120deg) translateX(130px) rotate(0deg);} to {transform: rotate(480deg) translateX(130px) rotate(-360deg);} }
@keyframes orbit3 { from {transform: rotate(240deg) translateX(110px) rotate(0deg);} to {transform: rotate(600deg) translateX(110px) rotate(-360deg);} }
@keyframes orbit4 { from {transform: rotate(60deg) translateX(170px) rotate(0deg);} to {transform: rotate(420deg) translateX(170px) rotate(-360deg);} }
@keyframes orbit5 { from {transform: rotate(180deg) translateX(190px) rotate(0deg);} to {transform: rotate(540deg) translateX(190px) rotate(-360deg);} }
@keyframes orbit6 { from {transform: rotate(300deg) translateX(210px) rotate(0deg);} to {transform: rotate(660deg) translateX(210px) rotate(-360deg);} }

.glow {
  box-shadow: 0 0 30px rgba(37,99,235,0.7), 0 0 60px rgba(37,99,235,0.6), inset 0 0 25px rgba(255,255,255,0.15);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 35px 25px;
  }

  .contact-info h2 {
    font-size: 32px;
  }

  .contact-map iframe {
    height: 300px;
  }
}
.social-info p {
  margin-top: 10px;
  font-size: 16px;
  color: #475569;
  line-height: 1.5;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.card:hover h3 {
  color: #2563eb; /* ou a cor do card correspondente */
}
/* Animação de pulse */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.7);
  }
}

/* Aplica a animação no botão */
.btn-green {
  animation: pulse 2s infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-green:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(34,197,94,0.9);
}
  /* Texto da social-info */
.social-info p {
  margin-top: 10px;
  font-size: 16px;
  color: #475569;
  line-height: 1.5;
}

/* Botão Instagram com pulse */
@keyframes pulse-instagram {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(131,58,180,0.7); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(131,58,180,0.7); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(131,58,180,0.7); }
}

.instagram-cta {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  padding: 18px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 15px 35px rgba(131,58,180,0.35);
  animation: pulse-instagram 2.5s infinite;
  transition: transform .25s ease, box-shadow .25s ease;
}

.instagram-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 25px 50px rgba(131,58,180,0.45);
}
.footer {
  background: #020617;
  padding: 25px 0;
  text-align: center;
  color: #94a3b8; /* cinza claro */
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
}
/* ===== LOGOS DAS MARCAS (IMAGENS) ===== */
.brand-box img {
  max-width: 80%;       /* Limita a largura dentro da caixa */
  max-height: 80px;     /* Limita a altura para manter proporção */
  object-fit: contain;  /* Mantém proporção sem distorcer */
  display: block;       /* Remove espaçamento extra */
  margin: auto;         /* Centraliza a imagem */
  transition: transform 0.3s ease;
}

.brand-box img:hover {
  transform: scale(1.05); /* Leve zoom ao passar o mouse */
}
.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: center;
}

.photo-box {
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, #2563eb, #1e3a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* importante para cortar a imagem dentro do círculo */
}

/* Logo dentro do círculo */
.circle img {
  width: 340px;       /* tamanho do logo */
  height: auto;       /* mantém proporção */
  object-fit: contain; /* não distorce */
  display: block;
}

/* Se quiser a logo fora do círculo, no topo do hero */
.hero-logo-img {
  width: 180px;       /* ajuste para um tamanho visual agradável */
  height: auto;
  display: block;
  margin: auto;       /* centraliza horizontalmente */
}

.header-logo-2 {
  display: flex;
  align-items: center;
  justify-content: center; /* centraliza a logo */
}

.header-logo-2 img {
  width: 120px;   /* tamanho da logo */
  height: auto;   /* mantém proporção */
  display: block;
}

/* ===== BANNER VEÍCULOS ===== */
.vehicle-banner {
  background: #ffffff; /* fundo branco */
  padding: 60px 0;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1); /* leve sombra para destaque */
  margin: 40px 0;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.banner-text h2 {
  font-size: 36px;
  color: #0a1f44;
  margin-bottom: 20px;
}

.banner-text p {
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
}

.banner-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  display: block;
  margin: auto;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .banner-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .banner-image {
    margin-top: 25px;
  }
}
