*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
body{
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}
@font-face{
    font-family: dklong;
    src: url(../font/DKLongreach.otf);
}
@font-face{
    font-family: todayshop;
    src: url(../font/TodaySHOP-Bold.otf);
}
.dklong{
    font-family: dklong;
}


/* Estilos para Sistema de Agenda */
.agenda-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2.5rem;
    border-radius: 8px;
    height: 100%;
}

.agenda-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.agenda-box .icon-wrapper {
    padding: 1rem;
}

.agenda-box .button {
    font-weight: 600;
    transition: all 0.3s ease;
}

.agenda-box .button:hover {
    transform: scale(1.05);
}

