html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

body {
    background: #fff5f5;
}

/* IMAGEN CENTRAL */

.imagen-central {
    width: 300px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}

/* TITULOS */

h1 {
    color: #b22222;
    font-weight: bold;
}

/* FRASES */

#frase {
    color: #c2185b;
    margin-top: 20px;
    font-size: 32px;
    animation: aparecer 1s ease;
}

@keyframes aparecer {

    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* FRASES */

#fraseTexto {
    color: #c2185b;
    font-size: 42px;
    font-weight: bold;
    animation: aparecer 1s ease;
    text-shadow: 0 0 10px pink, 0 0 20px hotpink;
}

/* IMAGENES */

#imagenCarrusel {
    transition: all 1s ease;
}

/* CONTENIDO */

#contenidoDinamico {
    min-height: 300px;
}

/* FRASES */

.texto-frase {
    font-size: 42px;
    color: #c2185b;
    font-weight: bold;
    text-shadow: 0 0 10px pink, 0 0 20px hotpink;
    animation: aparecer 1s ease;
}

/* CARRUSEL */

.carousel-item {
    transition: transform 1s ease-in-out;
}

/* IMAGENES */

.imagen-central {
    width: 350px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* SLIDER */

.slider-imagen {
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
}

/* EFECTO */

.carousel {
    max-width: 700px;
    margin: auto;
}

/* TRANSICION */

.carousel-item {
    transition: transform 1s ease-in-out;
}

/* FRASES SLIDER */

.frase-slider {
    font-size: 42px;
    color: #c2185b;
    font-weight: bold;
    text-align: center;
    padding: 30px;
    text-shadow: 0 0 10px pink, 0 0 20px hotpink;
    animation: aparecer 1s ease;
}

/* TRANSICION SUAVE */

#carouselFrases .carousel-item {
    transition: opacity 1s ease-in-out;
}

/* CALENDARIO */

.calendario-card {
    background: linear-gradient( 135deg, #ffe4ec, #fff0f5 );
    border-radius: 25px;
    max-width: 600px;
    margin: auto;
}

#contador {
    font-size: 42px;
    color: #c2185b;
    font-weight: bold;
}

.frase-emotiva {
    font-size: 22px;
    color: #6d214f;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
    font-style: italic;
}

/* =========================
   Imagen index
========================= */


.imagen-home {
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
}

/* =========================
   SLIDER
========================= */

.slider-contenedor {
    max-width: 1100px;
    margin: auto;
}


/* IMAGENES */

.slider-imagen {
    width: 100%;
    border-radius: 20px;
}



/* CAPTION */

.carousel-caption {
    background: rgba(0,0,0,0.35);
    border-radius: 15px;
    padding: 10px;
}


/* TRANSICION */

.carousel-item {
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}


/* BOTONES */

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 80%;
}


/* RESPONSIVE */

@media (max-width: 768px) {

    .slider-imagen {
        height: 300px;
    }
}