@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/* Reset básico de CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Montserrat, sans-serif;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
}

ul,
ol {
  list-style: disc;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  background-color: #FFA901;
  color: white;
  font-size: 25px;
  padding: 10px 33px;
  border-radius: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 24px;
  display: block;
  margin: 36px auto 0;
}

h1 {
  font-size: 30px;
  margin-bottom: 36px !important;
  margin: auto 48px;
  text-align: center;
}

h2 {
  font-size: 25px;
  font-weight: 700px;
  margin-bottom: 36px !important;
  margin: 0 auto;
  text-align: center;
}


h3 {
  font-size: 23px;
  font-weight: 700;
}

p {
  font-size: 20px;
  font-weight: 400px;
  margin-bottom: 16px;
}

p:last-of-type {
  margin-bottom: 0;
}


/* SECTIONS */

section {
  padding: 80px 20%;
}

.no-padding-section {
  padding: 0;
}

.opportunities-section,
.benefits-section,
.journey-section,
.claim-final-section {
  padding: 80px 10%;
  position: relative;
}

section div {
  text-align: center;
}

.white-bg {
  background-color: white;
  color: #123B8A;
}

.green-bg {
  background-color: #7B9138;
  color: white;
  padding-bottom: 10px;
}

.blue-bg {
  background-color: #123B8A;
  color: white;
  position: relative;
}

.img-bg {
  color: white;
}

.section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* HEADER */

header {
  position: relative;
  background-image: url(./../assets/images/hero-header.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(187, 85, 85, 0.00) 0%, #0E38A3 100%);
  mix-blend-mode: multiply;
}

header .section-container {
  z-index: 2;
  margin-top: 8rem;
}

header .section-container .header-text {
  line-height: 1.5;
  margin-top: 2rem;
}

.header-text button {
  margin-top: 2rem;
}

.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.wave-azul {
  position: relative;
  top: 7px;
}

.header-text {
  color: white;
  font-weight: 700;
  text-align: center;
}

.header-text p {
  font-size: 25px;
  line-height: 1.2;
}

/* FIRST SECTION */

section:first-of-type {
  position: relative;
}

section:first-of-type .rayos {
  position: absolute;
  left: 80px;
  top: 80px;
}

/*SECOND SECTION: OPPORTUNITIES */

.img-bg {
  position: relative;
  background-image: url(./../assets/images/opportunities.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-attachment: fixed
}

.img-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #123B8A80;
}

.opportunities-section .section-container,
.offers {
  z-index: 2;
}

.offers {
  display: grid;
  align-items: center;
  justify-items: center !important;
  align-items: baseline;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 16px;
  color: #0E38A3;
  margin-top: 40px;
  margin-bottom: 80px;
}

.offers button {
  margin: 16px auto;
}

.apply {
  font-size: 20px;
}

.more-info {
  display: flex;
  align-items: center;
  color: #10388D;
  font-size: 15px;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 auto !important;
}

.more-info i {
  position: relative;
  top: 1px;
}

.offer {
  width: 350px;
}

.offer-header {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.80);
  width: auto;
  padding: 24px 0;
  transition: background-color 0.3s;
}

.offer-header .less {
  display: none;
}

.offer-header.opened-dropdown {
  color: white !important;
  background: #10388dcc;
}

.offer-header.opened-dropdown .more-info {
  color: white;
}


.offer-header.opened-dropdown .more-info .more {
  display: none;
}

.offer-header.opened-dropdown .more-info .less {
  display: block;
}


.offer-content {
  display: none;
  background: #10388D;
  border-radius: 10px;
  margin-top: 8px;
  padding: 24px;
  flex: 1;
  overflow: auto;
}

.offer-content p {
  color: white;
  font-size: 16px;
}

/* BENEFITS SECTION */

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.benefits-section>img {
  margin: 32px 0 8px;
}

.benefit {
  flex: 1;
  min-width: 250px;
}

.benefit-icon-open {
  display: none;
}

