:root {
  --padding-horizontal-section: 15%;
  --padding-vertical-section: 70px;
  --font-size-general: 18px;
}


body,
p {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  padding: 24px;
  display: inline-block;
  font-weight: 400;
  width: 400px;
  font-size: 28px;
  border-radius: 0 0 30px 0;
  position: relative;
  margin: 48px 0;
  margin-top: 150px;
  position: relative;
}

h1::before {
  content: '';
  width: 30px;
  height: 30px;
  background-color: #00afd2;
  position: absolute;
  top: -30px;
  left: -30px;
  border-radius: 10px 0 0 0;
}

h1 span {
  display: block;
  font-size: 22px;
  margin-top: 36px;
}

h2 {
  font-size: 30px;
  color: #002c58;
  line-height: 1.5;
  text-align: center;
}

h3 {
  font-size: 20px;
}

p {
  color: #002c58;
  font-size: var(--font-size-general);
  line-height: 1.4;
}

a {
  text-decoration: none;
}

header {
  display: flex;
  flex-direction: column;
  background-image: url(../assets/img/img-header.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 90vh;
  justify-content: center;
  position: relative;
}

header div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: var(--padding-horizontal-section);
}

header img {
  width: 270px;
  position: absolute;
  top: 100px;
}

section {
  padding: var(--padding-vertical-section) var(--padding-horizontal-section);
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  padding-left: 0;
}

.btn {
  color: white;
  padding: 8px 24px;
  font-size: 24px;
  border-radius: 4px;
}

.green-btn {
  background-color: #a9c451;
}

.blue-btn {
  background-color: #00afd2;
}

.dark-blue-btn {
  background-color: #002c58;
  color: white;
}

.dark-blue-bg {
  background-color: #002c58;
  color: white;
}

.light-blue-bg {
  background-color: #00afd2;
  color: white !important;
}

.blue-grey-bg {
  background-color: #96C8D1;
  color: white;
}

.dark-blue-text {
  color: #002c58;
}

.white-text {
  color: white;
}

.text-align-center {
  text-align: center;
}

.text-align-left {
  text-align: left;
}

.bg-img-section-1 {
  background-image: url(../assets/img/bloque-5-img-fondo.jpg);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-left: 10%;
  padding-right: 10%;
}

.bg-img-section-2 {
  background-image: url(../assets/img/img-bloque-7-bg.jpg);
}

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

.centered-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* IMG SECTION STYLES */

.img-section {
  display: flex;
  text-align: left;
}

.img-section>div {
  flex: 1;
  width: 50%;
  max-width: 50%;
  position: relative;
}

.img-section__img-container {
  padding-right: var(--padding-horizontal-section);
  position: relative;
  right: 40px;
}

.img-section__img-container.img-movil {
  display: none;
}


.img-section__img-container div {
  position: relative;
  width: 100%;
  height: 100%;
}

.img-section__img-container div::before {
  content: '';
  width: 30px;
  height: 30px;
  background-color: #a9c451;
  position: absolute;
  top: -30px;
  right: -30px;
  border-radius: 0 20px 0 0;
}

.img-section img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.second-img-section img {
  object-fit: contain;
}

.img-section div:first-of-type {
  border-top-right-radius: 30px;
}

.img-section__text-container {
  padding: 30px 36px 60px var(--padding-horizontal-section);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.destinos-container {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 45px;
  max-width: 1000px;
}

.destino {
  color: #00afd2;
  background-color: white;
  width: 200px;
  border-top-right-radius: 20px;
  padding: 36px;
  position: relative;
  font-size: 18px;
}

.destino::before {
  content: '';
  position: absolute;
  background-image: url(../assets/img/Linea-bloque.svg);
  background-repeat: no-repeat;
  z-index: 2;
  width: 100%;
  height: 2px;
  bottom: 15px;
  left: -20px;
}

.beneficios-container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 36px;
  max-width: 1000px;
}

.beneficio {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  color: #002c58;
  text-align: center;
}

.beneficio p {
  font-size: 18px;
}

.beneficio img {
  width: 100px;
}



/* Block with round corners  */

.coordenadas-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn.green-btn.button-futuro {
  margin: 0 auto;
  margin-top: 40px;
}

.block-round-corner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  border-top-right-radius: 40px;
  width: 250px;
  padding: 40px;
}

.block-round-corner h3 {
  margin-top: 0;
}


.text-item-round-corner {
  font-size: 18px;
}


/* VIDEO STYLES */

.video {
  width: 700px;
  height: 393px;
}

.first-video {
  margin-top: 48px;
}

/* CAROUSEL STYLES */

.carousel-section {
  position: relative;
}

.carousel-container {
  display: flex;
  align-items: center;
  overflow: hidden;

}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.prev-btn {
  left: 15%;
}

.next-btn {
  right: 15%;
}


.carousel-item {
  display: flex;
  width: 100%;
  flex: 1 0 100%;
  justify-content: center;
}

.carousel-text-container {
  background-color: #002c58;
  padding: 36px;
  border-radius: 30px 0 0 0;
  max-width: 600px;
  flex: 1;
  width: calc(100% - 250px);
  z-index: 2;
}

.carousel-text-container p {
  color: white;
}

.carousel-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 24px;
}

.carousel-text {
  font-size: 18px;
}

.email {
  color: #002c58;
  text-decoration: underline;
}


footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;

}

.rrss-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  height: 40px;
}

.rrss-container a {
  width: 22px;
  height: 50px;
  color: white;
}


footer img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.image-facebook {
  width: 12px;
}

.space {
  margin: 20px 0;
}