
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: black;
  color: white;
  scroll-behavior: smooth;
}

.container {
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.overlay {
  position: relative;
  z-index: 1;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
}

.logo {
  width: 180px;
  margin-bottom: 1rem;
}

.logo.larger-xl {
  width: 260px;
  margin-top: 0.2rem;
}

.overlay .welcome {
  font-size: 2.8rem;
  color: #35DAFC;
  margin-bottom: 0.3rem;
}

.overlay .welcome-sub {
  font-size: 2rem;
  color: #35DAFC;
  margin-bottom: 0.6rem;
}

.overlay .subtitle {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.8rem 0;
  color: #35DAFC;
}

.overlay p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0.6rem 0 1.2rem 0;
  line-height: 1.6;
}

.cta-dual {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.cta {
  background-color: #35DAFC;
  color: black;
  padding: 1rem 2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1rem;
  box-shadow: 0 0 20px #35DAFC;
  transition: background 0.3s ease;
}

.cta:hover {
  background-color: #1bafdb;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
  width: 100%;
}

.icon {
  font-size: 1.8rem;
  color: #fff;
  transition: color 0.3s ease;
}

.icon.instagram:hover { color: #e1306c; }
.icon.facebook:hover { color: #1877f2; }
.icon.whatsapp:hover { color: #25d366; }

.features.updated {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 3rem 1.5rem;
}

.card {
  background-color: rgba(99, 102, 96, 0.25);
  padding: 1.8rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(53,218,252,0.3);
}

.features h2 {
  color: #35DAFC;
  font-size: 1.2rem;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
  padding: 2rem 1rem;
  background-color: #111;
}

footer .map-link {
  color: #35DAFC;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
