.icon{
    width: 64px;
}

/* Fondo general lavanda */
body {
    font-family: 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
    background-color: #F7EEE6;
}

.fondo {
  position: fixed;
  top: 1%;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Navbar */
.custom-navbar {
    background-color: #fff !important;
    box-shadow: none;
}

.custom-navbar .navbar-nav .nav-link,
.custom-navbar .navbar-brand,
.custom-navbar .navbar-toggler {
    color: #000 !important;
}

.custom-navbar .navbar-nav .nav-link.active {
    color: #000 !important;
    font-weight: bold;
}

/* Botones */
.btn-custom {
    background-color: #f9a8d4;
    color: white;
    border: none;
}

.btn-custom:hover {
    background-color: #ff7eb9;
    color: white;
}

.btn-comentario {
    background-color: #F88FAC;
    color: #fff;
    border: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-comentario:hover {
    background-color: #e46c9c;
    color: #fff;
}

/* Carrusel */
.slider1, .slider2, .slider3, .slider4 {
    display: block;
    margin: 0 auto;
    width: auto;
    height: auto;
}

.custom-carousel {
    max-width: 700px;
    height: 580px !important;      /* Aumenta la altura */
    margin: 0 auto;
    background-color: #FFF5E1;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 20px 0;              /* Padding arriba y abajo */
}

.custom-carousel .carousel-inner {
    height: 100% !important;
    width: 100%;
}

.custom-carousel .carousel-item img {
    height: 60vh; /* altura relativa a la pantalla */
    object-fit: cover; /* recorta sin deformar */
    object-position: center; /* centra la imagen */
    object-fit: contain;
    width: 100% !important;
    height: 100% !important;
    margin: 0 auto;
    border-radius: 20px;
    display: block;
    background: #FFF5E1;
}

.carousel-caption {
    position: absolute;
}

/* Cards */
.custom-card {
    background-color: #ffffff3d;
    border: 1px solid #f9a8d4;
    border-radius: 15px;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.custom-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.custom-card .card-img-top {
    height: 320px;
    object-fit: cover;
}

.custom-card .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Footer */
.custom-footer {
    background-color: #ffd1dc;
    color: #6b0d4e;
}

.slider3-caption h5,
.slider3-caption p {
    color: #000 !important; 
}

.carousel-caption {
    background: rgba(255, 255, 255, 0.7); 
    border-radius: 15px;
    padding: 20px;
    color: #000 !important;
    display: inline-block;
}

.seccion-titulo {
    color: #F88FAC !important;
}

.modal-title {
    color: #F88FAC !important;
}