.calendario-centralizado-section {
    padding: 100px 20px 250px 20px;
    display: flex;
    justify-content: center;
}

.container-calendario-stack {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.top-label {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--text-primary);
    opacity: 0.6;
    margin-bottom: 10px;
}

.styled-title {
    color: var(--text-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.styled-title span {
    color: var(--primary-color);
}

.accent-line-center {
    width: 60px;
    height: 5px;
    background-color: var(--text-primary);
    margin: 20px auto 40px auto;
    border-radius: 2px;
}

/* Frame da Imagem */
.calendario-frame {
    position: relative;
    margin-bottom: 40px;
    line-height: 0;
}

.calendario-frame img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(51, 65, 85, 0.1);
    border: 1px solid #edf2f7;
}

/* Rodapé e Botão */
.description-central {
    color: var(--text-primary);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.btn-download-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(51, 65, 85, 0.2);
    cursor: pointer;
}

.btn-download-pill:hover {
    background-color: var(--secondary-color);
    transform: translateY(-4px);
    color: var(--text-primary);
    box-shadow: 0 15px 30px rgba(51, 65, 85, 0.3);
    filter: brightness(1.1);
}

.btn-download-pill i {
    font-size: 1.2rem;
}

/* Ajustes Responsivos */
@media (max-width: 600px) {
    .calendario-centralizado-section {
        padding: 70px 20px 100px 20px;
    }

    .btn-download-pill {
        width: 100%;
        justify-content: center;
    }
}