* {
  scroll-behavior: smooth;
}

/* ================= HERO ================= */
section {
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
}

.md-hero {
  height: 100vh;
  width: 100%;
  position: relative;
  background: #00135E;
  background: linear-gradient(212deg, rgba(0, 19, 94, 1) 46%, rgba(58, 114, 246, 1) 82%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
  color: white;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.2s both;
}


.hero-subtitle {
  font-size: 1.3rem;
  max-width: 600px;
  opacity: 0.9;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease 0.4s both;
}

.md-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
}

.md-hero-overlay img {
  opacity: .3;
}


/* ================= SECTIONS ================= */
.md-section {
  padding: 100px 4%;
}

.md-title {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 60px;
  position: relative;
}

.md-title::after {
  content: '';
  width: 140px;
  height: 2px;
  background: #000;
  display: inline-block;
  margin-left: 20px;
}

/* ================= PRESIDENTE ================= */
.md-presidente {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: #2e2e2e;
  color: #fff;
  margin-bottom: 80px;
}

.md-presidente-img {
  background: #2E2E2E;
  background: linear-gradient(212deg, rgba(46, 46, 46, 1) 69%, rgba(58, 114, 246, 1) 100%);
  min-height: 320px;
}

.md-presidente-img img {
  width: 100%;
  height: 100%;
  padding: 5%;
  object-fit: cover;
}

.md-presidente-info {
  padding: 40px;
}

.md-cargo {
  font-size: .85rem;
  opacity: .8;
}

.md-presidente-text p {
  margin-top: 15px;
  font-size: .9rem;
  line-height: 1.6;
}

/* ================= GRID ================= */
.md-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}

.md-grid-small {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.md-card {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 14px;
  min-height: 160px;
}

.md-card-img {
  width: 80px;
  height: 80px;
  background: #3A72F6;
  background: radial-gradient(circle, rgba(58, 114, 246, 1) 22%, rgba(9, 0, 185, 1) 71%);
  border-radius: 10px;
  margin-bottom: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.md-card h4 {
  font-size: .9rem;
  margin-bottom: 8px;
}

.md-badge {
  background: #0a0fb3;
  color: #fff;
  font-size: .7rem;
  padding: 4px 10px;
  border-radius: 20px;
}

.md-card-active {
  background: #c9dbff;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

  /* HERO */
  .md-hero-content {
    padding-left: 6%;
  }

  .md-hero h1 {
    font-size: 3rem;
  }

  .md-hero-scroll {
    right: 30px;
    bottom: 30px;
  }

  /* PRESIDENTE */
  .md-presidente {
    grid-template-columns: 1fr;
  }

  .md-presidente-img {
    min-height: 280px;
  }

  .md-presidente-info {
    padding: 30px;
  }

  /* TITULOS */
  .md-title {
    font-size: 2rem;
  }

  .md-title::after {
    width: 100px;
  }

  .md-hero-overlay img {
    height: 34rem;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* HERO */
  .md-hero {
    height: 85vh;
  }

  .md-hero-overlay img {
    height: 28rem;
  }

  .md-hero-content {
    padding: 0 6%;
    align-items: center;
    text-align: center;
  }

  .md-hero-line {
    margin: 20px auto 0;
  }

  .md-hero-scroll {
    right: 50%;
    transform: translateX(50%);
  }

  /* SECTIONS */
  .md-section {
    padding: 70px 6%;
  }

  /* PRESIDENTE */
  .md-presidente-img {
    min-height: 240px;
  }

  .md-presidente-info h3 {
    font-size: 1.4rem;
  }

  /* GRID */
  .md-grid {
    gap: 20px;
  }

  .md-card {
    padding: 18px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .md-hero h1 {
    font-size: 2.2rem;
  }

  .md-title {
    font-size: 1.6rem;
  }

  .md-title::after {
    display: none;
  }

  .md-presidente-info {
    padding: 25px 20px;
  }

  .md-presidente-text p {
    font-size: .85rem;
  }

  .md-card-img {
    width: 70px;
    height: 70px;
  }
}