* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(rgb(26, 22, 22), rgb(0, 0, 0));
    margin: 0px;
    padding: 0px;
    font-family:'Montserrat';
    font-weight: 200;
    color: rgb(212, 204, 198);
    /* max-width: 100vw; */
}

body, div, header, nav, footer, a, ul, li, label, p, h1, h2, h3 {
    margin: 0;
    padding: 0;
}

main {
    max-width: 100vw;
    margin: 0;
}



/* ----------------------- HEADER SECTION ----------------- */

.header {
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    container-type: inline-size;
    container-name: header;
    z-index: 50;
}



/* ------------HEADER - NAV ---------------------------------- */
/* ----------- HEADER - NAV-Toggle ------------------- */
.header__checkbox { /*INPUT Checkbox no visible*/
    display: none;
}

.header__toggle-button { /* LABEL disparador del checkbox - Contenedor logo container img*/
    position: fixed;
    padding: 0px;
    z-index: 20;
    left: 20px;
}

.header__logo-container { /*Logo Container-Div dentro del LABEL*/
    margin: 0;
    padding: 0;
}

.header__logo { /*IMG del logo DMZ design*/
    max-width: 100%;
    width: 50px;
    margin: auto;
    box-shadow: 0 0 0px rgb(255, 255, 255);
    border-radius: 50%;
}

#logo-menu {
    will-change: transform;
    transition: transform 1s ease-out, box-shadow 0.4s, opacity 0.3s;
    z-index: 1000;
}

.header__checkbox:checked ~ .header__nav { /*Cuando el CheckBox Checked entonces el .header__nav*/
    display: flex; /* none; if you want to checked out and in */
    position: fixed;
}

.header__logo:hover {
    box-shadow: 0 0 5px rgb(218, 161, 5), 0 0 15px rgba(218, 161, 5, .9), 0 0 35px rgba(218, 161, 5, 0.7);
}
.header__logo:active {
    box-shadow: 0 0 8px rgb(255, 247, 225);
    opacity: 60%;
}
/* ------------ HEADER - NAV-Toggle ------------ Ends -- */




/* ------------ HEADER - NAV-list --------------------- */
.header__nav {
    display: flex;
    position: fixed;
    height: auto;
    width: auto;
    z-index: 10;
    justify-content: space-between;
    top: 25px;
    right: 50px;
}

.header__nav-list {
    display: flex;
    flex-direction: row;
    height: auto;
    width: auto;
    gap: 20px;
}

.header__nav-item {
    list-style: none;
    }

.header__nav-item a {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgb(214, 214, 214);
    text-decoration: none;
    transition-property: color;
    transition-duration: 0.3s;
}

.header__nav-item a:hover {
    color: rgb(207, 160, 29);
}

.header__nav-item a:active {
    color: rgb(255, 187, 0);
}
/* ------------ HEADER - NAV-list --------------- Ends-- */



