body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f8fb; /* Fondo muy claro y moderno */
    color: #333;
    line-height: 1.6;
}

.jumbotron {
    background: linear-gradient(135deg, #e0f7fa 0%, #bbdefb 100%); /* Degradado suave de azules */
    color: #2c3e50;
    padding: 6rem 2rem;
    margin-bottom: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1, h2 {
    font-weight: 700;
    color: #2c3e50;
}

.jumbotron h1 {
    font-size: 3rem;
    color: #1a73e8; /* Azul principal de la marca */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.jumbotron p {
    color: #5d6d7e; /* Gris suave para los párrafos */
}

.jumbotron .lead {
    color: #5d6d7e !important;
}

.jumbotron .text-white {
    color: #5d6d7e !important;
}

.jumbotron .border-white {
    border-color: #b0bec5 !important;
}

.btn-custom-primary {
    background-color: #1a73e8 !important; /* Azul sólido principal */
    border-color: #1a73e8 !important;
    color: #ffffff !important;
    font-weight: bold;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-custom-primary:hover {
    transform: translateY(-3px);
    background-color: #0d47a1 !important;
}

.btn-custom-secondary {
    background-color: transparent !important;
    border-color: #1a73e8 !important;
    color: #1a73e8 !important;
    font-weight: bold;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-custom-secondary:hover {
    transform: translateY(-3px);
    background-color: rgba(26, 115, 232, 0.1) !important;
}

.section-panel {
    background-color: #ffffff;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card-meditacion {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
    width: 100%; /* Asegura que las tarjetas tengan el mismo ancho */
    max-width: 600px; /* Ancho máximo para el carrusel */
    margin: 0 auto; /* Centrar las tarjetas */
}

.card-meditacion:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0;
    margin-top: 5rem;
    border-radius: 1.5rem 1.5rem 0 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

/* Estilos de los carruseles */
#meditaciones-slider .carousel-inner {
    width: 100%;
    margin: auto;
}

#meditaciones-slider .carousel-item {
    text-align: center;
}

#calendario-slider .carousel-item {
    padding: 1rem;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(30%);
    background-image: none;
    position: relative;
    width: 25px;
    height: 25px;
}

.carousel-control-prev-icon::after {
    content: '\f053';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 25px;
    color: #1a73e8;
}
.carousel-control-next-icon::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 25px;
    color: #1a73e8;
}

/* Estilos del calendario */
.calendar-day-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    margin: 5px;
    border-radius: 12px;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.calendar-day-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.dia-lleno {
    background-color: #1a73e8;
}

.dia-vacio {
    background-color: #e5e8ea;
    color: #5d6d7e;
}

/* Estilos para las leyendas (badges) */
.badge-lleno {
    background-color: #1a73e8 !important;
    color: #ffffff !important;
    padding: 0.5em 1.2em;
    font-size: 0.9em;
    border-radius: 50px !important;
}

.badge-vacio {
    background-color: #e5e8ea !important;
    color: #5d6d7e !important;
    padding: 0.5em 1.2em;
    font-size: 0.9em;
    border-radius: 50px !important;
}

.month-header {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

/* Estilos del Modal */
.modal-header {
    background-color: #1a73e8;
    color: white;
    border-bottom: none;
    border-radius: 1rem 1rem 0 0;
}

.modal-title {
    color: white;
    font-weight: 600;
}

.modal-body {
    color: #333;
}

.modal-body h6 {
    color: #5d6d7e;
    font-weight: normal;
}

.modal-body p {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.modal-body .text-muted {
    font-style: italic;
}
