/* style.css - Diseño Amigable Blue & Pink */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;900&display=swap');

:root {
    --primary-pink: #ff9a9e;
    --primary-blue: #a18cd1;
    --dark-text: #2c3e50;
    --light-bg: #fdfbfb;
}

body {
    font-family: 'Nunito', sans-serif; /* Tipografía redondeada y amable */
    background-color: var(--light-bg);
    color: var(--dark-text);
}

/* --- NAV BAR --- */
.navbar-custom {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 1rem 0;
}
.navbar-brand {
    font-weight: 900;
    font-size: 1.5rem;
    background: -webkit-linear-gradient(45deg, var(--primary-blue), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(120deg, #a18cd1 0%, #fbc2eb 100%);
    color: white;
    padding: 100px 0;
    border-radius: 0 0 50% 50% / 20px; /* Curva suave abajo */
    margin-bottom: 50px;
}
.hero-title {
    font-weight: 900;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* --- TARJETAS DE SERVICIOS --- */
.card-custom {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.card-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.card-custom:hover .card-img-top {
    transform: scale(1.1);
}

/* --- BOTONES --- */
.btn-gradient {
    background: linear-gradient(to right, var(--primary-blue), var(--primary-pink));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: opacity 0.3s;
}
.btn-gradient:hover {
    opacity: 0.9;
    color: white;
}
/* --- ESTILOS DEL DASHBOARD ADMIN --- */
.dashboard-container {
    background-color: #fdfbfb;
    min-height: 100vh;
    padding: 20px;
}

/* Tarjetas de Estadísticas */
.stat-card {
    border: none;
    border-radius: 20px;
    color: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.stat-card:hover { transform: translateY(-5px); }
.bg-gradient-pink { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
.bg-gradient-blue { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
.bg-gradient-green { background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%); }

/* Botones de Acción Rápida */
.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}
.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(161, 140, 209, 0.3);
    color: #a18cd1;
}
.action-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: -webkit-linear-gradient(45deg, #a18cd1, #ff9a9e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.action-title { font-weight: 800; font-size: 1.1rem; }

/* Calendario */
.calendar-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}
.fc-toolbar-title { font-size: 1.2rem !important; color: #2c3e50; }
.fc-button-primary { background-color: #a18cd1 !important; border: none !important; }