/***********************************/
/**                               **/
/**   PAGINA WEB DISEÑADA POR:    **/
/**   https://github.com/german   **/
/**                               **/
/***********************************/

:root {
      /* PALETA DE COLORES */
      --amarillo-guarico: #F6DC00;
      --dark-blue: #475179;
      --cyan: #168695;
      --blanco: #EBEEF1;
      --carbon: #191919;
      --gris: #717B7E;
}

* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;      
}

html {
      font-size: 62.5%;
      font-family: 'Lato', sans-serif;
      background-color: var(--blanco);      
}

a {
      text-decoration: none;
}

/* a:hover {
      text-decoration: underline;
} */

/********************/
/**     HEADER     **/
/********************/

.main-nav {     
      background-color: var(--dark-blue);
}

.logo-menu {
      width: 100%;
      max-width: 300px;
}

.main-menu {
      list-style: none;
      display: flex;
      flex-direction: column;
      align-items: center; 
}

.main-menu__item {
      padding: 1em;
}

.main-menu__link{      
      color: var(--blanco);
      text-transform: uppercase;      
      text-decoration: none;
      font-size: 4rem;
      font-weight: 700;
}


/***********************************/
/**                               **/
/**             MAIN              **/
/**                               **/
/***********************************/

.contenedor__cards {
      width: 100%;
}

.card {
      background-color: var(--blanco);
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      margin-bottom: 20px;
}

.card__thumbnail {
      width: 100%;
      height: 100%;
      max-width: 475px;
      display: inline-block;
}

.card__img {
      width: 100%;
}

.card__titulo {
      text-align: center;
      margin-top: 10px;
      font-size: 4rem;
      font-weight: 900;
      text-transform: uppercase;
}

.card__enlace {
      color: var(--dark-blue);

}

/***********************************/
/**                               **/
/**      BANNER E INFO CARD       **/
/**                               **/
/***********************************/

.contenedor__banner {
      width: 100%;
}

.banner__img {
      width: 100%;
}

.contenedor__principal-info-form {
      width: auto;
      height: auto;
      display: flex;
      flex-direction: column;
}

.contenedor__informacion-de-paquete {
      width: 100%;
      max-width: 475px;
      background-color: var(--blanco);
      color: var(--cyan);
      font-size: 1.8rem;
      line-height: 3rem;
      text-align: center;
      margin: 0 auto;
}

.info__title {
      margin-top: 3.2rem;
      color: var(--dark-blue);
      font-weight: 900;
}

.info__fecha {
      margin-top: 1.6rem;
}

.info__incluye {
      margin-top: 1.6rem;
      color: var(--gris);
}

.info__descripcion {
      display: flex;
      margin-top: 1.6rem;
}

.info__asset {
      width: 4rem;
      color: var(--gris);
      align-self: center;
      padding: 0.8rem;
}

.info__descripcion-partida {
      width: auto;
      padding: 0.8rem;
      text-align: left;
}

.info__precio-persona {
      margin-top: 1.6rem;
}
.info__precio {
      margin-top: 1.6rem;
      margin-bottom: 3.2rem;
      font-size: 4rem;
      font-weight: 900;
      
      -webkit-text-stroke: 2px var(--cyan);
      -webkit-text-fill-color: var(--amarillo-guarico);
}


/* .info__precio {
      font-size: 3rem;
      font-weight: 900;
      -webkit-text-fill-color: var(--amarillo-guarico);
      -webkit-text-stroke: 1px var(--cyan);
} */


/***********************************/
/**                               **/
/**    FORMULARIO DE CONTACTO     **/
/**                               **/
/***********************************/


.contenedor__certificado {
      display: flex;
      width:70%;
      font-size: 4rem;
      color: var(--dark-blue);
      font-weight: normal;
      text-transform: uppercase;
      margin: 1.6rem auto;
      text-align: center;   
      justify-content: center;
}

.contenedor__certificado img {
      width: 100%;
      margin-top: 3.2rem;
}

 .form {
      display: flex;
      background-color: var(--blanco);
      width: 90%;
      height: auto;
      max-width: 475px;
      min-height: 100%;
      padding: 3.5em 1.5em;
      margin: auto;
}

.form--promociones {
      background-color: var(--dark-blue);
      width: 100%;
}

.form__container {
      width: 100%;
      display: grid;
      gap: 4rem;
      grid-auto-columns: 100%;
}

.form__title {
      text-align: center;
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--dark-blue);
      text-transform: uppercase;
}

.form__input {      
      font-family: inherit;
      font-size: 3rem;
      padding: 0.8em 1em;
      outline: none;
      border: none;
      border-radius: 10px;
      /* border: 1px solid #bbb0b0; */
}

.form__input--message {
      resize: none;
      padding: 0.8em 1em;
      margin-bottom: 0.5em;
}

.form__cta {
      font-family: inherit;
      font-size: 4rem;
      background-color: var(--amarillo-guarico);
      color: var(--cyan);
      border: none;
      font-weight: 900;
      padding: .5em 0;
      border-radius: 50px;
      cursor: pointer;
}

/* FIN DEL FORMULARIO */


.contenedor__principal-terminos-y-condiciones p {
      padding: 1rem;
      font-size: 1.2rem;
      text-align: justify;
      color: var(--gris);
      font-weight: bold;
      margin-top: 2rem;
}

.contenedor__principal-terminos-y-condiciones p span {     
      color: var(--carbon);
}
.contenedor__principal-terminos-y-condiciones p .span__red {     
      color: red;
}

/**  FOOTER **/


footer {
      display: flex;
      width: 100%;
      height: 50px;
      background-color: var(--carbon);
      font-size: 1.2rem;
}

footer section {
      display: flex;
      width: 100%;
      color: var(--blanco);
      justify-content: center;
      align-items: center;      
}
