/* --- Definición de los estilos generales  */
*
    {
    box-sizing: border-box;
    }

html
    {
    scroll-behavior: smooth;
    }

body
    {
    margin: 0;
    font-family: Roboto, sans-serif;
    }

h1
    {
    font-size: 3em;
    }

h2
    {
    font-size: 2.5em;
    }

h3
    {
    font-size: 2em;
    }

p
    {
    font-size: 1em;
    }

ul
    {
    list-style: none;
    }

li
    {
    font-size: 1.2em;
    }

button
    {
    font-size: 1em;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    background-color: #554E90;
    color: #FFFFFF;
    transition: all .3s ease;
    }

button:hover
    {
    background-color: #2C1385;
    }

/* --- Definición de los estilos para móvil */    

.pantalla
    {
    width: 95%;
    max-width: 640px;
    border-radius: 10px;
    opacity: 85%;
    user-select: none;
    }
    
.container
    {
    max-width: 1600px;
    margin: auto;
    }

.colorAcento
    {
    color: #554E90;
    }

header
    {
    background-color: #000000;
    height: 47px;
    z-index: 10;
    }

header .letrero
    {
    margin: 7px;
    padding: 10px;
    height: 30px;
    width: 158px;
    background-image: url("../images/letreroMIXPRO.png");
    background-position: center center;
    background-size: cover;
    }

header .container
    {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    }

#burgerMenu
    {
    margin: 8px 20px;
    opacity: .8;
    transition: all .3s linear;
    }

#burgerMenu:hover
    {
    opacity: 1;
    }

#menu
    {
    z-index: 10;
    display: none;
    position: fixed;
    top: 50px;
    right: 20px;
    background-color: rgba(30, 30, 30, .7);
    padding: 5px;
    border-radius: 10px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, .5);
    transition: all .3s linear;
    }

#menu nav
    {
    display: flex;
    flex-direction: column;
    text-align: right;
    padding-bottom: 0px;
    transition: all .3s linear;
    }

#menu a
    {
    font-size: 1em;
    padding: 10px 12px;
    text-decoration: none;
    font-weight: bold;
    color: #FFFFFF;
    transition: all .2s linear;
    }

#menu a:hover
    {
    color: #6C69CB;
    }
    
#hero
    {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 82vh;
    color: #FFFFFF;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url("../images/backgroundPrincipal.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    }

#hero button
    {
    margin-top: 5rem;
    font-size: 1.3em;
    }

#somosMixpro .container
    {
    text-align: center;
    padding: 200px 12px;
    background-color: #CCCCCC;
    }

#somosLetrero
    {
    animation: slideInRight linear forwards;
    animation-timeline: view();
    }
    
#somosImage
    {
    animation: fadeIn linear forwards;
    animation-timeline: view();
    }

#nuestrosServicios
    {
    background: linear-gradient(to bottom, rgb(0, 0, 0), rgb(130, 130, 130));
    color: #FFFFFF;
    text-align: center;
    }

#solucionesLetrero
    {
    animation: slideInLeft linear forwards;
    animation-timeline: view();
    }

#nuestrosServicios .container
    {
    padding: 50px 12px;
    }

#nuestrosServicios h2
    {
    margin-top: 0;
    }

#nuestrosServicios p
    {
    display: none;
    }

#nuestrosServicios .carta
    {
    background-size: cover;
    background-position: center center;
    padding: 40px;
    margin: 15px;
    border-radius: 15px;
    }
    
#spanMasInfo
    {
    display: none;
    position: fixed;
    top: 20%;
    left: 5%;
    width: 90%;
    padding: 50px;
    background-color: #BBBBBBF5;
    color: #484848;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgb(0, 0, 0, .5);
    z-index: 16;
    text-align: center;
    }

#ventana
    {
    background: linear-gradient(0deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url("../images/backgroundPrincipal.jpg");
    }
    
#spanMasInfoContent
    {
    text-align: center;
    }

.carta:first-child
    {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .7)), url("../images/cartaConciertos.png");
    }

