/* TIPOGRAFIAS DE GOOGLE */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

/* REGLAS UNIVERSALES */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "IBM Plex Serif", serif;
}

/* REGLAS DE TIPOGRAFIA */

h1,
h2,
a {
    font-family: "Cinzel", serif;
}

/* REGLAS PARA EL BODY */

body {
    background-image:
        linear-gradient(45deg, #4a4a4a 25%, transparent 25%),
        linear-gradient(-45deg, #4a4a4a 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #4a4a4a 75%),
        linear-gradient(-45deg, transparent 75%, #4a4a4a 75%);

    background-size: 60px 60px;
    background-color: #2a2a2a;
}

/* DIV PARA CENTRAR EL CONTENIDO */

#contenedor {
    width: 1400px;
    min-height: 500px;
    margin: 0 auto;
    background-color: rgb(227, 227, 227, 0.85);
}

/* ESTILO PARA EL HEADER */

header {
    width: 700px;
    height: 120px;
    position: relative;
    float: left;
    border-bottom: 2px solid black;
}

header img {
    width: 80px;
    height: 120px;
    float: left;
    position: absolute;
    left: 40px;
}

header h1 {
    position: absolute;
    top: 35px;
    left: 220px;
}

/* REGLAS PARA EL NAV */

nav {
    width: 700px;
    height: 120px;
    position: relative;
    float: left;
    border-bottom: 2px solid black;
}

nav ul {
    position: absolute;
    top: 35px;
}

nav li {
    list-style: none;
    float: left;
    margin-left: 52px;
    height: 45px;
    padding-top: 12px;
    font-size: 13pt;
    /* color: white; */
}

nav a {
    text-decoration: none;
    color: inherit;
}

/* REGLAS PARA EL MAIN */

main {
    width: 1400px;
    min-height: 500px;
    position: relative;
    clear: left;
    padding-bottom: 40px;
    padding-top: 20px;
}

main img {
    border-radius: 10px;

}

/* REGLAS PARA LAS TARJETAS */

.tarjeta1 {
    width: 1300px;
    min-height: 400px;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 20px;
    margin-left: 50px;
    /* background-color: blue; */
}

.tarjeta1 img {
    width: 600px;
    height: 350px;
    border-radius: 15px;
    margin-top: 15px;
}

.tarjeta1 h2 {
    float: left;
    margin-bottom: 30px;
}

.tarjeta1 p {
    width: 550px;
    float: left;
    clear: left;
    margin-right: 130px;
}

.tarjeta1 h2 {
    float: left;
}



.tarjeta2 {
    width: 1300px;
    min-height: 420px;
    /* background-color: blue; */
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 20px;
    margin-left: 50px;
}

.tarjeta2 p {
    width: 550px;
    float: left;
}

.tarjeta2 img {
    width: 600px;
    height: 350px;
    border-radius: 15px;
    margin-top: 15px;
    float: left;
    margin-right: 100px;
}

.tarjeta3 {
    width: 900px;
    min-height: 400px;
    /* background-color: blue; */
    margin: 0 auto;
}

.tarjeta3 h2 {
    text-align: center;
    margin-bottom: 30px;
}

.tarjeta3 p {
    /* text-align: center; */
    margin-bottom: 50px;
}

.tarjeta3 a {
    display: block;
    text-align: center;
    color: inherit;
}

#final {
    width: 900px;
    height: 450px;
    display: block;
    margin: 0 auto;
}

/* REGLAS PARA EL FOOTER */

footer {
    width: 100%;
    height: 500px;
    /* position: relative; */
    background-color: black;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 300px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer ul {
    /* position: absolute;
    top: 100px;
    left: 600px; */
    position: static;
    margin-bottom: 210px;
    float: left;
    /* margin-right: 300px; */
    margin-top: 80px;
}

footer li {
    list-style: none;
    margin-bottom: 10px;
}

footer p {
    color: white;
    /* position: absolute;
    bottom: 0px;
    left: 700px; */
    clear: left;
    align-items: flex-end;
    text-align: center;
}

#redes {
    /* position: absolute;
    top: 100px;
    left: 1100px; */
    position: static;
    float: left;
    margin-bottom: 210px;
    margin-left: 300px;
}

footer i {
    color: white;
}

#abajo {
    justify-content: center;
}

/* REGLAS PARA EL FORMULARIO*/

#formulario-contenedor {
    width: 700px;
    min-height: 750px;
    margin: 50px auto;
    background-color: rgba(50, 50, 50, 0.92);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
}

#formulario-miembro h2 {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    font-size: 28pt;
}

#formulario-miembro label {
    display: block;
    color: white;
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: 14pt;
}

#formulario-miembro input,
#formulario-miembro select,
#formulario-miembro textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 12pt;
    background-color: rgb(230, 230, 230);
}

#formulario-miembro textarea {
    height: 140px;
    resize: none;
}

#check {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#check input {
    width: 18px;
    height: 18px;
}

#check p {
    color: white;
}

#formulario-miembro button {
    width: 100%;
    height: 60px;
    margin-top: 35px;
    border: none;
    border-radius: 12px;
    background-color: black;
    color: white;
    font-size: 15pt;
    font-family: "Cinzel", serif;
    cursor: pointer;
    transition: 0.3s;
}

#formulario-miembro button:hover {
    background-color: rgb(80, 80, 80);
    transform: scale(1.02);
}

/* REGLAS PARA LOS PRODUCTOS*/

.productos {
    width: 300px;
    height: 500px;
    background-color: gray;
    display: inline-block;
    margin-left: 37px;
    margin-bottom: 60px;
    border-radius: 15px;
    vertical-align: top;
}

.productos img {
    border-radius: inherit;
    width: 300px;
    height: 300px;
}

.productos h2 {
    text-align: center;
    margin-bottom: 15px;
}