* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0b1620;
  color: #ffffff;
}

/* HERO */
.hero {
  position: relative;
  height: 95vh;
  overflow: hidden;
}

.logo {
  position: absolute;
  top: 30px;
  left: 40px;
  z-index: 10;
}

.logo img {
  height: 45px;
}

.slides, .slide {
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  padding: 10%;
  background-color: rgba(0,0,0,0.6);
  background-blend-mode: overlay;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #bfeee6;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #1bb3a7, #2c8fd6);
  padding: 15px 35px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.btn-secondary {
  display: inline-block;
  margin-top: 15px;
  color: #1bb3a7;
  font-weight: bold;
  text-decoration: none;
}

.microcopy {
  display: block;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #cde5ef;
}

/* TRUST */
.trust {
  display: flex;
  justify-content: space-around;
  padding: 40px 10%;
  background: #122534;
}

/* WHO */
.who {
  padding: 80px 10%;
}

.who h2 {
  margin-bottom: 30px;
}

.who ul li {
  margin-bottom: 10px;
}

.highlight {
  margin-top: 25px;
  color: #5fd3c6;
}

/* VISAS */
.visas {
  background: #0e1f2c;
  padding: 80px 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.visa-card {
  background: #122534;
  padding: 30px;
  border-radius: 15px;
}

.visa-card h3 {
  color: #5fd3c6;
  margin-bottom: 15px;
}

/* EMOTIONAL */
.emotional {
  padding: 80px 10%;
  text-align: center;
}

/* FINAL CTA */
.final-cta {
  padding: 80px 10%;
  text-align: center;
  background: linear-gradient(135deg, #0f2c3c, #0b1f2b);
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.whatsapp img {
  width: 32px;
}
