* {
    font-family: "Fira Sans Condensed", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: Arial, sans-serif;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(143, 155, 177);
    height: 10vh;
    padding: 0 1em;
    position: sticky;
    top: 0;
    z-index: 10;
    overflow: hidden;

}

.fixed-size {
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#logo {
    max-height: 100%;
    max-width: auto;
    height: auto;
}

.flexible-size {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.navHeader {
    box-sizing: border-box;

    .ulHeader {
        list-style: none;

        .listaItem {

            align-items: first baseline;
            justify-content: baseline;
            display: inline-flex;
            background-color: #6200EA;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            margin: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }

        .linkHeader {
            text-decoration: none;
            color: #ffffff;
        }
    }

}

.main {
    background-image: url("../assets/img/fondo.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: auto;
    padding-bottom: 50px;

    .principal {
        height: auto;
        padding-top: 100px;
        text-align: center;

        h1 {
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif, cursive;
            font-size: 3em;
            color: #000000;
            text-align: center;
            text-shadow: 2px 2px 4px rgb(255, 255, 255);
            text-shadow: -1px -1px 0 #ffffff,
                1px -1px 0 #ffffff,
                -1px 1px 0 #ffffff,
                1px 1px 0 #ffffff;
            margin-top: 50px;
        }

        .contenedorTextoPrincipal {
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif, cursive;
            margin: 0 auto;
            text-align: center;
            width: 50%;
            font-size: 10px;
            color: rgb(255, 255, 255);
            text-shadow: -1px -1px 0 #000000,
                1px -1px 0 #000000,
                -1px 1px 0 #000000,
                1px 1px 0 #000000;


            p {
                margin-top: 75px;
                font-size: 3em;
                padding: 20px 20px;
            }

            a {
                display: inline-block;
                text-decoration: none;
                color: brown;
                font-size: 2.5em;
            }
        }

    }

    .sectionGaleria {
        font-family: "Fira Sans Condensed", sans-serif;
        margin-top: 200px;

        box-sizing: border-box;
        display: flex;

        color: rgb(0, 0, 0);
        flex-wrap: wrap;
        text-align: center;
        font-size: 40px;
        justify-content: space-evenly;
        gap: 50px;

        .divImg {
            background-color: rgb(255, 255, 255);
            border: 3px solid gray;
            width: 500px;
            height: 800px;

            img {
                width: 100%;
                height: 80%;
                object-fit: cover;
            }
        }

        .boton-bonito {
            background-color: #6200EA;
            color: #FFFFFF;
            padding: 12px 24px;
            border: none;
            border-radius: 50px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        }

        .boton-bonito:hover {
            background-color: #3700B3;
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
            transform: scale(1.05);
        }

        .boton-bonito:active {
            background-color: #30009C;
            box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.1);
            transform: scale(0.95);
        }
    }

    #sectionApi {
        padding-top: 100px;
        text-align: center;
        h2{
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif, cursive;
            margin: 0 auto;
            margin-bottom: 75px;
            width: 50%;
            font-size: 30px;
            color: rgb(255, 255, 255);
            text-shadow: -1px -1px 0 #000000,
                1px -1px 0 #000000,
                -1px 1px 0 #000000,
                1px 1px 0 #000000;

        }
        .buttonApi {
            background-color: #6200EA;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            margin: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        }

        .buttonApi:hover {
            background-color: #3700B3;
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
            transform: scale(1.05);
        }

        .buttonApi:active {
            background-color: #30009C;
            box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
            transform: scale(0.95);
        }

        .user {
            display: grid;
            background-color: #fff;
            margin: 20px auto;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 2px 3px 8px rgb(248, 32, 32);
            max-width: 400px;
            text-align: left;
        }
    }
}

.footer {
    background-color: lightgray;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 40px;

    .navFooter {

        left: 50%;
        margin: auto;
        max-height: 10vh;

        .ulFooter {
            list-style: none;
            max-height: 10vh;
            font-size: 1.5vw;

            .listaItem {
                margin-right: 0px;
                margin-bottom: 5px;
                padding-left: 2em;
                padding-right: 2em;
                background-color: #6200EA;
                color: #fff;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                cursor: pointer;

            }

            .linkHeader {
                padding: 0px;
                display: inline-block;
                margin-top: 0px;
                text-decoration: none;
                color: rgb(255, 255, 255);
                font-size: 1rem;
            }
        }

    }

    ul {
        list-style: none;

        .fa-instagram,
        .fa-facebook,
        .fa-x-twitter {
            font-size: 3em;
            color: black;
        }
    }

    .fa-whatsapp {
        font-size: 5em;
        color: rgb(59, 150, 86);
        position: fixed;
        bottom: 15px;
        right: 15px;
    }

    body {
        font-family: Arial, sans-serif;
    }

    .form-group {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .form-group label {
        flex: 0 0 150px;
        margin-right: 10px;
    }

    .form-group input,
    .form-group textarea {
        flex: 1;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .form-group textarea {
        resize: vertical;
    }

    button {
        background-color: #4CAF50;
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 4px;
        cursor: pointer;

    }

    button:hover {
        background-color: #45a049;
    }

    p {
        font-size: 1em;
    }
}