/* ============================================
   HOME WRAPPER – MENOS ESPAÇO NO TOPO
   ============================================ */
body.home .gotoo-home.gotoo-mp {
    padding-top: 20px;   /* em vez dos ~40px do .gotoo-mp base */
}

/* ============================================
   HERO HOME – AJUSTES ESPECÍFICOS Gotoo.pt
   ============================================ */

/* wrapper interno alinhado ao resto do site */
.gotoo-home-hero .gotoo-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* secção hero na home quando usa o layout .gotoo-mp-hero */
.gotoo-home-hero.gotoo-mp-hero {
    padding: 12px 0 26px;
}

/* grid interno: 2 colunas – widget + texto/card */
.gotoo-home-hero .gotoo-mp-hero__inner.gotoo-home-hero__inner--split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
    align-items: center;
    column-gap: 32px;
    row-gap: 16px;
    padding: 22px 24px;
    border-radius: 26px;
}

/* colunas */
.gotoo-home-hero__col {
    position: relative;
}

/* coluna esquerda – widget */
.gotoo-home-hero__col--left {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* coluna direita – eyebrow + título + intro + card */
.gotoo-home-hero__col--right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

/* limitar largura do conteúdo textual (se usares um wrapper interno) */
.gotoo-home-hero__content {
    max-width: 480px;
}

/* título no lado direito */
.gotoo-home-hero .gotoo-mp-hero__title {
    font-size: clamp(22px, 2.4vw, 26px);
    margin-bottom: 6px;
    max-width: none;
    word-break: normal;
    white-space: normal;
    hyphens: auto;
}

/* parágrafo de intro no lado direito */
.gotoo-home-hero .gotoo-mp-hero__intro {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4b5563;
}

/* =========================
   HERO HOME – WIDGET BOOKING
   ========================= */

/* wrapper do widget dentro do hero da home */
.gotoo-home-hero .gotoo-mp-search-box__widget {
    max-width: 380px;
}

/* garantir que o widget não fica “apertado” por max-width próprios */
.gotoo-home-hero .gotoo-mp-search-box__widget .gotoo-tb-widget-wrapper,
.gotoo-home-hero .gotoo-mp-search-box__widget .gotoo-tb-widget {
    width: 100% !important;
    max-width: 100% !important;
}

/* se o wrapper do widget tiver padding lateral, limpamos para colar ao layout do hero */
.gotoo-home-hero__col--left .gotoo-tb-widget-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* microcopy por baixo do widget (ex: “Transfers privados desde 39 €…”) */
.gotoo-home-hero__widget-meta {
    margin-top: 6px;
    font-size: 11px;
    color: #6b7280;
}

/* =========================
   HERO HOME – CARD DIREITO
   ========================= */

.gotoo-home-hero__card {
    max-width: 420px;
    border-radius: 22px;
    overflow: hidden;
    background: #020617;
    box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.2),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    margin-left: auto; /* encosta o card à direita em desktop */
}

.gotoo-home-hero__image,
.gotoo-home-hero__image img {
    display: block;
    width: 100%;
    height: auto;
}

.gotoo-home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    color: #e5e7eb;
    font-size: 11px;
    font-weight: 500;
}

/* ================================
   HERO HOME – ROW DE BULLETS FULL WIDTH
   ================================ */

.gotoo-home-hero__bottom {
    grid-column: 1 / -1;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gotoo-home-hero__bullets-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    padding: 0;
    margin: 4px 0 0;
    list-style: none;
    font-size: 13px;
    color: #374151;
}

.gotoo-home-hero__bullets-inline li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.gotoo-home-hero__bullets-inline li::before {
    content: "•";
    color: #2563eb;
    font-weight: 700;
}

.gotoo-home-hero__widget-meta {
    margin-top: 6px;
    font-size: 11px;
    color: #6b7280;
}

/* =========================
   BLOCOS DE REVIEWS NA HOME
   ========================= */

.gotoo-home-reviews {
    max-width: 1120px;
    margin: 32px auto 8px;
    padding: 0 16px;
}

.gotoo-home-reviews__inner {
    border-radius: 20px;
    padding: 20px 18px 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid #e5e7eb;
}

.gotoo-home-reviews__title {
    margin: 0 0 6px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #111827;
}

.gotoo-home-reviews__subtitle {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
}

.gotoo-home-reviews__widget {
    margin-top: 10px;
}

/* =============================
   HERO HOME – TABLET (769–1023px)
   ============================= */
@media (max-width: 1023px) and (min-width: 769px) {

    .gotoo-home-hero.gotoo-mp-hero {
        padding: 16px 0 24px;
    }

    .gotoo-home-hero .gotoo-mp-hero__inner.gotoo-home-hero__inner--split {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 20px;
        padding: 20px 20px;
    }

    .gotoo-home-hero__card {
        max-width: 360px;
        margin-top: 6px;
    }

    .gotoo-home-hero__bottom {
        margin-top: 8px;
    }
}

/* =============================
   HERO HOME – MOBILE (<=768px)
   ============================= */
@media (max-width: 768px) {

    .gotoo-home-hero .gotoo-container {
        padding: 0 14px;
    }

    .gotoo-home-hero.gotoo-mp-hero {
        padding: 18px 0 18px;
    }

    /* hero passa a 1 coluna */
    .gotoo-home-hero .gotoo-mp-hero__inner.gotoo-home-hero__inner--split {
        grid-template-columns: minmax(0, 1fr);
        padding: 18px 16px 16px;
        border-radius: 20px;
        row-gap: 14px;
        gap: 18px;
    }

    .gotoo-home-hero__col--left,
    .gotoo-home-hero__col--right {
        width: 100%;
        align-items: flex-start;
    }

    .gotoo-home-hero__col--right {
        justify-content: flex-start;
    }

    .gotoo-home-hero__content,
    .gotoo-home-hero .gotoo-mp-search-box__widget {
        max-width: 100%;
    }

    .gotoo-home-hero__card {
        max-width: 100%;
        width: 100%;
        margin-top: 8px;
        margin-left: 0;
    }

    .gotoo-home-hero__bullets-inline {
        gap: 6px 14px;
        font-size: 0.85rem;
        justify-content: flex-start;
    }

    .gotoo-home-hero__bullets-inline li {
        white-space: normal;
    }

    .gotoo-home-hero__bottom {
        margin-top: 12px;
    }

    /* bloco de reviews mais compacto */
    .gotoo-home-reviews {
        margin-top: 24px;
        padding: 0 12px;
    }

    .gotoo-home-reviews__inner {
        padding: 16px 14px 14px;
        border-radius: 16px;
    }

    .gotoo-home-reviews__title {
        font-size: 1.1rem;
    }

    .gotoo-home-reviews__subtitle {
        font-size: 0.9rem;
    }
}
