body {
    margin: 0;
    font-family: "Rubik", sans-serif;
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3858D9;
    padding: 10px 20px;
    color: white;
}

.menu-left {
    display: flex;
    align-items: center;
}

.menu-left img {
    height: 70px;
    margin-right: 20px;
}

.menu-left a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    padding: 8px 12px;

}

.menu-left a:hover {
    background-color: #2C00DB;
    border-radius: 4px;
}

.menu-right button {
    margin-left: 10px;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.register-btn {
    background-color: #5CB0F5;
    color: white;
    width: 130px;
}

.login-btn {
    background-color: #5CB0F5;
    color: white;
    width: 130px;
    margin-top: 5px;
}

.register-btn:hover, .login-btn:hover {
    opacity: 0.8;
}


.princ {
    position: relative;
    height: 400px;
    animation: backgroundSlide 15s infinite;
    background-size: cover;
    background-position: center;
}
.princ .slide1 {
    background-image: url('img1.jpg');
    animation-delay: 0s;
}

.princ .slide2 {
    background-image: url('img2.jpg');
    animation-delay: 5s;
}

.princ .slide3 {
    background-image: url('img3.jpg');
    animation-delay: 10s;
}
.princ .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.princ h1 {
    font-size: 48px;
    margin: 0;
}

.princ p {
    font-size: 20px;
    margin-top: 10px;
}

/* AnimaÃ§Ã£o de fundo com mÃºltiplas imagens */
@keyframes backgroundSlide {
    0% { background-image: url('img1.jpg'); }
    33% { background-image: url('img2.jpg'); }
    66% { background-image: url('img3.jpg'); }
    100% { background-image: url('img1.jpg'); }
}

.explorar {
  text-align: center;
  padding: 50px 20px;
  background-color: #f0f4f8;
}

.button {
  max-width: 600px;
  margin: 0 auto;
}

.butao {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #4da6ff; /* azul claro */
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.butao:hover {
  background-color: #3399ff;
}

.mini-calendar-container {
    max-width: 300px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.mini-calendar {
    text-align: center;
}

.mini-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-weight: bold;
    margin-bottom: 10px;
}

.mini-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.mini-day {
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.mini-day:hover {
    background-color: #f0f0f0;
}

.mini-today {
    background-color: #0066cc;
    color: white;
}

.mini-holiday {
    color: red;
    font-weight: bold;
}

.mini-event {
    position: relative;
    color: #0066cc;
}

.mini-event::after {
    content: '•';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    color: #0066cc;
    font-size: 20px;
}

.mini-empty {
    visibility: hidden;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.user-profile:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.profile-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4a6bff;
    border-radius: 50%;
}

.profile-details {
    display: flex;
    flex-direction: column;
}

.profile-email {
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
}

.profile-city {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.logout-link {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-top: 2px;
}

.logout-link:hover {
    text-decoration: underline;
    color: white;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}