/* ------- HEADER QUERIES - NAV -------------- */
@container header (max-width: 700px) {

    .header__nav {
        display: flex;
        flex-direction: column;
        justify-content: center;

        position: fixed;
        top: 0;
        left: 0;

        width: 70vw;
        max-width: 300px;
        height: 100vh;

        z-index: 10;

        background-color: rgba(73, 54, 19, 0.45);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        border-right: 2px solid rgb(121, 86, 21);
        box-shadow: 10px 0 30px rgba(0,0,0,.5);

        /* oculto */
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
            transform .45s ease,
            opacity .35s ease,
            visibility .35s;
    }

    /* MENU ABIERTO */
    .header__checkbox:checked ~ .header__nav {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header__nav-list {
        display: flex;
        flex-direction: column;
        gap: 35px;

        margin: 0;
        padding-left: 50px;
    }

    .header__nav-item {
        list-style: none;

        opacity: 0;
        transform: translateX(-20px);

        transition:
            opacity .35s ease,
            transform .35s ease;
    }

    /* cascada */
    .header__checkbox:checked ~ .header__nav .header__nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .header__nav-item:nth-child(1) {
        transition-delay: .08s;
    }

    .header__nav-item:nth-child(2) {
        transition-delay: .16s;
    }

    .header__nav-item:nth-child(3) {
        transition-delay: .24s;
    }

    .header__nav-item:nth-child(4) {
        transition-delay: .36s;
    }

    .header__nav-item a {
        font-size: 2rem;
        font-weight: 400;
        color: rgb(214, 214, 214);
        text-decoration: none;
    }

    .header__logo {
        width: 60px;
        margin-top: 10px;
    }
}
/* ------- HEADER QUERIES - NAV ------------------- Ends-- */
/* -------------------------- NAV --------------------- Ends-- */


/* -------------------------- HEADER ---------------------- Ends-- */







/* -------------------- Sector CONTACTO Container ------------------------ */
.sector_contacto {
    position: relative;
    background: linear-gradient(rgb(26, 22, 22), rgb(0, 0, 0));
    z-index: 1;
}

/* -------------------- Sector CONTACTO - ABC ------------------------ */
.flexbox1 {
    width: 100%;
    min-height: 800px;
    display: flex;
    flex-flow: row wrap;
    margin: auto;
    position: relative;
}

.itemflex {
    width: 33%;
    height: 33%;
    margin: auto;
    z-index: 20;
}


/* -------------- Sector CONTACTO - A - DATOS ------------- */
.datos {
    background-color: transparent;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}

.email_footer {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 400;
    font-size: 1.8rem;
    text-decoration: none;
    text-align: center;
    color: rgb(172, 157, 146);
    transition-property: text-shadow, color;
    transition-duration: 0.3s;
}
.email_footer:hover {
    color: rgb(230, 199, 176);
    text-shadow: 0px 1px 6px rgb(216, 177, 93);
}
.email_footer:active {
    color: rgb(255, 254, 253);
    text-shadow: 0px 1px 8px rgb(243, 194, 87);
}


.whatsapp_send {
    text-decoration: none;
    color: rgb(172, 157, 146);
}

.whatsapp {
    background-color: transparent;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    text-align: center;
}

.whatsapp_svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    color: rgb(207, 206, 143);
    transition-property: box-shadow, width, height;
    transition-duration: 0.3s;
    border-radius: 50% 50% 50% 0;
}
.whatsapp_svg:hover {
    box-shadow: 0px 0px 15px rgba(170, 139, 71, .8);
    width: 40px;
    height: 40px;
}
.whatsapp_svg:active {
    box-shadow: inset 0px 0px 15px rgba(241, 201, 115, 0.9);
    width: 38px;
    height: 38px;
}

.numerowhatsapp {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 400;
    font-size: 2rem;
    color: rgb(192, 176, 164);
    text-align: justify;
    transition-property: color, text-shadow;
    transition-duration: 0.3s;
}
.numerowhatsapp:hover {
    color: rgb(230, 199, 176);
    text-shadow: 0px 1px 6px rgb(216, 177, 93);
}
.numerowhatsapp:active {
    color: rgb(255, 242, 232);
    text-shadow: 0px 1px 8px rgb(255, 196, 70);
}
/* -------------- Sector CONTACTO - A - DATOS - ENDS --------------- */



/* ---------- Sector CONTACTO - B - FORMULARIO de Contacto -------- */
.consultar_formulario {
    background-color: transparent;
    display: flex;
}

.formulario_container {
    background-color: transparent;
    position: relative;
    z-index: 7;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 20px;
}

.form_consultar {
    background-color: rgb(17, 15, 15);
    padding: 40px 20px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0px 0px 25px rgb(0, 0, 0);
    border-radius: 10px;
    border: 2px solid rgb(112, 82, 0);
    font-size: 30px;
    position: relative;
}

.h2form {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 2.6rem;
    color: rgb(172, 157, 146);
    letter-spacing: 0px;
    text-transform: uppercase;
    text-align: center;
    margin: 0px;
    margin-bottom: 20px;
}

.form_input {
    padding: 10px 20px;
}



input, textarea {
    width: 100%;
    box-sizing: border-box;
    background-color: rgb(28, 27, 25);
    padding: 6px 12px;
    border: 1px solid rgb(112, 82, 0);
    box-shadow: 0px 0px 25px rgb(8, 8, 8); 
    font-family: 'SpecialElite';
    font-weight: 400;
    font-size: 1.2rem;
    color: rgb(180, 162, 148);
    margin-top: 0px;
    transition: background-color .3s;
}

textarea {
    min-width: 100%;
    resize: vertical;
    min-height: 150px;
    max-height: 150px;
    font-size: 1.3rem;
}
textarea:hover {
    background-color: rgb(51, 46, 38);
}
input:hover {
    background-color: rgb(51, 46, 38);
}

label {
    font-family: 'Montserrat';
    font-weight: 200;
    font-size: 1.5rem;
    color: rgb(207, 190, 177);
    transition: color .3s, text-shadow .4s;
}
label:hover {
    color: rgb(230, 199, 176);
    text-shadow: 0px 1px 5px rgb(216, 177, 93);
}

input::placeholder, textarea::placeholder { /* Standard syntax for modern browsers */
    font-family: 'SpecialElite';
    font-weight: 200;
    font-size: 1.3rem;
    color: rgb(97, 87, 67);
}

