@charset "utf-8";
/* CSS Document */ :root {
  --naranja: #daa520;
  --naranja-hover: #e4ba4e;
  --verde: #238b22;
  --gris: #eaeaea;
  --oscuro: #cccccc;
}
body, html {
  position: relative;
  font-family: 'Raleway', Arial, Verdana, "Helvetica LT Std", "sans-serif";
  font-size: 14px;
  margin: 0;
  padding: 0;
}
body.noscroll {
  overflow: hidden;
} 
.logo{
    padding: 0;
    position: relative;
}
.logo img{
width: auto;
  margin: 1em;
  max-height: 100%;
    height: 4em;
}
a, button{
    cursor: pointer;
}
.center{
    text-align: center;
}
.left{
    text-align: left;
}
.right{
    text-align: right;
}
header{
    height: 6rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background-color: #ffffff;
}
main{
    margin-top: 6rem;
    position: relative;
    z-index: 10;
}
h2 {
  text-align: center;
  font-weight: 400;
  font-size: 2em;
  margin:
1em 0 0.5em;
  padding:
0;
}
figure{
    position: relative;
    width: 100%;
    margin: 0;
}
figure img{
    width: 100%;
    position: relative;
    z-index: 1;
    max-height: 460px;
    object-fit: cover;
    object-position: center;
}
figcaption{
    position: absolute;
    top :50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #ffffff;
    font-weight:  bold;
    font-size: 3em;
    text-align: center;
    text-shadow: 0.1em 0.1em 0.2em #000000cc;
}
figcaption small{
    font-size: 0.7em;
}

.social-row {
  text-align: center;
}
.social-row a.social {
  height: 3em;
  width: 3em;
  display: inline-block;
  margin: 0 0.5em;
  background: var(--naranja);
  border-radius: 3em;
  transition: all ease-out 0.15s;
}
.social-row a.social:hover {
  background: var(--naranja-hover);
}

.big-row {
    margin: 1em auto;
  font-size: 1.8em;
  text-align: center;
    padding: 0 2em;
    max-width: 640px;
}
.big{
    font-size: 1.4em;
}
footer{
    margin-top: 3em;
    font-size: 0.8em;
}
.bottom-row{
    background: #eeeeee;
    display: flex;
    padding: 1em 3em;
}
.bottom-row div{
    flex-grow: 1;
    padding: 0 1em;
    display: inline-block;
}

.button{
    background-color: var(--naranja);
    color: #ffffff;
    text-align: center;
    margin: 0 1em;
    font-size: 1.1em;
    font-weight: bold;
    padding: 0 1em;
    line-height: 2em;
    border-radius: 2em;
    border: none;
    display: inline-block;
}
.button:hover{
    background-color: var(--naranja-hover);
}

/*    VENTANAS MODALES: ;*/


.modal {
  display: none;
  position: fixed;
  top: 6rem;
  left: 0;
  height: calc(100% - 6rem);
  width: 100%;
  background-color: #00000066;
  z-index: 10000;
}
.modal.top-modal{
  z-index: 20000;
}
.modal-content {
  position: absolute;
  top: 2em;
  left: 50%;
  display: block;
  height: auto;
  background-color: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
    max-height: 90%;
    transform: translateX(-50%);
    width: 640px;
    max-width: 80%; 
    scrollbar-color: #daa520 #eeeeee;
  scrollbar-width: thin;
}
.modal-header{
    background-color: var(--naranja);
    color: #ffffff;
    position: relative;
    padding: 1em;
}

.modal-header h2 {
  padding: 0;
  height: 2rem;
  line-height: 2rem;
  margin: 0;
  text-align: left;
  font-size: 1.3em;
  font-weight: 400;
}
.modal-body{
    padding: 1em 2em;
}
.modal-footer{
    padding: 0.5em 1em;
    font-size: 0.9em;
    background-color: var(--naranja);
    color: #ffffff;
}
.modal-footer a{
    text-decoration: underline;
    color: inherit;
}
.modal-close {
  border: none;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1em;
  height: 1em;
  line-height: 1em;
  text-align: center;
  font-size: 2.6em;
  background-color: transparent;
  color: #ffffff;
  font-weight: 200;
  font-family: inherit;
  cursor: pointer;
}


/*    FORMULARIOS: */
.form {
  max-width: 460px;
  margin: 0 auto;
  padding: 1em 15%;
}
.form h2 {
  text-align: left;
  font-weight: normal;
  font-size: 1.4em;
}
.form .form-row {
  display: block;
  width: 100%;
  text-align: left;
  margin: 1em auto;
}
.form .form-row div {
  margin: 0.5em 0;
}
form .form-row input {
  background-color: var(--gris);
  display: block;
  width: 100%;
  height: 2em;
  border-radius: 1em;
  border: none;
  outline: none;
  box-sizing: border-box;
  padding: 0 1em;
}
.form-row.form-row-flex {
  display: flex;
}
.label-inline {
  display: inline-block;
  flex-grow: 1;
  text-align: center;
}
.card-logo {
  display: inline-block;
  height: 3em;
  width: 4em;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
}
.card-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
form .form-row input[type="radio"] {
  display: inline-block;
  vertical-align: middle;
  height: 1em;
  width: 1em;
  padding: 0;
  margin-right: 0.5em;
}
input[type="radio"] {
  appearance: none;
  background-color: var(--naranja);
  height: 0.6em;
  width: 0.6em;
  display: inline-block;
}
input[type="radio"]:checked {
  background-color: #000000;
  /* checked state properties */
}



/*    RESPONSIVES    */

@media all and (max-width: 640px){
    .logo{
        text-align: center;
    }
    figcaption{
        font-size: 6vw;
    }
    .button-box{
        display: flex;
        gap: 0.5em;
        justify-content: space-around;
        padding: 0.5em;
    }
    
    .button-box a{
        display: inline-block;
        flex-basis: 50%;
        margin: 0.5em auto;
        flex-grow: 1;
        flex-shrink: 1;
        line-height: normal;
        padding: 1em;
    }
    footer .footer-text{
        display: block;
    }
    .hidable{
        display: none;
    }   
    .form{
        padding: 1em;
    }
    .modal-header{
        height: 4rem;
        line-height: 4rem;
        padding: 0;
    }
    .modal-header h2{
        padding: 0 2rem 0 0.5rem;
        display: inline-block;
        line-height: normal;
        vertical-align: middle;
        height: auto;
        font-size: 1.2em;
    }
}
@media all and (max-width: 460px){
}