body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-image: url(FONDO.png);
    background-size: cover;
    background-position: center;
}

a {
    text-decoration: none;
    font-size: 20px;
    color: whitesmoke;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

img {
    margin: 15px;
    max-width: 100%;
    height: auto;
}

#imagen-bio {
    margin: 0;
    margin-top: 10px;
}

p {
    color: black;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-left: 50px;
    padding-right: 20px;
}

h1 {
    color: black;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h2 {
    color: whitesmoke;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

ul,
li {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    background-color: #FDA3BD;
}

@media(max-width: 768px) {
    section {
        min-height: 100vh;
    }
}

.header_left {
    width: 60%;
}

.header_left img {
    max-width: 350px;
}

.header_right {
    display: flex;
    justify-content: flex-end;
    margin: 30px;
    width: 40%;
}

.header_right nav {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {

    .header_right nav {
        flex-direction: column;
        max-width: 100%;
        gap: 3px;
    }
}

.nav-item {
    padding: 12px;
    background-color: black;
}

.nav-item-pink {
    padding: 12px;
    background-color: black;
    color: #FDA3BD;
}

.nav-item-pink a {
    color: #FDA3BD;
}

@media (max-width: 768px) {

    .nav-item a,
    .nav-item-pink a {
        padding-left: 3px;
        padding-right: 3px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {

    .nav-item,
    .nav-item-pink {
        padding: 6px;
    }
}

/*----------TOUR-------------*/

#tour {
    display: block;
    padding: 10px;
    background-color: white;
    height: auto;
}

@media (max-width: 768px) {
    #tour {
        background-image: url(robot1.png);
        background-position: center;
        display: block;
        padding: 10px;
        background-color: white;
        height: auto;
    }
}

.tour_name {
    display: flex;
    justify-content: center;
    height: 10vh;
}

.evento {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: white;
}

.fecha {
    padding-right: 50px;
}

.robot {
    display: flex;
    justify-content: space-around;
    max-width: 100%;
    height: 100vh;
}

/*--------FOOTER----------*/

footer {
    display: flex;
    justify-content: space-between;
    background-color: #FDA3BD;
}

.footer_iconos {
    display: flex;
    gap: 10px;
    margin: 15px;

}

.icono {
    width: 25px;
}

@media(max-width:768px) {
    .footer_iconos {
        display: block;
        margin-left: 20px;
        padding-top: 5px;
    }

    .icono {
        width: 25px;
        padding: 0;
        margin: 0;
    }
}

.tickets {
    align-content: center;
    margin: 25px;
}

.tickets a {
    border: 3px solid black;
    padding: 10px;
    color: black;
    margin-right: 20px;
    font-weight: bold;
}

.tickets a:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tickets:hover {
    transform: scale(1.1);
}

a:hover {
    color: rgb(69, 164, 224);
}

/*-------------BIO---------------*/

.bio_container {
    display: flex;
    flex-direction: column;
    
}

@media(max-width: 768px) {
    .bio-main {
        display: flex;
        flex-direction: column;
    }

    .img-bio {
        width: 100%;
        max-width: 320px;
    }
}

.bio {
    color: white;
}

.pictures {
    display: flex;
    justify-content: center;
}

/*-----------CARRUSEL--------------*/

.container {
    margin: auto;
    width: 800px;
    padding: 30px;
}

@media(max-width: 768px) {
    .container {
        display: none;
    }
}

@media(max-width: 768px) {
    .header_left img {
        max-width: 210px;
    }
}

@media(max-width: 768px) {
    .robot {
        display: none;
    }
}

ul.slider {
    position: relative;
    width: 800px;
    height: 450px;
}

ul.slider li {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    width: inherit;
    height: inherit;
    transition: opacity .5s;
}

ul.slider li img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

ul.slider li:first-child {
    opacity: 1;

}

ul.slider li:target {
    opacity: 1;

}

.menu {
    text-align: center;
    margin: 20px;
    display: block;
    padding-top: 40px;
}

.menu li {
    padding-right: 10px;
    display: inline-block;
}

/*--------FORMULARIO------------*/

.main {
    display: flex;
    justify-content: center;
    height: 100vh;
}

.form {
    display: flex;
    color: white;
    flex-direction: column;
    padding: 10px 10px;
    margin: 10px 10px;
}

form {
    height: 450px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    width: 280px;
}

.form-content {
    display: flex;
    align-items: center;
    margin: auto;
}