:root {
  --blue-dark: #020A47;
  --blue: #0A2A8A;
  --white: #ffffff;
  --gray: #f2f2f2;
  --black-blue: #0A0F1A;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Questrial", sans-serif;
  background: var(--white);
  color: #ffffff;
}

a {
  text-decoration: none;
}

/* HEADER / HERO */
header {
  background: #020A47;
  padding: 80px 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: auto;
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

header h1 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

header p {
  font-size: 18px;
  margin-bottom: 30px;
}

.header-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.header-buttons .btn {
  width: 250px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
}

/* BOTÃO BRANCO */
.header-buttons .btn.primary {
  background-color: #ffffff;
  color: #020A47;
  border: 2px solid #ffffff;
}

/* BOTÃO AZUL */
.header-buttons .btn.secondary {
  background-color: #020A47;
  color: #ffffff;
  border: 2px solid #ffffff; 
}

.header-buttons .btn.secondary:hover {
  background-color: #ffffff;
  color: #020A47;
  border: 2px solid #020A47;
}

.logo-topo {
  max-width: 400px;
  margin-top: -150px;
}

.arabesco {
  position: absolute;
  top: -120px;
  left: -180px;
  width: 800px;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: -30px;
  z-index: 2;
}

.bandeiras {
  max-width: 500px;
  width: 100%;
}

/* BUTTONS */
.btn {
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 6px;
  display: inline-block;
  margin-right: 10px;
  transition: all 0.25s ease;
  text-transform: uppercase;
}

.btn.primary {
  background: var(--white);
  color: var(--blue-dark);
}

.btn.primary:hover {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn.outline {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn.outline:hover {
  background: var(--white);
  color: var(--blue-dark);
}

/* SECTIONS */
section {
  padding: 80px 10%;
  overflow: hidden;
}

section h2 {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* SECTION PORQUE */
#Porque {
  position: relative;
  background: var(--blue-dark);
  padding: 80px 10%;
}

.porque-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID */
#Porque .features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
#Porque .features > div {
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}

/* LINHA ÍCONE + TÍTULO */
#Porque .feature-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

#Porque .feature-head img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

#Porque .feature-head h3 {
  text-transform: uppercase;
  text-align: left;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

/* TEXTO */
#Porque p {
  font-size: 20px;
  line-height: 1.2;
  text-align: left;
  color: #dbe0ff;
  margin: 0;
}

/* ARABESCO */
.arabesco2 {
  position: absolute;
  bottom: -30px;
  right: -260px;
  width: 800px;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

/* CAROUSEL CLIENTES */

.clientes-wrapper {
  padding-top: 60px; /* aumenta o espaço acima do h2 */
}

.carousel {
  background-color: #dbe0ff00;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 30px auto;
}

.carousel-track-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: max-content;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: scroll 60s linear infinite;
}

.carousel:hover .carousel-track {
  animation-play-state: paused;
}

.carousel-slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
}

.carousel-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* BOTÕES */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #020A47;
  border: none;
  font-size: 28px;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* ANIMAÇÃO INFINITA */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .carousel-track {
    gap: 24px;
  }

  .carousel-slide img {
    max-width: 100px;
    max-height: 60px;
  }
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.features h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.features p {
  font-size: 16px;
}

/* PRODUTOS */
.products {
  padding: 80px 10%;
  background: #fff;
}

.products h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 50px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* IMAGEM */
.product-image {
  width: 100%;
  background: #e0e0e0;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.product-image img {
  height: 300px;
  object-fit: contain;
}

/* TÍTULO */
.product-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* TEXTO */
.product-card p {
  font-size: 18px;
  line-height: 1.4;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

/* BOTÃO PRODUTOS */
.product-card .btn {
  background: var(--blue-dark);
  color: #fff;
  padding: 14px 32px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;          /* quadrado */
  display: inline-block;
  transition: all 0.25s ease;
}

/* HOVER */
.product-card .btn:hover {
  background: #0a2cff;       /* azul mais vivo */
  transform: translateY(-2px);
}

/* COMO FUNCIONA */
#como-funciona {
  padding: 10px 10%;
  background: #fff;
}

#como-funciona h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: var(--blue-dark);
}

/* GRID */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-transform: uppercase;
}

/* ITEM */
.step {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* NÚMERO */
.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background: var(--blue-dark);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXTO */
.step p {
  font-size: 20px;
  font-weight: 500;
  color: var(--blue-dark);
  line-height: 1.4;
}

#modelos {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#modelos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTATO */
.contato-section {
  background: var(--blue-dark);
  color: #fff;
  padding: 100px 10%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.contato-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
  z-index: 3;
}

.contato-info {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contato-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
}

/* CONTAINER DO ÍCONE */
.contato-info .icon {
  width: 32px;
  height: 32px;
  min-width: 32px;       /* 🔑 evita deformação */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGEM DO ÍCONE */
.contato-info .icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  z-index: 3;
}

.contato-section h3 {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
  z-index: 3;
}

.horarios p {
  font-size: 18px;
  margin-bottom: 14px;
  line-height: 1.4;
  z-index: 3;
}

.social {
  display: flex;
  gap: 22px;
  margin-top: 40px;
  z-index: 3;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social img {
  width: 42px;        /* tamanho ideal */
  height: 42px;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 3;
}

/* HOVER */
.social a:hover img {
  opacity: 0.50;
}

/* MAPA */
.contato-mapa {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.contato-mapa img {
  max-width: 100%;
  height: auto;
  z-index: 3;
}


/* CATÁLOGO */
.catalogo {
  padding: 80px 10%;
  background: #fff;
}

.catalogo h2 {
  color: var(--blue-dark);
  font-size: 34px;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.catalogo-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 100px;
  align-items: center;
}

.catalogo-img {
  background: #f2f2f2;
  padding: 40px;
  display: flex;
  justify-content: center;
}

.catalogo-img img {
  max-height: 420px;
  object-fit: contain;
}

.catalogo-info h3 {
  color: var(--blue-dark);
  font-size: 26px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.formatos {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.formatos span {
  border: 1px solid var(--blue-dark);
  padding: 6px 12px;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.catalogo-info p {
  color: var(--blue-dark);
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.catalogo-info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.catalogo-info li {
  position: relative;
  padding-left: 20px;
  color: var(--blue-dark);
  font-size: 15px;
  margin-bottom: 8px;
}

.catalogo-info li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-dark);   /* cor da bolinha */
  font-size: 15px;
  line-height: 1;
}

/* BOTÃO AZUL NO CATÁLOGO */
.catalogo .btn.primary {
  background: var(--blue-dark);
  color: #fff;
  border: none;
}

.catalogo .btn.primary:hover {
  background: #0a2cff; /* azul mais vivo */
  transform: translateY(-2px);
}
