/* Estilos para el fondo negro y letras blancas */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    max-width: 100%;
    font-family: Oswald, sans-serif;
}


html {
    scroll-behavior: smooth
}

body,
html {
    background-color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Oswald, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff
}

h1 {
    font-size: 40px;
    line-height: 1.3
}

h2 {
    font-size: 32px;
    line-height: 1.5
}

h3 {
    font-size: 28px;
    line-height: 1.5
}

h4 {
    font-size: 22px;
    line-height: 1.7
}

h5 {
    font-size: 18px;
    line-height: 1.7
}

h6 {
    font-size: 14px;
    line-height: 1.3
}

a,
button,
input,
textarea {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

ol,
ul {
    list-style: none
}

a {
    text-decoration: none
}

a,
button,
input,
textarea {
    background: 0 0;
    color: inherit;
    font-family: inherit;
    border: none;
    cursor: pointer
}

textarea {
    resize: none
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    /* Ocultar la barra de desplazamiento */
}

.modal-content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000000;
    /* Cambiado a negro */
    padding: 20px;
    border-radius: 5px;
    width: 50%;
    /* Altura máxima del modal */
    overflow: hidden;
    /* Habilitar el desplazamiento interno si el contenido es demasiado largo */
    height: 100%;
    max-height: 75vh; /* Ajusta según sea necesario para evitar que el modal sea demasiado grande */
    overflow-y: hidden;
}

.close {
    color: #9f5e5e;
    /* Cambiado a negro */
    font-size:50px;
    font-weight: bold;
    position: absolute;
    top: 0px;
    right: 30px;
    cursor: pointer;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Ajustes para el formulario vertical */
#formularioContainer {
    text-align: left;
}

#registroForm {
    max-width: 400px;
    margin: 0 auto;
    /* Centrar el formulario */
    margin-top: 20px;
}

#formularioContainer h2,
#formularioContainer p,
#registroForm label {
    color: #ffffff !important;
    /* Cambiado a negro */
    margin-bottom: 5px;
    /* Espacio inferior para separar los labels */
    display: block;
    /* Mostrar en líneas separadas */
}

#registroForm label {
    font-weight: bold;
    /* Hacer que el texto de la etiqueta sea negrita */
}

#registroForm input,
#registroForm select {
    padding: 10px;
    margin-bottom: 15px;
    color: #000;
    /* Cambiado a negro */
    border: 1px solid #000;
    /* Cambiado a negro */
    border-radius: 0.25rem;
    width: 100%;
    /* Ancho completo */
    box-sizing: border-box;
    /* Considerar el borde en el ancho total */
}

#registroForm input[type="submit"] {
    background-color: #000;
    /* Cambiado a negro */
    color: #fff;
    /* Cambiado a blanco */
    border: none;
    padding: 15px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

#registroForm input[type="submit"]:hover {
    background-color: #333;
    /* Cambiado a un tono de gris más oscuro */
}

#formularioContainer {
    background-color: #000;
    /* Fondo negro */
    color: #fff;
    /* Texto blanco */
    padding: 20px;
    /* Espaciado interno */
    border-radius: 10px;
    /* Bordes redondeados */
}

#formularioContainer label {
    margin-top: 10px;
    /* Espaciado superior para las etiquetas */
    display: block;
}

#formularioContainer select {
    width: 100%;
    /* Ocupar todo el ancho disponible */
    padding: 10px;
    /* Espaciado interno */
    margin-bottom: 15px;
    /* Espaciado inferior */
    border: 1px solid #fff;
    /* Borde blanco */
    border-radius: 5px;
    /* Bordes redondeados */
    background-color: rgba(255, 255, 255, 0.1);
    /* Fondo semitransparente blanco */
    color: #fff;
    /* Texto blanco */
}

#formularioContainer input[type="date"] {
    width: 50%;
    /* Ocupar todo el ancho disponible */
    padding: 10px;
    /* Espaciado interno */
    margin-bottom: 15px;
    /* Espaciado inferior */
    border: 1px solid #fff;
    /* Borde blanco */
    border-radius: 5px;
    /* Bordes redondeados */
    background-color: rgba(255, 255, 255, 0.1);
    /* Fondo semitransparente blanco */
    color: #fff;
    /* Texto blanco */
}

#formularioContainer select {
    /* Otros estilos para el dropdown */
    background-color: rgba(255, 255, 255, 0.1);
    /* Fondo semitransparente blanco */
    color: #fff;
    /* Texto blanco */
}

#formularioContainer select option {
    background-color: #333;
    /* Fondo oscuro para las opciones del dropdown */
    color: #fff;
    /* Texto blanco para las opciones del dropdown */
}

/* Estilos específicos para dispositivos móviles */
@media (max-width: 767px) {
    .modal-content {
        position: absolute;
        transform: translate(-50%, -50%);
        background-color: #000000;
        /* Cambiado a negro */
        padding: 5px;
        border-radius: 5px;
        width: 100%;
        /* Altura máxima del modal */
        overflow: hidden;
        /* Habilitar el desplazamiento interno si el contenido es demasiado largo */
        height: 100%;
        max-height: 75vh; /* Ajusta según sea necesario para evitar que el modal sea demasiado grande */
        overflow-y: hidden;
    }
}  

body {
    font-family: Oswald, sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: #bebebe;
    overflow-x: hidden;
	background-color: #1f2029;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

a {
    cursor: pointer;
    transition: all 200ms linear;
}

a:hover {
    text-decoration: none;
}

.link {
    color: #c4c3ca;
}

.link:hover {
    color: #ffeba7;
}

p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.7;
    color: white;
}

