*{
    margin: 0;
    padding: 0;
}

 @font-face {
      font-family: 'Lucy-Rose';
      src: url('../fonts/LUCYROSEPERSONAL-REGULAR.OTF') format('opentype');
}

 @font-face {
      font-family: 'Monterey';
      src: url('../fonts/Monterey.otf') format('opentype');
}

 @font-face {
      font-family: 'Simple-Michael';
      src: url('../fonts/Simple-Michael.otf') format('opentype');
}

 @font-face {
      font-family: 'Champignon';
      src: url('../fonts/CHAMPIGNON.OTF') format('opentype');
}

:root{
    --lila: #A788FE;
    --blanco: #fff;
    --negro: #000;
}

body{
    font-family: "Simple-Michael", Aria, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    background-image: url(../img/background.jpg);
    background-repeat: repeat;
    background-size:contain;
}

a{
    text-decoration: none !important;
}

.bg-mariposas{
    background-image: url(../img/background-mariposas.jpg);
    background-repeat: repeat;
    background-size:contain;
}
.titulos{
    font-family: "Monterey", Aria, sans-serif;
    font-size: 6rem;
    color: var(--lila);
}

.subtitulos{
    font-weight: 400;
    font-size: 2rem;
}

.row-foto{
    margin: 0 auto;
    max-width: 400px;
    max-height: 550px;
    padding-top: 1rem;
}

.padding-top{
    padding-top: 2rem;
}

.texto-lila{
    color: var(--lila);
}

.texto-espaciado{
    text-spacing-trim: space-all !important;
    font-size: 1.5rem;
}

.botones{
    background-color: var(--lila);
    color: var(--blanco);
    border-radius: 10px;
    padding: 0.5rem;
}

.botones:hover{
    background-color: var(--blanco);
    color: var(--lila);
    border-radius: 10px;
    padding: 0.5rem;
}
.iconos-rem{
    font-size: 3rem;
}

.audio{
    max-width: 80% !important;
    margin: 0 auto;
}

.btn-lila{
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--blanco);
    --bs-btn-bg: var(--lila);
    --bs-btn-border-color: var(--lila);
    --bs-btn-hover-color: var(--blanco);
    --bs-btn-hover-bg: #{shade-color(var(--lila), 10%)};
    --bs-btn-hover-border-color: #{shade-color(var(--lila), 10%)};
    --bs-btn-focus-shadow-rgb: var(--lila);
    --bs-btn-active-color: var(--lila);
    --bs-btn-active-bg: #{shade-color(var(--lila), 20%)};
    --bs-btn-active-border-color: #{shade-color(var(--lila), 20%)};
}

.iconos-80x80{
    height: 80px;
    width: 80px;
}

.iconos-50x50{
    height: 50px;
    width: 50px;
}

.saveDate{
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    color: #000;
}

.saveDate-title{
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3.2rem;
}
.saveDate-subtitle{
    font-size: 1.5rem;
    font-weight: 700;
}
.timebox{
    display: flex;
}

.time{
    text-align: center;
    color: white;
    background-color:var(--lila);
    margin: 0.5rem;
    padding: 0.5rem;
    padding-top: 1rem;
    border-radius: 10px;
}

.time h3{
    font-size: 1.5rem;
    font-weight: 100;
}

/* Inicio de slider */

.container__slider{
    max-width: 1000px;
    height: 500px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
}

input[type=radio]{
    display: none;
}

.contenedor{
    width: 100%;
    max-width: 800px;
    height: 100%;
    max-height: 600px;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tarjetas{
    position: relative;
    width: 100%;
    height: 100%;
}

.tarjeta{
    position: absolute;
    width: 60%;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-carousel{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

#item-2:checked ~ .tarjetas #selector-1,
#item-1:checked ~ .tarjetas #selector-5,
#item-5:checked ~ .tarjetas #selector-4,
#item-4:checked ~ .tarjetas #selector-3,
#item-3:checked ~ .tarjetas #selector-2{
    transform: translateX(-40%) scale(0.8);
    opacity: 0.6;
    z-index: 0;
}

#item-3:checked ~ .tarjetas #selector-4,
#item-4:checked ~ .tarjetas #selector-5,
#item-5:checked ~ .tarjetas #selector-1,
#item-1:checked ~ .tarjetas #selector-2,
#item-2:checked ~ .tarjetas #selector-3{
    transform: translateX(40%) scale(0.8);
    opacity: 0.6;
    z-index: 0;
}

#item-1:checked ~ .tarjetas #selector-1,
#item-2:checked ~ .tarjetas #selector-2,
#item-3:checked ~ .tarjetas #selector-3,
#item-4:checked ~ .tarjetas #selector-4,
#item-5:checked ~ .tarjetas #selector-5{
    transform: translateX(0) scale(1);
    z-index: 1;
}

/* Fin de slider */

/* Large devices (computers, 992px and up) */
@media (min-width: 992px) {
    .row-foto{
        margin: 0 auto;
        max-width: 600px;
        max-height: 750px;
        padding-top: 2rem;
    }
    .saveDate{
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #000;
    }

    .saveDate-title{
        font-size: 4rem;
        font-weight: 700;
    }
    .saveDate-subtitle{
        font-size: 3rem;
        font-weight: 700;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    .timebox{
        display: flex;
    }

    .time{
        text-align: center;
    }

    .time h3{
        font-size: 5rem;
        font-weight: 100;
    }

    body{
        background-image: url(../img/background-mariposas.jpg) !important;
        background-repeat: repeat;
        background-size:contain;
    }
    .bg-mariposas{
        background-image: none;
    }
}