@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(135deg, #d47a7a 0%, #422626 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 25px;
    color: white;
}

.container {
    width: 100%;
    max-width: 900px;
    text-align: center;
    animation: fadeIn 1s ease-in;
}

/* Header */
.profile-img {
    width: 180px;
    margin-bottom: 35px;
    animation: zoomIn 0.8s ease;
}

h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700; /* Peso mais forte para o título */
}

.subtitle {
    font-size: 1rem;
    margin-bottom: 45px;
    opacity: 0.9;
    font-weight: 400;
}

.horario {
    font-size: 0.9rem;
    margin: 40px 0;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

/* Grid de Boxes */
.boxes-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.box {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
}

.box:nth-child(2) { 
    animation-delay: 0.3s; 
}

.box-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Botões */
.btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600; /* Botões levemente mais grossos */
    font-size: 0.95rem;
}

.btn i {
    width: 30px;
    font-size: 1.1rem;
    margin-right: 10px;
    text-align: center;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Footer Social */
.social-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-icon:hover {
    background: white;
    color: #d47a7a;
}

/* Animações */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes slideUp { 
    from { transform: translateY(50px); opacity: 0; } 
    to { transform: translateY(0); opacity: 1; } 
}

/* Ajuste Mobile */
@media (max-width: 600px) {
    .boxes-wrapper { flex-direction: column; }
    .box { min-width: 100%; }
    h1 { font-size: 1.3rem; }
    body { padding: 30px 15px; }
}