/* RESET E BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #000;
  line-height: 1.6;
}

header {
  background: #ffffff;
  padding: 20px;
}

.logo {
  height: 80px;
}

header .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav a {
  color: #000;
  margin-left: 20px;
  text-decoration: none;
}

/* HERO SWIPER */
.hero-swiper {
  position: relative;
  height: 500px;
}

.hero-swiper .swiper-slide {
  position: relative;
}

.hero-swiper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 400px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #002366;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.section {
  padding: 60px 20px;
}

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

.card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* WHATSAPP SUPPORT CARD */
.whatsapp-support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f1f1;
  padding: 30px;
  border-radius: 10px;
  flex-wrap: wrap;
}

.whatsapp-info {
  flex: 1;
  min-width: 250px;
}

.whatsapp-info h3 {
  margin-bottom: 10px;
}

.whatsapp-info p {
  margin-bottom: 20px;
}

.whatsapp-button {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.qr-code {
  width: 150px;
  margin-left: 30px;
}

@media (max-width: 768px) {
  /* HERO MOBILE */
  .hero-swiper {
    height: 300px;
  }
  .hero-swiper img {
    height: 300px;
  }
  .slide-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }

  /* WHATSAPP SUPPORT MOBILE */
  .whatsapp-support-card {
    flex-direction: column;
    text-align: center;
  }
  .qr-code {
    margin: 20px 0 0;
  }
  .image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.image-item {
  background: #f9f9f9;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
}

.image-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.image-item h3 {
  margin: 10px 0;
  font-size: 1.1em;
}

}
