* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

html, body {
  overflow-x: hidden;
}

body {
    background: #f5f7fb;
    color: #1a1a1a;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* TOP BAR */

.topbar {
    background: #000;
    color: #fff;
    padding: 8px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    font-size: 14px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: white;
    padding: 15px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #2f5fe3;
}

.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #444;
    font-weight: 600;
}

.cta-btn {
    /* background: #2f5fe3; */
    background: linear-gradient(135deg, #0066ff, #00a2ff);
    color: white;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.25);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* NAV */

.navbar {
    background: #ffffffee;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
}

.logo {
    font-size: 26px;
    font-weight: 900;

    float: left;
    max-height: 100px;
    width: auto;
    height: 50px;   
}

.menu a {
    margin-left: 25px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
}

/* HERO */

.banner {
    height: 85vh;
    background: url("img/banner0.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.banner-content {
    position: relative;
    max-width: 900px;
    padding: 20px;
}

.banner h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.banner p {
    font-size: 20px;
    margin-bottom: 50px;
}

.btn {
    background: #f0d800;
    color: #000;
    padding: 16px 28px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

/* TRUST BAR */

.trust {
    background: white;
    padding: 25px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.trust div {
    font-weight: 700;
    color: #0d6efd;
}

/* SECTIONS */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
}

.bottom-margin {
    margin-bottom: 50px;
}

.container2 {
    margin: auto;
    padding: 70px 20px;
    background-color: #fff;
    text-align: center;
}

h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 900;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card h3 {
    margin-bottom: 15px;
}

.projects img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
}

/* GRID DOS PROJETOS */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* CARD PREMIUM */

.project-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.15);
}

/* IMAGEM */

.project-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

/* TEXTO */

.project-content {
    padding: 20px;
}

.project-content h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.project-content p {
    color: #555;
    line-height: 1.5;
}

/* PROCESS */

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    text-align: center;
}

.step {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.step h3 {
    margin-bottom: 10px;
}

/* CARROSSEL PREMIUM */

.carousel{
position:relative;
overflow:hidden;
}

.carousel-track{
display:flex;
gap:20px;
overflow-x:auto;
scroll-behavior:smooth;
padding-bottom:10px;
}

/* Remove scrollbar feia */

.carousel-track::-webkit-scrollbar{
display:none;
}

.carousel img{
min-width:320px;
height:220px;
object-fit:cover;
border-radius:16px;
box-shadow:0 12px 30px rgba(0,0,0,.12);
transition:.3s;
}

.carousel img:hover{
transform:scale(1.05);
box-shadow:0 20px 45px rgba(0,0,0,.18);
}

/* BOTÕES */

.carousel-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:white;
border:none;
width:44px;
height:44px;
border-radius:50%;
font-size:22px;
cursor:pointer;
box-shadow:0 6px 20px rgba(0,0,0,.2);
z-index:10;
}

.prev{ left:10px; }
.next{ right:10px; }

.carousel-btn:hover{
background:#2f5fe3;
color:white;
}

/* ================================= */
/* CARROSSEL DE VÍDEOS — AUTO VAN */
/* ================================= */

.videos-section {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
}

.videos-container {
  max-width: 1200px;
  margin: auto;
}

.videos-section h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.videos-subtitle {
  margin-bottom: 40px;
  color: #64748b;
}

/* ===== CARROSSEL ===== */

.videos-carousel {
  position: relative;
  overflow: hidden;
}

.videos-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.videos-track::-webkit-scrollbar {
  display: none;
}

/* ===== CARD ===== */

.video-card {
  min-width: 360px;
  flex: 0 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

/* ===== VIDEO LOCAL ===== */

.video-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ===== BOTÕES ===== */

.videos-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,.2);
  z-index: 10;
}

.videos-prev { left: -10px; }
.videos-next { right: -10px; }

/* ===== RESPONSIVO ===== */

@media (max-width: 1024px) {

  .video-card {
    min-width: 280px;
  }

}

@media (max-width: 768px) {

  .video-card {
    min-width: 85%;
  }

  .videos-btn {
    display: none; /* swipe é melhor */
  }

}

/* ====== PROVA SOCIAL ====== */

.social {
    background: #0d6efd;
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    color: #000;
}

.testimonial {
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    font-style: italic;
    color: #000;
}

.author {
    margin-top: 12px;
    font-weight: 600;
    font-style: normal;
    color: #000;
}

/* FORM */

.form-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: auto;
}