.carta:nth-child(2)
    {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .7)), url("../images/cartaCorporativo.jpg");
    }

.carta:nth-child(3)
    {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .7)), url("../images/cartaSociales.jpg");
    }

.carta:nth-child(4)
    {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .7)), url("../images/cartaMarca.jpg");
    }

.carta:nth-child(5)
    {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .7)), url("../images/cartaCongreso.jpg");
    }
    
#galeria
    {
    background: linear-gradient(to top, #554E90, #FFFFFF);
    color: #484848;
    text-align: center;
    }

#galeria .container
    {
    padding: 50px 12px;
    }

#galeria h2
    {
    margin-top: 0;
    }

#galeriaLetrero
    {
    animation: slideInDown linear forwards;
    animation-timeline: view();
    }

#galeria .cadaGaleria
    {
    display: flex;
    flex-direction: row;
    padding: 5px 10px;
    overflow-x: scroll;
    }

.cadaGaleria::-webkit-scrollbar
    {
    display: none;
    }

.cadaGaleria
    {
    -ms-overflow-style: none;
    scrollbar-width: none;
    }

.videoGaleria
    {
    max-width: 370px;
    border-radius: 10px;
    opacity: 100%;
    user-select: none;
    margin: 30px 10px;
    }

#contactaYa
    {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgb(30, 30, 30);
    color: #FFFFFF;
    height: 80vh;
    }

#contactaYa h2
    {
    font-size: 8vw;
    }

#contactaYaLetrero
    {
    animation: slideInUp linear forwards;
    animation-timeline: view();
    }

#contactaYa button
    {
    font-size: 1.3em;
    }

#formaContacto
    {
    padding-top: 0px;
    padding-bottom: 100px;
    }

#formaContacto h2
    {
    text-align: center;
    margin: 0;
    }

#contactoLetrero
    {
    animation: slideInRight linear forwards;
    animation-timeline: view();
    }

#formaContacto .container
    {
    display: flex;
    flex-direction: column;
    }

#formaContacto #slogan
    {
    margin: 10px;
    font-size: 1.5em;
    text-align: center;
    }

#formaContacto #camposContacto
    {
    padding: 0px 20px;
    }

#formaContacto #camposContacto .formItem
    {
    padding: 10px 0px;
    }

#formaContacto input
    {
    border: none;
    height: 20px;
    border-radius: 5px;
    background-color: #CCCCFF;
    }

#formaContacto input:hover
    {
    background-color: #BBBBEE;
    }

#formaContacto textarea
    {
    border: none;
    height: 60px;
    border-radius: 5px;
    background-color: #CCCCFF;
    }

#formaContacto textarea:hover
    {
    background-color: #BBBBEE;
    }
    
footer
    {
    background-color: rgb(230, 230, 230);
    }

footer #copy
    {
    margin: 0;
    color: rgb(100, 100, 100);
    padding: 12px;
    text-align: right;
    font-size: .6em;
    }

footer #contacto
    {
    width: 50%;
    font-size: 1em;
    }

footer .container
    {
    height: 70px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    }

footer a
    {
    font-size: 1em;
    text-decoration: none;
    font-weight: bold;
    color: #484848;
    }

footer a:hover
    {
    color: #6C69CB;
    }

footer .telefonazo
    {
    font-size: 1em;
    font-weight: bold;
    color: #4D8A47;
    }

/* --- Definición de background para móvil */

@media (max-width: 567px)
    {
    #hero
        {
        background-size: unset;
        background-position: center top;
        }
    }


/* --- Área para definición del DESKTOP  */
    
@media (min-width: 720px)
    {
    header
        {
        position: fixed;
        width: 100%;
        height: 69px;
        }
    
    header .container
        {
        flex-direction: row;
        justify-content: space-between;
        }
    
    header .letrero
        {
        margin: 10px;
        padding: 10px;
        height: 48px;
        width: 246px;
        background-image: url("../images/letreroMIXPRO.png");
        background-position: center center;
        background-size: cover;
        }
    
    header .titulo
        {
        margin: 10px;
        padding: 10px;
        height: 48px;
        text-align: center;
        font-family: Verdana, Arial, sans-serif;
        font-size: 20pt;
        font-weight: bold;
        color: #CCCCFF;
        }
        
    #burgerMenu
        {
        margin: 19px 20px;
        }
        
    #menu
        {
        top: 73px;
        right: 22px;
        }
    
    header nav
        {
        flex-direction: row;
        padding-bottom: 0;
        padding-right: 20px;
        padding-top: 3px;
        }
    
    #hero
        {
        height: 100vh;
        background-image: linear-gradient(0deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url("../images/backgroundPrincipal.jpg");
        background-size: cover;
        }
    
    #hero h1
        {
        font-size: 5em;
        }
    
    .pantalla
        {
        width: 640px;
        border-radius: 10px;
        opacity: 85%;
        }
        
    .videoGaleria
        {
        min-width: 640px;
        }

    #somosMixpro .container
        {
        display: flex;
        justify-content: space-evenly;
        }
    
    #somosMixpro .texto
        {
        width: 50%;
        text-align: initial;
        padding-left: 30px;
        max-width: 600px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        }
    
    #somosMixpro h2
        {
        margin-top: 0;
        }
    
    #somosMixpro .imageContainer
        {
        background-image: url('../images/conciertoSomos.jpg');
        background-size: cover;
        background-position: center center;
        height: 500px;
        width: 350px;
        border-radius: 15px;
        box-shadow: 2px 2px 15px rgba(0, 0, 0, .9);
        }
    
    #nuestrosServicios .cadaServicio
        {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        }

    .carta button
        {
        display: none;
        }

    .carta
        {
        flex: 0 0 33.3333%;
        }
    
    #nuestrosServicios h3
        {
        margin-top: 0;
        }
    
    #nuestrosServicios p
        {
        display: block;
        margin-bottom: 30px;
        }
    
    #nuestrosServicios .carta
        {
        max-width: 300px;
        padding: 50px;
        box-shadow: 2px 2px 15px rgba(0, 0, 0, .5);
        }

/*    #formaContacto .container
        {
        flex-direction: row;
        }*/
    
    #contactaYa h2
        {
        font-size: 5em;
        }
    
    #contactaYa button
        {
        font-size: 1.5em;
        }
    
    }
    

/* --- Definición de las Animaciones  */

@supports (animation-timeline: scroll(root)) 
    {
    #scroll-progress-bar 
        {
        animation-timeline: scroll(root);
        animation-name: the_animation;
        }
    }

@keyframes slideInRight
    {

    from 
        {
        transform: translateX(100%);
        opacity: 0;
        }
    45% 
        {
        transform: translateX(0);
        opacity: 1;
        }

    }
    
@keyframes slideInLeft
    {

    from 
        {
        transform: translateX(-100%);
        opacity: 0;
        }
    45% 
        {
        transform: translateX(0);
        opacity: 1;
        }

    }
    
@keyframes slideInUp
    {

    from 
        {
        transform: translateY(100%);
        opacity: 0;
        }
    45% 
        {
        transform: translateY(0);
        opacity: 1;
        }

    }
    
@keyframes slideInDown
    {

    from 
        {
        transform: translateY(-100%);
        opacity: 0;
        }
    45% 
        {
        transform: translateY(0);
        opacity: 1;
        }

    }
    
@keyframes fadeIn
    {

    from 
        {
        transform: translateY(-20%);
        opacity: 0;
        }
    45% 
        {
        transform: translateY(0);
        opacity: 1;
        }

    }
    
@keyframes reveal 
    {

    from 
        {
        opacity: 0;
        clip-path: inset(45% 20% 45% 20%);
        }
    30%
        {opacity: 1;    
        clip-path: inset(0% 0% 0% 0%);
        }

    }