.calendario-header {
    position: relative;
    width: 100%;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.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;
    text-align: center;
}

.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;
}

.section-intro {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section-intro p {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 2;
    margin: 10px 0;
}

.section-intro p a {
    text-decoration: none;
}

.form-contato {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    margin-bottom: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-contato iframe {
    position: relative;
    width: 50%;
    height: 450px;
    border-radius: 20px;
}

/* Ajustes Responsivos */
@media (max-width: 768px) {
    .form-contato {
        padding: 0;
    }

    .form-contato iframe {
        width: 90%;
        height: 450px;

    }
}