/* ============================================
   MassPages – City Guide section
   (apenas guia de cidade, sem globals)
   ============================================ */

/* Wrapper da secção de guia de cidade */
.gotoo-mp__section--city-guide {
    margin-bottom: 40px;
}

/* Layout base: texto + imagem/lado visual */
.gotoo-mp-city-guide {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 28px;
    align-items: flex-start;
}

/* Coluna de conteúdo textual (guia) */
.gotoo-mp-city-guide__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Subtítulo / título dentro do guia */
.gotoo-mp-city-guide__intro {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.gotoo-mp-city-guide__title {
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: #020617;
    font-weight: 600;
}

/* Blocos de texto (parágrafos) */
.gotoo-mp-city-guide__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #4b5563;
}

/* Subsecções (ex: “What to see”, “Local tips”, etc.) */
.gotoo-mp-city-guide__block {
    padding-top: 4px;
    border-top: 1px dashed #e5e7eb;
    margin-top: 10px;
}

.gotoo-mp-city-guide__block:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.gotoo-mp-city-guide__block-title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* Listas dentro do guia */
.gotoo-mp-city-guide__list {
    margin: 4px 0 0;
    padding-left: 18px;
    font-size: 13px;
    color: #4b5563;
}

.gotoo-mp-city-guide__list li {
    margin-bottom: 4px;
}

/* Details/summary tipo FAQ dentro do guia */
.gotoo-mp-city-guide__details {
    margin-top: 8px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    overflow: hidden;
}

.gotoo-mp-city-guide__details summary {
    cursor: pointer;
    list-style: none;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gotoo-mp-city-guide__details summary::-webkit-details-marker {
    display: none;
}

.gotoo-mp-city-guide__details summary::after {
    content: "▾";
    font-size: 11px;
    color: #9ca3af;
    margin-left: 8px;
    transform-origin: center;
    transition: transform 0.18s ease;
}

.gotoo-mp-city-guide__details[open] summary::after {
    transform: rotate(-180deg);
}

.gotoo-mp-city-guide__details-content {
    padding: 8px 12px 10px;
    font-size: 13px;
    color: #4b5563;
    border-top: 1px solid #e5e7eb;
}

/* =========================
   MEDIA / IMAGEM DA CIDADE
   ========================= */

.gotoo-mp-guide__media {
    position: sticky;
    top: 76px; /* acompanha scroll em desktop sem ficar colado ao topo */
    align-self: flex-start;
}

.gotoo-mp-city-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(226, 232, 240, 0.9);
    background: #020617;
}

.gotoo-mp-city-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Legenda/overlay opcional sobre a imagem */
.gotoo-mp-city-image__caption {
    padding: 8px 12px 10px;
    font-size: 12px;
    color: #e5e7eb;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.92),
        rgba(15, 23, 42, 0.75),
        transparent
    );
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
    .gotoo-mp-city-guide {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
        gap: 20px;
    }

    .gotoo-mp-guide__media {
        top: 64px;
    }
}

@media (max-width: 900px) {
    .gotoo-mp-city-guide {
        grid-template-columns: minmax(0, 1fr);
    }

    .gotoo-mp-guide__media {
        position: static;
        margin-top: 8px;
    }
}

@media (max-width: 640px) {
    .gotoo-mp-city-guide__title {
        font-size: 17px;
    }

    .gotoo-mp-city-guide__block-title {
        font-size: 13px;
    }
}
