.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;
}

/* =================  ESTILOS PARA O FORMULÁRIO ======================= */

.layout {
    display: flex;
    gap: 30px;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
}

.layout>form {
    position: sticky;
    top: 110px;
    height: fit-content;
}

.form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
}

.quick-card,
.maps-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
}

.quick-card a {
    text-decoration: none;
    color: var(--text-primary);
}

h2 {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.row2 {
    display: flex;
    gap: 15px;
}

.field {
    width: 100%;
    margin-bottom: 18px;
}

label {
    color: var(--text-primary);
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 14px;
    transition: 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(224, 101, 25, 0.15);
    outline: none;
}

textarea {
    min-height: 100px;
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.btn-submit:hover {
    filter: brightness(0.95);
}

.privacy {
    font-size: 12px;
    color: #64748b;
    margin-top: 10px;
}

.side {
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.ci-green {
    background: #22c55e;
}

.ci-blue {
    background: #3b82f6;
}


.contact-info p {
    margin: 0;
    font-weight: 600;
}

.contact-info span {
    font-size: 12px;
    color: #64748b;
}

/* MAPS */
.map-item {
    margin-bottom: 20px;
}

.map-label {
    margin-bottom: 8px;
}

.map-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    margin-right: 8px;
    color: #fff;
}

.badge-1,
.badge-2,
.badge-3 {
    background: var(--primary-color);
}

.addr {
    font-size: 12px;
    color: #64748b;
}

/* MAP FRAME */
.map-frame {
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
}

/* MAP CLEAN (IMPORTANTE) */
.map-frame iframe {
    width: 100%;
    height: 140px;
    border: none;
    filter: none !important;
    -webkit-filter: grayscale(0) !important;
}

/* PLACEHOLDER */
.map-placeholder {
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 13px;
}

/* LINK MAP */
.map-open {
    font-size: 12px;
    margin-top: 5px;
    color: #3b82f6;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

/* RESPONSIVO */

@media (max-width: 998px) {
    .layout {
        flex-direction: column;
        padding: 20px;
    }

    .side {
        width: 100%;
    }

    /* opcional: tirar sticky no mobile (fica mais natural) */
    .layout>form {
        position: relative;
        top: 0;
        width: 100%;
    }

    .row2 {
        flex-direction: column;
    }
}