* {
    box-sizing: border-box;
}

html {
}

body {
    margin: 0;
    background-color: #fff;
    /*font-family: Gotham, serif;*/
    font-family: Verdana, serif;
    font-size: 16px;
    /*line-height: 1.1em;*/
}

a {
    color: #000;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

a:visited,
a:active {
}

input[type=submit],
button {
    cursor: pointer;
}

.boton {
    background: #000 url('../img/flecha-der.png') 100% 50% no-repeat;
    background-position: right 10px center;
    background-size: 8px 21px;
    color: #fff;
    padding: 18px 40px 18px 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    min-width: 230px;
    border-width: 0;
    text-align: left;
    cursor: pointer;
}

.boton:hover {
    text-decoration: none;
}

.centrado {
    text-align: center;
}

h2 {
    font-size: 46px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.91;
    letter-spacing: normal;
    text-align: center;
    color: #000;
}

ul.tarjetas {
    display: inline-block;
    margin: auto;
    padding: 0;
    list-style-type: none;
    text-align: center;
}

ul.tarjetas li {
    display: inline-block;
    width: 300px;
    margin: 20px 10px;
    background-color: #fff;
}

ul.tarjetas li .tarjeta {
    padding: 7px;
    margin-bottom: 20px;

    border-radius: 18px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    box-shadow: 0 2px 6px 0 #9a9a9a;
    -webkit-box-shadow: 0 2px 6px 0 #9a9a9a;
    -moz-box-shadow: 0 2px 6px 0 #9a9a9a;
}

ul.tarjetas li img {
    width: 100%;
}

ul.tarjetas li p {
    font-size: 14px;
    line-height: 18px;
}

ul.tarjetas li strong {
    font-family: Helvetica, serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 26px;
}

.wrapper {

}

.wrapper header {
    background-color: #000;
    height: 127px;
    display: flex;
    align-items: center;
    padding: 0 50px;
    justify-content: left;
}

.wrapper header h1 {
    padding: 0;
    margin: 0;
}

.wrapper header h1 a {
    display: block;
    width: 192px;
    height: 61px;
    background: transparent url('../img/logo.png') 50% 50% no-repeat;
    background-size: cover;
    text-indent: -9999px;
}

.wrapper section {
    min-height: 700px;
    background-color: #fff;
    padding: 74px 0;
}

body.landing-index .wrapper section,
body.landing-codigo .wrapper section {
    padding: 0;
}

.wrapper footer {
    background-color: #000;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.wrapper footer ul {
}

.wrapper footer ul li {
    display: inline-block;
    margin: 0;
}

.wrapper footer ul a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}

.wrapper footer ul a:hover {
    text-decoration: underline;
}

/** Home */
.home {
    height: 750px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.home .access-wrapper {
    flex: 1 0 50%;
    background-color: #ffdc00;
    color: #000;
    position: relative;
    font-size: 18px;
}

.home .access-wrapper .access {
    width: 415px;
    position: absolute;
    right: 60px;
    top: 50%;
    font-weight: 500;
    font-size: 20px;

    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

.home .access-wrapper .access p {
    margin: 25px 0;
}

.home .access-wrapper .access h2 {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 45px;
    margin: 0;
    line-height: 1em;
    text-align: left;
}

.home .access-wrapper .access form label {
    display: block;
}

.home .access-wrapper .access form label span {
    display: none;
}

.home .access-wrapper .access form label input[type=text] {
    border: 0;
    background-color: transparent;
    border-bottom: 2px solid #000;
    display: block;
    width: 100%;
    font-size: 25px;
    margin-top: 30px;
    text-transform: uppercase;
    padding: 8px 20px;
}

.home .access-wrapper .slogan {
    position: absolute;
    bottom: 30px;
    right: 60px;
}

.home .bg {
    flex: 0 0 50%;
    background: transparent url('../img/bg-home.png') 100% 0 no-repeat;
    background-size: cover;
}

/** Opciones */
.opciones {
    text-align: center;
}

.opciones p {
    font-size: 20px;
    font-weight: 500;
}

/** Tarjeta */
.tarjeta {
    max-width: 860px;
    margin: auto;
}

.tarjeta img.img-tarjeta {
    width: 350px;
    margin: auto;
    display: block;
}

.tarjeta .info {
    font-size: 20px;
}

/** Form */
form {
    text-align: center;
}

form label {
    display: block;
    margin: 14px;
}

form label span {
    display: none;
}

form label textarea,
form label input[type=text] {
    border: 1px solid #000;
    padding: 13px;
    width: 100%;
    font-size: 20px;
}

form label textarea {
    height: 180px;
}

form .label-2 {
    display: flex;
}

form .label-2 label {
    flex: 1 0 auto;
}

/** Fin */
body.landing-fin {
    text-align: center;
}

/** Contacto */
body.landing-contacto .wrapper-boton {
    margin-top: 50px;
}

/** Modals */
.modal {
    /*display: flex;*/
    background-color: rgba(0, 0, 0, .57);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    display: none;
}

.modal .modal-content {
    width: 700px;
    min-height: 250px;
    background-color: #fff;
    padding: 50px 20px 20px 20px;
    position: relative;
}

.modal .modal-content h2 {
    margin: 5px 10px 20px 10px;
    text-transform: uppercase;
}

.modal .modal-content p {
    font-size: 20px;
}

.modal .modal-content .acciones {
    text-align: center;
    margin: 40px 0;
}

.modal .modal-content .close {
    width: 30px;
    height: 30px;
    background: transparent url('../img/modal-close.png') 50% 50% no-repeat;
    background-size: cover;
    position: absolute;
    right: 15px;
    top: 15px;
    text-indent: -9999px;
    display: inline-block;
}

.modal.modal-aviso .modal-content {
    text-align: center;
}

.modal#modal-codigo .modal-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.modal#modal-codigo .modal-content .info {
    flex: 0 1 50%;
}

.modal#modal-codigo .modal-content .img {
    flex: 0 1 50%;
    text-align: right;
    margin-right: 50px;
}

.modal#modal-codigo .modal-content .img img {
    height: 400px;
}

.modal#modal-aviso-cookies .modal-content h2 {
    font-size: 30px;
}

.modal#modal-aviso-cookies .modal-content p {
    font-size: 16px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #000;
    font-weight: 500;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #000;
    font-weight: 500;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #000;
    font-weight: 500;
}

:-moz-placeholder { /* Firefox 18- */
    color: #000;
    font-weight: 500;
}