h4 {
    font-weight: 600;
    color: white;
}

h6 span {
    padding: 0 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
}

.section {
    width: 100%;
    display: block;
}

.full-height {
    min-height: 100vh;
}

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.checkbox:checked+label,
.checkbox:not(:checked)+label {
    position: relative;
    display: block;
    text-align: center;
    width: 60px;
    height: 16px;
    border-radius: 8px;
    padding: 0;
    margin: 10px auto;
    cursor: pointer;
    background-color: #e6e6e6;
}

.checkbox:checked+label:before,
.checkbox:not(:checked)+label:before {
    position: absolute;
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #ffeba7;
    background-color: #a2780b;
    font-family: 'unicons';
    content: '\eb4f';
    z-index: 20;
    top: -10px;
    left: -10px;
    line-height: 36px;
    text-align: center;
    font-size: 24px;
    transition: all 0.5s ease;
    content: ''; /* Mantén el contenido vacío para que no aparezca ningún texto */
    background-image: url('https://cdn.icon-icons.com/icons2/1875/PNG/512/arrowtopleft_120121.png');
    background-size: cover; /* O ajusta según tus preferencias */
}

.checkbox:checked+label:before {
    transform: translateX(44px) rotate(-270deg);
}


.card-3d-wrap {
    position: relative;
    width: 440px;
    max-width: 100%;
    height: 400px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    perspective: 800px;
    margin-top: 60px;
}

.card-3d-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: all 600ms ease-out;
}

.card-front,
.card-back {
    width: 100%;
    height: 100%;
    background-color: #2a2b38;
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat.svg');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 300%;
    position: absolute;
    border-radius: 6px;
    left: 0;
    top: 0;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

.card-back {
    transform: rotateY(180deg);
}

.checkbox:checked~.card-3d-wrap .card-3d-wrapper {
    transform: rotateY(180deg);
}

.center-wrap {
    position: absolute;
    width: 100%;
    padding: 0 100px;
    top: 50%;
    left: 0;
    transform: translate3d(0, -50%, 35px) perspective(100px);
    z-index: 20;
    display: block;
}

.form-group {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}

.form-style {
    padding: 13px 20px;
    padding-left: 20px;
    height: 48px;
    width: 100%;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.5px;
    outline: none;
    color: #c4c3ca;
    background-color: #1f2029;
    border: none;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    box-shadow: 0 4px 8px 0 rgba(21, 21, 21, .2);
}

.form-style:focus,
.form-style:active {
    border: none;
    outline: none;
    box-shadow: 0 4px 8px 0 rgba(21, 21, 21, .2);
}

.input-icon {
    position: absolute;
    top: 0;
    left: 18px;
    height: 48px;
    font-size: 24px;
    line-height: 48px;
    text-align: left;
    color: #ffeba7;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.form-group input:-ms-input-placeholder {
    color: #c4c3ca;
    opacity: 0.7;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-family: Oswald, sans-serif;
}

.form-group input::-moz-placeholder {
    color: #c4c3ca;
    opacity: 0.7;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-family: Oswald, sans-serif;
}

.form-group input:-moz-placeholder {
    color: #c4c3ca;
    opacity: 0.7;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-family: Oswald, sans-serif;
}

.form-group input::-webkit-input-placeholder {
    color: #c4c3ca;
    opacity: 0.7;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-family: Oswald, sans-serif;
}

.form-group input:focus:-ms-input-placeholder {
    opacity: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-family: Oswald, sans-serif;
}

.form-group input:focus::-moz-placeholder {
    opacity: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-family: Oswald, sans-serif;
}

.form-group input:focus:-moz-placeholder {
    opacity: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-family: Oswald, sans-serif;
}

.form-group input:focus::-webkit-input-placeholder {
    opacity: 0;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    font-family: Oswald, sans-serif;
}

.button {
    border-radius: 4px;
    height: 44px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    padding: 0 30px;
    letter-spacing: 1px;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    text-align: center;
    border: none;
    background-color: #ab8000;
    color: #fff;
    box-shadow: 0 8px 24px 0 rgba(255, 235, 167, .2);
    font-family: Oswald, sans-serif;
}

.button:active,
.button:focus {
    background-color: transparent;
    color: #ab8000;
    box-shadow: 0 8px 24px 0 rgba(16, 39, 112, .2);
}

.button:hover {
    background-color: transparent;
    color: #ab8000;
    box-shadow: 0 8px 24px 0 rgba(16, 39, 112, .2);
    border-color: #ab8000;
    border: solid;
}

.logo {
    position: absolute;
    top: 30px;
    right: 30px;
    display: block;
    z-index: 100;
    transition: all 250ms linear;
}

.logo img {
    height: 26px;
    width: auto;
    display: block;
}

/* icono del titulo */
.bi-arrow-right {
    color: #ab8000; /* Cambia el color según tus preferencias */
    font-size: 24px; /* Tamaño del icono, ajusta según sea necesario */
    /* Otros estilos, si es necesario */
}

/* Adaptacion mobile */

/* Estilos generales del modal */
.card-3d-wrap {
    width: 100%;
}

/* Estilos específicos para dispositivos móviles */
@media (max-width: 767px) {
    .section {
        padding: 5px;
    }

    .card-3d-wrap {
        width: 100%;
        max-width: 400px; /* Ajusta según tus preferencias */
        margin: 0 auto;
    }

    .card-front,
    .card-back {
        width: 100%;
    }

    .form-group {
        width: 100%;
    }

    .button {
        width: 100%;
    }

    .center-wrap {
        top: 50%;
        padding:0 5px;
    }
}