.benefit-header {
  background: #10388D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  border-radius: 10px !important;
  color: white;
  padding: 16px;
  gap: 16px;
  width: 100%;
  max-height: 80px;
  height: 100%;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.benefit-header.opened-dropdown {
  background-color: #F5F5F5;
  color: #10388D;
}

.benefit-header.benefit-header.opened-dropdown .benefit-icon-open {
  display: flex;
}

.benefit-header.benefit-header.opened-dropdown .benefit-icon {
  display: none;
}

.benefit-header div {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.benefit-header img {
  width: 30px;
}

.benefit-header .blue-arrow {
  display: none;
}

.benefit-content {
  display: none;
  background: #10388D;
  color: white;
  text-align: left;
  padding: 24px;
  font-size: 18px;
  border-radius: 10px;
  margin-top: 8px;
}

.benefit ul {
  padding-left: 32px;
  margin-bottom: 16px;
}


/* JOURNEY SECTION */


.journey {
  display: grid;
  align-items: center;
  justify-items: center !important;
  align-items: baseline;
  grid-template-columns: repeat(6, 1fr);;
  grid-template-rows: 1fr 1fr;
  gap: 80px;
  margin-top: 70px;
  padding-left: 50px;
  grid-template-areas:
    "null step1 step1 step2 step2 null2"
    "step3 step3 step4 step4 step5 step5";
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 260px;
  position: relative;
}


.step-text {
  text-align: left;
  margin-top: 16px;
}

.step1 {
  grid-area: step1;
}

.step1::before {
  content: '1';
  font-size: 100px;
  font-weight: 700;
  position: absolute;
  left: -60px;
  top: 30px;
}

.step2 {
  grid-area: step2;
}

.step2::before {
  content: '2';
  font-size: 100px;
  font-weight: 700;
  position: absolute;
  left: -80px;
  top: 30px;
}

.step3 {
  grid-area: step3;
}

.step3::before {
  content: '3';
  font-size: 100px;
  font-weight: 700;
  position: absolute;
  left: -80px;
  top: 30px;
}

.step4 {
  grid-area: step4;
}

.step4::before {
  content: '4';
  font-size: 100px;
  font-weight: 700;
  position: absolute;
  left: -90px;
  top: 30px;
}

.step5 {
  grid-area: step5;
}

.step5::before {
  content: '5';
  font-size: 100px;
  font-weight: 700;
  position: absolute;
  left: -80px;
  top: 30px;
}

/* .step6 {
  grid-area: step6;
}

.step6::before {
  content: '6';
  font-size: 100px;
  font-weight: 700;
  position: absolute;
  left: -80px;
  top: 30px;
} */


.images-section {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: white;
  position: relative;
}

.image-mask-top {
  width: 33%;
  padding-top: 50px;
}

.image-mask {
  width: 33%;
}

.images-text {
  width: 34%;
}

/* OUR VALUES SECTION */

.blue-bg {
  padding: 70px;
}

.our-values-section {
  padding: 20px 20% 50px;
}


.our-values-section p:last-of-type {
  font-size: 25px;
  font-weight: 700;
  margin-top: 40px;
}

.our-values {
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.value-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  height: 530px;
  position: relative;
  cursor: pointer;
}

.value {
  width: 100%;
  transition: opacity 0.5s ease;
}

.value-hover {
  height: 100%;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.5s ease;

}

.value-container1:hover .value1 {
  opacity: 0;
}

.value-container1:hover .value-hover1 {
  opacity: 1;
}

.value-container2:hover .value2 {
  opacity: 0;
}

.value-container2:hover .value-hover2 {
  opacity: 1;
}

.value-container3:hover .value3 {
  opacity: 0;
}

.value-container3:hover .value-hover3 {
  opacity: 1;
}

.value-container4:hover .value4 {
  opacity: 0;
}

.value-container4:hover .value-hover4 {
  opacity: 1;
}


.value-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}

/* ABOUT US: DROPDOWNS */

.about-dropdowns {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: flex-start;
}

.about-dropdown {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.about-dropdown-header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 24px;
  border-radius: 0 0 10px 10px;
  cursor: pointer;
}

.rayo-mission {
  display: none;
}

.about-dropdown-header.opened-dropdown .rayo-mission {
  display: block;
}

.about-dropdown-content {
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 8px;
  font-size: 20px;
}

.rayo-mission {
  position: absolute;
  left: 40px;
  top: 20px;
  width: 40px;
}

.about-us-header,
.about-us-content {
  background-color: #7B9138;
  color: white;
}

.our-mission-header,
.our-mission-content {
  background-color: #FABA0C;
  color: white;
}

.about-dropdown-content {
  display: none;
  margin-top: 8px;
}

.about-link {
  text-decoration: underline;
}

.footer-img {
  display: flex;
  width: 100%;
}

.footer-img img {
  width: 100%;
}


footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 70px;
  background: #F7F9FC;
}

.footer-legal {
  font-size: 20px;
  color: #123B8A;
  text-align: center;
  font-weight: 500;
}

.footer-legal p:first-of-type {
  margin-bottom: 0;
}

.footer-rrss {
  display: flex;
  align-items: center;
  gap: 16px;
}


.claim-final-section {
  padding: 120px 15%;
}


.claim-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.claim-final p {
  color: #123B8A;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.claim-final button {
  margin: 0;
}


.arrow1 {
  position: absolute;
  left: 70%;
  width: 180px;
}

.arrow2 {
  position: absolute;
  left: 56%;
  top: 16%;
  width: 160px;
}

.arrow3 {
  position: absolute;
  top: 45%;
  left: 21%;

}

.arrow4 {
  position: absolute;
  left: 70%;
  width: 170px;
}

.arrow5 {
  position: absolute;
  left: 70%;
  width: 180px;
}

#scrollToTopButton {
  position: fixed;
  width: 72px;
  height: 72px;
  bottom: 100px;
  right: 40px;
  display: none;
  background-color: #FFA901;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
}

#scrollToTopButton i {
  font-size: 40px;
}

button,
img,
a {
  -webkit-tap-highlight-color: transparent !;
}

.video-section {
  margin-bottom: 100px;
}

iframe {
  display: flex;
  margin: 0 auto;
  border-radius: 16px;
  width: 60%;
  height: 500px;
}