.form-box button {
    /* background: #16e0b3; */
    /* background: #22c55e; */
    background: linear-gradient(135deg, #0066ff, #00a2ff);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    /* width: 100%; */
    cursor: pointer;
}

form input,
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

form textarea {
    height: 120px;
}

/* ================================= */
/* SECTION INSTAGRAM */
/* ================================= */

.instagram-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fb, #eef2ff);
  text-align: center;
}

.instagram-container {
  max-width: 900px;
  margin: auto;
}

.instagram-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.instagram-section h2 {
  font-size: 34px;
  margin-bottom: 16px;
  color: #0f172a;
}

.instagram-section p {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* BOTÃO */

.instagram-button {
  display: inline-block;
  background: linear-gradient(45deg, #e1306c, #f77737);
  color: #fff;
  padding: 16px 34px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
  transition: all .3s ease;
}

.instagram-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(0,0,0,.25);
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 1024px) {

  .instagram-section h2 {
    font-size: 28px;
  }

}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 768px) {

  .instagram-section {
    padding: 60px 16px;
  }

  .instagram-icon {
    font-size: 48px;
  }

  .instagram-section h2 {
    font-size: 24px;
  }

  .instagram-section p {
    font-size: 16px;
  }

  .instagram-button {
    width: 100%;
    padding: 16px;
    font-size: 17px;
  }

}

/* ================================= */
/* FOOTER ULTRA RESPONSIVO */
/* ================================= */

.footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 60px 24px 30px;
  font-size: 15px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-contact p {
  margin: 6px 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  color: #cbd5e1;
}

.footer-col ul li:hover {
  color: #ffffff;
  cursor: pointer;
}

/* NEWSLETTER */

.footer-newsletter input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
}

.footer-newsletter button {
  width: 100%;
  padding: 12px;
  background: #22c55e;
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-newsletter button:hover {
  background: #16a34a;
}

/* LINHA INFERIOR */

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #1f2937;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: #9ca3af;
}

.footer-links a {
  color: #9ca3af;
  margin-left: 16px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 1024px) {

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 768px) {

  .footer {
    padding: 40px 16px 24px;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 14px;
  }

  .footer-links a {
    margin: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

}

/* MOBILE */

@media (max-width: 768px) {

  footer {
    padding: 32px 16px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  footer h4 {
    margin-bottom: 8px;
  }

  footer p,
  footer li,
  footer a {
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
  }

}

/* WHATSAPP */

.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.whatsapp img {
    width: 36px;
}

/* RESPONSIVO */

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .banner h1 {
        font-size: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* RESPONSIVO MOBILE */
/* ============================= */

@media (max-width: 768px) {

  body {
    font-size: 15px;
  }

  /* Containers */

  .container,
  .wrapper,
  .content {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
  }

  /* ===== TOPBAR ===== */

  .topbar {
    flex-direction: column;
    text-align: center;
    padding: 8px 12px;
    gap: 6px;
  }

  /* ===== HEADER ===== */

  header {
    padding: 12px 16px;
    position: sticky;
    top: 0;
  }

  .header-container {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .logo {
    font-size: 20px;
  }

  .header-button,
  .cta-header {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* ===== SECTIONS ===== */

  section {
    padding: 48px 0;
  }

  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }

  /* ===== CARDS / PROJETOS ===== */

  .projects-grid,
  .cards-grid,
  .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card {
    width: 100%;
  }

  .card img {
    height: auto;
  }

  /* ===== CARROSSEL ===== */

  .carousel-track {
    gap: 12px;
  }

  .carousel-item,
  .video-item {
    min-width: 80%;
  }

  .prev,
  .next {
    display: none; /* opcional: melhor UX no mobile */
  }

  /* ===== FORMULÁRIO ===== */

  form {
    padding: 20px;
  }

  input,
  textarea,
  select,
  button {
    font-size: 16px;
    width: 100%;
  }

  /* ===== FOOTER ===== */

  footer {
    text-align: center;
    padding: 32px 16px;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

}

@media (max-width: 768px) {
  .cta,
  .button,
  .btn {
    width: 100%;
  }
}

/* ============================= */
/* RESPONSIVO TABLET */
/* ============================= */

@media (min-width: 769px) and (max-width: 1024px) {

  .projects-grid,
  .cards-grid,
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-item,
  .video-item {
    min-width: 45%;
  }

  header {
    padding: 16px 24px;
  }

}

body {
  overflow-x: hidden;
}