input:focus, textarea:focus {
    border-color: rgb(224, 174, 35);
    color: rgb(44, 41, 39);
    background: linear-gradient(rgb(145, 130, 120), rgb(134, 122, 114));
}
input:focus-visible, textarea:focus-visible {
    outline: none;
}

.mi-boton {
    width: 100%;
    margin: auto;
    background-color: black;
    padding: 6px 18px;
    border:  1px solid rgb(112, 82, 0);
    box-shadow: 0px 0px 25px rgb(8, 8, 8); 
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 2rem;
    cursor: pointer;
    color: rgb(172, 157, 146);
    border-radius: 4px;
    margin-top: 20px;
    z-index: 0;
    position: relative;
    overflow: hidden;
    transition: color .6s, border 1s, box-shadow .4s;
}

.mi-boton::before {
    content: '';
    background-color: rgb(112, 82, 0);
    height: 700%;
    width: 200%;
    position: absolute;
    z-index: -1;
    bottom: 80%;
    left: 60%;
    transition: bottom 3s, left 1s, color .6s, border 1s, box-shadow .4s, background-color .4s;
    border-radius: 50%;
    box-shadow: 0 0 100px rgb(214, 158, 2);
}


.mi-boton:hover::before {
    bottom: -100%;
    left: -60%;
    transition: bottom .8s, left .6s;
}
.mi-boton:active::before {
    background-color: rgb(170, 116, 0);
    transition-duration: .5s;
}
.mi-boton:hover {
    color: #e6e0e0;
    border:  1px solid rgb(247, 197, 62);
    box-shadow: 0 0 15px rgb(112, 82, 0);
}
.mi-boton:active {
    color: #fff9f1;
    border:  1px solid rgb(255, 216, 107);
    box-shadow: 0 0 15px rgb(201, 150, 12);
}

#respuesta { /* respuesta del servidor si se envio correctamente el email */
    margin-top: 20px;
    font-size: 1.3rem;
    font-family: 'Montserrat';
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    justify-self: center;
    justify-content: center;
    justify-items: center;
    color: rgb(170, 139, 71);
}
/* --------- Sector CONTACTO - B - FORMULARIO de Contacto - ENDS --------- */



/* ----------------- Sector CONTACTO - C - Redes Instagram --------------- */
.redes {
    background-color: transparent;
    display: flex;
    flex-flow: column wrap;
    gap: 30px;
}

.aredes {
    margin: auto;
}

.ig_img {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    box-shadow: 0 0 0px rgb(255, 196, 0);
    transition: box-shadow 0.3s, width .4s, height .4s;
}

.ig_img:hover {
    box-shadow: 0px 0px 10px rgb(112, 82, 0), 0px 0px 25px rgb(128, 116, 108);
}

.ig_img:active {
    box-shadow: 0px 0px 5px rgba(255, 179, 16, .9), 0px 0px 30px rgba(194, 143, 32, .7);
    width: 246px;
    height: 246px;
}
/* -------- Sector CONTACTO - C - Redes Instagram - ENDS ------------ */

/* -------------------- Sector CONTACTO - ABC - Ends ------------------------ */



/* -------------- Footer Footer ------------- */
.footer_footer {
    margin: 0;
    border-top:  1px solid rgb(112, 82, 0);
    max-height: auto;
    padding: 20px;
    background-color: rgb(17, 15, 15);
}

.lugar_footer {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 400;
    font-size: 1.4rem;
    color: rgb(83, 55, 19);
    text-shadow: 0px 1px 1px rgb(141, 121, 79);
    text-align: center;
}
/* --------------Footer Footer ENDS------------- */



/* --------------Footer Media Queries ------------ */
@media screen and (max-width:1350px) {
.flexbox1 {
    flex-flow: column wrap;
}

.itemflex {
    width: 100%;
    height: 100%;
}

.redes {
    flex-flow: row wrap;
    justify-content: space-evenly;
}


.aredes {
    padding-top: 40px;
    padding-bottom: 40px;
}

.datos {
    padding-top: 50px;
    padding-bottom: 50px;
}
}


@media screen and (max-width:1024px) {
.email_footer {
    font-size: 1.8rem;
}
.numerowhassap {
    font-size: 2rem;
}
}
@media screen and (max-width:630px) {
    .form_consultar {
        border-radius: 0px;
}
}


@media screen and (max-width:480px) {
.redes {
    flex-flow: column wrap;
    gap: 0px;
}
.email_footer {
    font-size: 1.6rem;
}
.numerowhassap {
    font-size: 1.8rem;
}
.logo_img {
    width: 250px;
}
.h2form {
    font-size: 2.5rem;
}
}
/* --------------Footer Media Queries ------------ */
/* ------------Footer ENDS------------------ */