:root {
    --green: #62b546;
    --purple: #852a81;
    --orange: #f69121;
    --fucsia: #de204c;
    --black: #000000;
    --text: #222222;
    --white: #ffffff;

    --font-family: "Poppins", sans-serif;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;

    --font-caption: 1.4rem;
    --font-note: 1.6rem;
    --font-base: 2rem;
    --font-subheader: 2.4rem;
    --font-title: 4.8rem;
    --font-headline: 7.2rem;
    --font-display: 9.6rem;
    --font-jumbo: 14.4rem;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-note);
    font-weight: var(--font-regular);
    font-style: normal;
    line-height: normal;
    color: var(--text);
}

.container {
    margin: 0 auto;
    max-width: 120rem;
    width: 90%;
}

.section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section--even {
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}

.section--odd {
    background-color: #ffffff;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3.6rem;
}

img,
video {
    width: 100%;
    border: 0;
    display: block;
}

.title {
    text-align: center;
    font-size: 4.2rem;
    text-transform: uppercase;
}

.title--secundario {
    text-align: left;
    font-size: 3.2rem;
    margin-bottom: 2.4rem;
}

.title--terciario {
    text-align: left;
    font-size: 3.2rem;
}

.title--terciario p {
    margin-bottom: 2.4rem;
}

.subtitle {
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: var(--font-bold);
    color: var(--green);
}

.card__span {
    width: 6rem;
    height: 2px;
    background-color: #f69121;
    display: block;
    margin: auto;
}

/*--- Hero ---*/

.hero {
    position: relative;
    max-height: 75rem;
    min-height: 60rem;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0 0 0 / 35%);
    z-index: 1;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hero__bar {
}

.hero__logo {
    max-width: 20rem;
}

.hero__content {
    text-align: center;
}

.hero__title {
    font-size: clamp(2.4rem, 5vw, var(--font-title));
    color: var(--orange);
}

@media (min-width: 792px) {
    .hero__title {
        background: linear-gradient(
            45deg,
            var(--purple),
            var(--fucsia),
            var(--orange)
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke-width: 0.3px;
        -webkit-text-stroke-color: white;
    }
}

.hero__lead {
    font-size: clamp(1.6rem, 3vw, var(--font-base));
    font-weight: var(--font-light);
    color: white;
    margin-bottom: 3.6rem;
}

.btn {
    display: inline-block;
    background-color: var(--green);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    color: var(--white);
    border-radius: 1rem;
}

.hero__keys {
    background-color: rgba(256 256 256 / 75%);
    display: flex;
    justify-content: space-around;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-radius: 1rem;
}

.hero__item {
    text-align: center;
}

.item__icon span {
    font-size: 3rem;
}

.item__text {
    font-size: 1.4rem;
}

@media (min-width: 768px) {
    .item__icon span {
        font-size: 2.4rem;
    }

    .item__text {
        font-size: 1.6rem;
    }
}

.hero__video {
    width: auto;
    z-index: 0;
}

@media (min-width: 1200px) {
    .hero__video {
        width: 100%;
    }
}

/*--- Tours ---*/

.cards {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: 1;
    gap: 3.6rem;
}

@media (min-width: 768px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12),
        0 3px 1px -2px rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
}

.card__img img {
    border-radius: 1rem 1rem 0 0;
}

.card__content {
    padding: 3rem 2rem;
}

.card__title {
}

.card__subtitle {
    padding-bottom: 2rem;
}

.btn--orange {
    background-color: var(--orange);
}

/*--- Reason ---*/

.razones {
    display: grid;
    grid-template-columns: 1;
    gap: 3.6rem;
}

@media (min-width: 768px) {
    .razones {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .razones {
        grid-template-columns: repeat(3, 1fr);
    }
}

.razon {
    display: flex;
    align-items: flex-start;
}

.razon__icon {
    color: var(--green);
    margin-right: 2rem;
}

.razon__icon span {
    font-size: 4.2rem;
    font-weight: var(--font-light);
}

.razon__text {
    background-color: var(--font-bold);
}

/*--- Testimonios ---*/

.testimonios {
    display: grid;
    grid-template-columns: 1;
    gap: 3.6rem;
}

@media (min-width: 768px) {
    .testimonios {
        grid-template-columns: repeat(2, 1fr);
    }
}

iframe {
    width: 100%;
    height: 45rem;
}

ul {
    list-style: none;
}

ul > li:before {
    content: "\e5ca";
    font-family: "Material Symbols Outlined", sans-serif;
    color: var(--green);
    font-size: 24px;
    font: bold;
}

.testimonio__clave h3 {
    color: var(--green);
    font-size: 2.4rem;
}

.contacto__item a {
    text-decoration: none;
    color: var(--black);
}

.contacto__item a:hover {
    color: var(--green);
}

.contacto {
    display: grid;
    grid-template-columns: 1;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contacto {
        grid-template-columns: 1fr 2fr;
        gap: 3.6rem;
    }
}

.contacto__texto a {
    color: var(--fucsia);
    font-weight: var(--font-bold);
}
