
:root {

  --text-dark: #0c0a09;
  --text-light: #78716c;
  --white: #ffffff;
  --max-width: 1300px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 3rem 1rem;
}


img {
  display: flex;
  width: 100%;
}


html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

.explore__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.explore__image img {
  max-width: 420px;
  margin-inline: auto;
}

.explore__content .section__header {
  color: #54749C;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;

}

.explore__content .section__subheader {
  color: #2B4E88;
}

.explore__content .section__description {
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}

.section__title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #54749C;                 /* color azul que usas en el resto */
  margin-top: 1rem;
  margin-bottom: 1rem;
  position: relative;
}


.banner__container {
  display: grid;
  gap: 1rem;
}

.banner__card {
  padding: 2rem;
  max-width: 1300px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: 0.3s;
}

.banner__card:hover {
  transform: scale(1.05);
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.15);
}

.banner__card .banner__icon {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 5px 11px;
  font-size: 2rem;
  color: var(--white);
  border-radius: 1rem;
}

.banner__card:nth-child(1) .banner__icon {
  background-color: #68A8DB;
  box-shadow: 5px 5px 30px #68A8DBd0;
}

.banner__card:nth-child(2) .banner__icon {
  background-color: #6BAD7A;
  box-shadow: 5px 5px 30px #6BAD7Ad0;
}

.banner__card:nth-child(3) .banner__icon {
  background-color: #2B4E88;
  box-shadow: 5px 5px 30px #2B4E88d0;
}

.banner__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.banner__card p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.75rem;
}


@media (width > 540px) {
  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {

  .explore__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .explore__content .section__header {
    max-width: 500px;
  }

  .banner__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width > 1024px) {

  .banner__container {
    gap: 2rem;
  }
}