* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Fredoka", sans-serif;
  background-color: #f5f5f7 !important;
}

:root {
  --primary-blue: #000e46;
  --secondary-blue: #07346d;
  --third-blue: #008cff;
  --primary-yellow: #fda700;
  --secondary-yellow: #ffd500;
  --third-yellow: #ffed00;
  --background-blue: #e8f9ff;
  --degraded-blue: linear-gradient(
    to right top,
    #e8f9ff,
    #eafaff,
    #ecfaff,
    #eefbff,
    #f0fbff,
    #effbff,
    #edfaff,
    #ecfaff,
    #e7f9ff,
    #e1f7ff,
    #dcf6ff,
    #d6f4ff
  );
  --degraded-background: linear-gradient(
    160deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 65%,
    var(--third-blue) 130%
  );
  --primary-red: #df0000;
  --text: #cfe0ff;
  --maxw: 1280px;
  --page-padding: 0 28px;
}

/* content */
.content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--page-padding);
}

/* button */
button {
  padding: 10px 22px;
  font-size: 1.6rem;
  border-radius: 25px;
  border: none;
  transition: transform 0.2s ease;
}

button:hover {
  transform: scale(1.05);
}

/* menu */
.menu {
  padding-top: 6px;
  padding-bottom: 6px;
  background: var(--primary-blue);
}

.menu nav {
  width: 100%;
  max-width: var(--maxw);
}

.navbar-brand img {
  width: 250px;
}

.menu nav .nav-link {
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu nav .nav-link:hover {
  color: #f5f5f7;
}

.menu nav .nav-link:focus {
  color: var(--secondary-yellow);
}

.menu nav .nav-link:active {
  color: var(--primary-yellow);
}

.menu__dona,
.hero2__dona,
.hero1Button1 {
  color: var(--primary-blue);
  background-color: var(--secondary-yellow);
  box-shadow: 0 8px 20px rgba(252, 175, 11, 0.35);
  font-weight: 600;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.menu__dona:hover,
.hero2__dona:hover .hero1Button1:hover {
  background-color: var(--third-yellow);
  box-shadow: 0 12px 26px rgba(251, 180, 25, 0.35);
}

/* hero */

.hero {
  padding-top: 42px;
  padding-bottom: 42px;
  /* background: var(--degraded-background); */
  background: url(../assets/img/background-hero.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__content {
  max-width: var(--maxw);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero1 span {
  background: rgba(255, 255, 255, 0.12);
  color: var(--secondary-yellow);
  display: inline-block;
  font-family: "Baloo", sans-serif;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  margin-bottom: 16px;
}

.hero1 h1 {
  font-size: 5.4rem;
  color: var(--text);
}

.hero1 img {
  width: 260px;
}

.hero1 p {
  font-size: 1.6rem;
  color: var(--text);
}

.hero1__buttons {
  display: inline-flex;
  gap: 40px;
}

.hero2 {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero2__dona {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
}

.hero2__dona svg {
  flex-shrink: 0;
}

.hero2 h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--text);
  font-size: 1.6rem;
}

.hero2 h2 svg {
  flex-shrink: 0;
}

.hero2__donarOnline iframe {
  height: 460px;
}

.hero1Button2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.3s ease;
}

.hero1Button2 .whatsapp-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero1Button2:hover {
  border: 1px solid var(--secondary-yellow);
  color: var(--secondary-yellow);
}
/*******/
/* medias cabeceras */
/*******/
@media screen and (min-width: 768px) {
  .navbar-brand img {
    width: 330px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 120px;
  

  .hero__content {
    flex-direction: row;
  }

  .hero1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .hero2 {
    margin-top: 0;
    width: 50%;
    display: flex;
    justify-content: center;
  }
  .hero2__donarOnline iframe {
    width: 420px;
  }
}

@media screen and (min-width: 1024px) {
  .hero1 img {
    width: 564px;
  }
}
