/*
Theme Name: Brasil Passeios Agregador
Theme URI: https://example.com
Description: Agregador de passeios e atividades turísticas no Brasil — afiliados + marketplace
Version: 1.4.0
Author: Smart Rio Tour
Text Domain: brasil-passeios
*/

/* ================================================================
   GOOGLE FONTS + VARIÁVEIS
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,400&display=swap');

:root {
    /* Cores principais */
    --brand:        #00C896;   /* verde-turquesa vibrante */
    --brand-dark:   #00A87E;
    --brand-light:  #E6FAF5;
    --accent:       #FF5C38;   /* laranja quente */
    --accent-light: #FFF0EC;
    --gold:         #F5A623;
    --gold-light:   #FFF8EB;

    /* Neutros */
    --ink:          #0D1B2A;
    --ink-soft:     #2D3F50;
    --mid:          #5C6F7F;
    --muted:        #8FA1B0;
    --border:       #E4ECF0;
    --surface:      #F7FAFB;
    --white:        #FFFFFF;

    /* Plataformas afiliadas */
    --gyg:          #FF5533;   /* GetYourGuide */
    --viator:       #1A4163;   /* Viator */
    --civitatis:    #0057FF;   /* Civitatis */
    --airbnb:       #FF385C;   /* Airbnb Exp */

    /* Tipografia */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-serif:   'Fraunces', serif;
    --font-body:    'Plus Jakarta Sans', sans-serif;

    /* Espaços */
    --radius:       12px;
    --radius-lg:    20px;
    --radius-xl:    28px;
    --shadow-sm:    0 2px 8px rgba(13,27,42,.06);
    --shadow-md:    0 8px 24px rgba(13,27,42,.10);
    --shadow-lg:    0 20px 48px rgba(13,27,42,.14);
    --shadow-brand: 0 8px 32px rgba(0,200,150,.25);
}

/* ================================================================
   RESET + BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.container--wide { max-width: 1440px; }
.container--narrow { max-width: 880px; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 68px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.site-logo__mark {
    width: 36px;
    height: 36px;
    background: var(--brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}
.site-logo__text {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
}
.site-logo__text span { color: var(--brand); }

/* Nav principal */
.header-nav { flex: 1; }
.header-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.header-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--mid);
    padding: 6px 12px;
    border-radius: 8px;
    transition: background .2s, color .2s;
    letter-spacing: -0.01em;
}
.header-nav a:hover,
.header-nav a.active {
    background: var(--surface);
    color: var(--ink);
}
.header-nav .nav-highlight {
    color: var(--brand-dark);
    font-weight: 600;
}

/* Header direito */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.btn-header-secondary {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: .2s;
}
.btn-header-secondary:hover {
    border-color: var(--brand);
    color: var(--brand-dark);
}
.btn-header-primary {
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: var(--brand);
    padding: 9px 20px;
    border-radius: 8px;
    transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-header-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-brand);
}

/* Mobile hamburger */
.header-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--ink);
    font-size: 18px;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
    position: relative;
    background: var(--ink);
    overflow: hidden;
    padding: 96px 0 72px;
    min-height: 640px;
    display: flex;
    align-items: center;
}

/* Fundo com mapa/textura */
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,200,150,.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 30%, rgba(255,92,56,.10) 0%, transparent 50%),
        linear-gradient(135deg, #0D1B2A 0%, #1A3550 100%);
}
.hero__bg-dots {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: .6;
}

/* Pins decorativos no mapa */
.hero__pins {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero__pin {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    animation: pin-float 4s ease-in-out infinite;
}
.hero__pin i { color: var(--brand); font-size: 11px; }
.hero__pin:nth-child(1) { top: 18%; right: 12%; animation-delay: 0s; }
.hero__pin:nth-child(2) { top: 55%; right: 8%; animation-delay: .8s; }
.hero__pin:nth-child(3) { top: 35%; right: 28%; animation-delay: 1.6s; }
.hero__pin:nth-child(4) { bottom: 25%; right: 18%; animation-delay: .4s; }

@keyframes pin-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,200,150,.15);
    border: 1px solid rgba(0,200,150,.3);
    border-radius: 24px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 24px;
    letter-spacing: .02em;
}
.hero__eyebrow i { font-size: 12px; }

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.2vw, 54px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 20px;
}
.hero__title em {
    font-style: normal;
    color: #4ECCA3;
    font-weight: 800;
}

.hero__subtitle {
    font-size: 16px;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
    font-weight: 400;
    letter-spacing: -0.005em;
}

/* ── BUSCA PRINCIPAL ────────────────────────────────────────────── */
.hero-search {
    background: white;
    border-radius: var(--radius-xl);
    padding: 8px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,200,150,.15);
    display: flex;
    gap: 8px;
    align-items: center;
    max-width: 600px;
}

.hero-search__field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-right: 1px solid var(--border);
}
.hero-search__field:last-of-type { border-right: none; }
.hero-search__field i {
    color: var(--brand);
    font-size: 16px;
    flex-shrink: 0;
}
.hero-search__field input,
.hero-search__field select {
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    background: transparent;
    width: 100%;
    min-width: 0;
}
.hero-search__field input::placeholder { color: var(--muted); }
.hero-search__field select { cursor: pointer; color: var(--mid); }

.hero-search__btn {
    flex-shrink: 0;
    background: var(--brand);
    color: white;
    border-radius: var(--radius-lg);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
}
.hero-search__btn:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-brand);
}

/* Quick tags */
.hero-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.hero-tags__label {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    font-weight: 500;
}
.hero-tag {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 4px 12px;
    transition: background .2s, color .2s;
}
.hero-tag:hover {
    background: rgba(0,200,150,.2);
    color: var(--brand);
    border-color: rgba(0,200,150,.3);
}

/* Stats na hero */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 44px;
    padding-top: 44px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat__number {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.04em;
    line-height: 1;
}
.hero-stat__number span { color: #4ECCA3; }
.hero-stat__label {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0;
}

/* ================================================================
   SECTION BASE
   ================================================================ */
.section { padding: 88px 0; }
.section--gray { background: var(--surface); }
.section--dark { background: var(--ink); }

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand-dark);
    background: var(--brand-light);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.025em;
    line-height: 1.22;
    margin-bottom: 12px;
}
.section-title em {
    font-style: normal;
    color: var(--brand-dark);
}
.section-subtitle {
    font-size: 17px;
    color: var(--mid);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-header--left { text-align: left; }
.section-header--left .section-subtitle { margin: 0; }

/* ================================================================
   DESTINOS POPULARES
   ================================================================ */
.destinos-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.destinos-scroll::-webkit-scrollbar { display: none; }

.destino-card {
    flex-shrink: 0;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
}
.destino-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.destino-card__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.destino-card__img-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

/* Gradiente fotográfico */
.destino-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,.85) 0%, rgba(13,27,42,.2) 50%, transparent 70%);
}
.destino-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
}
.destino-card__name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: white;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.destino-card__count {
    font-size: 12px;
    color: rgba(255,255,255,.7);
    margin-top: 3px;
    font-weight: 500;
}
.destino-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
}

/* Gradientes temáticos por destino */
.destino-card--rj .destino-card__img-placeholder { background: linear-gradient(135deg, #1a3a5c 0%, #0d6e8a 100%); }
.destino-card--sp .destino-card__img-placeholder { background: linear-gradient(135deg, #2d1b69 0%, #614bc3 100%); }
.destino-card--bsb .destino-card__img-placeholder { background: linear-gradient(135deg, #1b4332 0%, #40916c 100%); }
.destino-card--foz .destino-card__img-placeholder { background: linear-gradient(135deg, #023e8a 0%, #0096c7 100%); }
.destino-card--rec .destino-card__img-placeholder { background: linear-gradient(135deg, #7f4f24 0%, #e07b39 100%); }
.destino-card--sal .destino-card__img-placeholder { background: linear-gradient(135deg, #3d0c02 0%, #c1440e 100%); }
.destino-card--man .destino-card__img-placeholder { background: linear-gradient(135deg, #1b4332 0%, #52b788 100%); }

/* ================================================================
   FILTROS DE BUSCA (ARQUIVO)
   ================================================================ */
.search-filters {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 32px;
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 140px;
}
.filter-group label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}
.filter-group select,
.filter-group input {
    height: 42px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    background: white;
    outline: none;
    transition: border-color .2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C6F7F' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}
.filter-group select:focus,
.filter-group input:focus { border-color: var(--brand); }
.filter-group--search input {
    background-image: none;
    padding-right: 14px;
}
.btn-filter-search {
    height: 42px;
    background: var(--brand);
    color: white;
    border-radius: 10px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .2s;
    white-space: nowrap;
    align-self: flex-end;
}
.btn-filter-search:hover { background: var(--brand-dark); }

/* ================================================================
   CARDS DE PASSEIOS
   ================================================================ */
.passeios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.passeios-grid--4col { grid-template-columns: repeat(4, 1fr); }
.passeios-grid--2col { grid-template-columns: repeat(2, 1fr); }

/* Card principal */
.passeio-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.passeio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

/* Destaque pago */
.passeio-card--featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-sm);
}
.passeio-card--featured:hover {
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
    border-color: var(--gold);
}

/* Imagem */
.passeio-card__img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    flex-shrink: 0;
}
.passeio-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.passeio-card:hover .passeio-card__img { transform: scale(1.04); }
.passeio-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--surface) 0%, var(--border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 40px;
}

/* Badges no card */
.passeio-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 6px;
    line-height: 1;
}
.badge--featured { background: var(--gold); color: #7a4e00; }
.badge--new { background: var(--brand); color: white; }
.badge--promo { background: var(--accent); color: white; }
.badge--category {
    background: rgba(13,27,42,.7);
    color: white;
    backdrop-filter: blur(4px);
}

/* Plataforma source */
.passeio-card__source {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
}
.source-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    backdrop-filter: blur(8px);
}
.source-badge--gyg { background: var(--gyg); color: white; }
.source-badge--viator { background: var(--viator); color: white; }
.source-badge--civitatis { background: var(--civitatis); color: white; }
.source-badge--airbnb { background: var(--airbnb); color: white; }
.source-badge--direto {
    background: rgba(0,200,150,.9);
    color: white;
}

/* Wishlist */
.passeio-card__wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,.06);
    color: var(--muted);
    font-size: 14px;
    transition: .2s;
}
.passeio-card__wishlist:hover { color: var(--accent); background: white; }
.passeio-card__wishlist.active { color: var(--accent); }

/* Body do card */
.passeio-card__body {
    padding: 18px 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.passeio-card__category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand-dark);
}

.passeio-card__title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta info */
.passeio-card__meta {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--mid);
}
.meta-item i { font-size: 12px; color: var(--muted); }
.meta-item--rating { color: var(--ink-soft); font-weight: 600; }
.meta-item--rating i { color: var(--gold); }

/* Footer do card */
.passeio-card__footer {
    padding: 12px 18px 16px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.passeio-card__price-wrap {}
.passeio-card__price-from {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.passeio-card__price {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.04em;
    line-height: 1;
}
.passeio-card__price sup {
    font-size: 13px;
    font-weight: 600;
    vertical-align: super;
    letter-spacing: 0;
}
.passeio-card__price-compare {
    font-size: 12px;
    color: var(--muted);
    text-decoration: line-through;
    margin-top: 2px;
}
.passeio-card__price-platforms {
    font-size: 11px;
    color: var(--brand-dark);
    font-weight: 600;
    margin-top: 3px;
}

.btn-card-ver {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    transition: background .2s, transform .15s;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-card-ver:hover { background: var(--brand-dark); transform: translateY(-1px); }
.passeio-card--featured .btn-card-ver { background: var(--accent); }
.passeio-card--featured .btn-card-ver:hover { background: #e04a2a; }

/* ================================================================
   COMPARADOR DE PREÇOS (single)
   ================================================================ */
.price-comparator {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}
.price-comparator__header {
    background: var(--surface);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-comparator__header h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
}
.price-comparator__header i { color: var(--brand); }

.price-row {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    transition: background .15s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--surface); }
.price-row--best { background: var(--brand-light); }
.price-row--best:hover { background: #d9f5ed; }

.price-row__platform {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}
.platform-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 800;
    color: white;
}
.platform-logo--gyg { background: var(--gyg); }
.platform-logo--viator { background: var(--viator); }
.platform-logo--civitatis { background: var(--civitatis); }
.platform-logo--airbnb { background: var(--airbnb); }
.platform-logo--direto { background: var(--brand); }

.price-row__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.price-row__tag {
    font-size: 10px;
    font-weight: 700;
    background: var(--brand);
    color: white;
    padding: 2px 7px;
    border-radius: 4px;
    flex-shrink: 0;
}
.price-row__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--mid);
    flex-shrink: 0;
}
.price-row__rating i { color: var(--gold); font-size: 11px; }

.price-row__price {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.4px;
    flex-shrink: 0;
}
.price-row--best .price-row__price { color: var(--brand-dark); }

.btn-price-reserve {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    transition: .2s;
    flex-shrink: 0;
    text-decoration: none;
}
.btn-price-reserve:hover { background: var(--brand-dark); transform: translateY(-1px); }
.price-row--best .btn-price-reserve { background: var(--accent); }

/* ================================================================
   CATEGORIAS GRID
   ================================================================ */
.categorias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.categoria-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.categoria-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand);
}
.categoria-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
}
.categoria-card__icon--1 { background: linear-gradient(135deg, #00C896 0%, #00A87E 100%); }
.categoria-card__icon--2 { background: linear-gradient(135deg, #FF5C38 0%, #e04a2a 100%); }
.categoria-card__icon--3 { background: linear-gradient(135deg, #0096C7 0%, #023e8a 100%); }
.categoria-card__icon--4 { background: linear-gradient(135deg, #F5A623 0%, #d4880f 100%); }
.categoria-card__icon--5 { background: linear-gradient(135deg, #9B5DE5 0%, #7B2FBE 100%); }
.categoria-card__icon--6 { background: linear-gradient(135deg, #F15BB5 0%, #c0449a 100%); }
.categoria-card__icon--7 { background: linear-gradient(135deg, #2DC653 0%, #1d9437 100%); }
.categoria-card__icon--8 { background: linear-gradient(135deg, #FB5607 0%, #c73e00 100%); }

.categoria-card__name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.categoria-card__count {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

/* ================================================================
   COMO FUNCIONA (para viajantes e agências)
   ================================================================ */
.como-funciona {
    background: var(--ink);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}
.como-funciona::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,200,150,.08) 0%, transparent 70%);
    pointer-events: none;
}
.como-funciona .section-title { color: white; }
.como-funciona .section-subtitle { color: rgba(255,255,255,.5); }
.como-funciona .section-eyebrow {
    background: rgba(0,200,150,.15);
    color: var(--brand);
}

.como-funciona__tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
}
.tab-btn {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 24px;
    border: 1.5px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.5);
    transition: .2s;
}
.tab-btn.active,
.tab-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}
/* Linha conectora */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(16.67% + 16px);
    right: calc(16.67% + 16px);
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(0,200,150,.25) 0, rgba(0,200,150,.25) 6px, transparent 6px, transparent 12px);
    pointer-events: none;
}

.step-item { text-align: center; }
.step-item__num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0,200,150,.12);
    border: 1.5px solid rgba(0,200,150,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #4ECCA3;
    position: relative;
    z-index: 1;
    transition: background .2s;
}
.step-item:hover .step-item__num { background: rgba(0,200,150,.2); }
.step-item__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.step-item__text {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    max-width: 240px;
    margin: 0 auto;
}

/* ================================================================
   CTA AGÊNCIAS
   ================================================================ */
.cta-agencias {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 56px 60px;
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
}
.cta-agencias::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
}
.cta-agencias::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: 20%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}
.cta-agencias__text { flex: 1; position: relative; z-index: 1; }
.cta-agencias__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: 14px;
}
.cta-agencias__title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: white;
    letter-spacing: -.6px;
    line-height: 1.15;
    margin-bottom: 12px;
}
.cta-agencias__subtitle {
    font-size: 16px;
    color: rgba(255,255,255,.7);
    line-height: 1.65;
}
.cta-agencias__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.btn-cta-primary {
    background: white;
    color: var(--brand-dark);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-cta-secondary {
    background: rgba(255,255,255,.15);
    color: white;
    border: 1.5px solid rgba(255,255,255,.3);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-cta-secondary:hover { background: rgba(255,255,255,.22); }

/* Planos de agências */
.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.plano-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: transform .2s, box-shadow .2s;
}
.plano-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plano-card--popular {
    border-color: var(--brand);
    box-shadow: 0 0 0 1px var(--brand), var(--shadow-md);
}
.plano-card__popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.plano-card__name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.plano-card__price {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -1px;
    margin-bottom: 4px;
}
.plano-card__price span {
    font-size: 14px;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0;
}
.plano-card__desc {
    font-size: 13px;
    color: var(--mid);
    margin-bottom: 24px;
    line-height: 1.6;
}
.plano-card__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.plano-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-soft);
}
.plano-feature i { color: var(--brand); font-size: 13px; flex-shrink: 0; }
.plano-feature--off { color: var(--muted); }
.plano-feature--off i { color: var(--muted); }

.btn-plano {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    transition: .2s;
    text-decoration: none;
}
.btn-plano--outline {
    border: 1.5px solid var(--border);
    color: var(--ink-soft);
}
.btn-plano--outline:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn-plano--brand {
    background: var(--brand);
    color: white;
}
.btn-plano--brand:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* ================================================================
   SIDEBAR / SINGLE
   ================================================================ */
.single-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
    padding: 48px 0;
}

.single-sticky { position: sticky; top: 88px; }

.booking-box {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.booking-box__header {
    background: var(--brand);
    padding: 20px 24px;
    color: white;
}
.booking-box__title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    opacity: .85;
    margin-bottom: 6px;
}
.booking-box__price {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.8px;
    line-height: 1;
}
.booking-box__price sup {
    font-size: 16px;
    vertical-align: super;
    font-weight: 600;
}
.booking-box__price-note {
    font-size: 13px;
    opacity: .7;
    margin-top: 4px;
}
.booking-box__body { padding: 20px 24px; }
.booking-box__platforms {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.booking-platform-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    transition: border-color .2s;
    text-decoration: none;
    color: inherit;
}
.booking-platform-row:hover { border-color: var(--brand); }
.booking-platform-row--best {
    border-color: var(--brand);
    background: var(--brand-light);
}
.booking-platform-row__name {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
}
.booking-platform-row__price {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
}
.booking-platform-row--best .booking-platform-row__price { color: var(--brand-dark); }
.btn-booking-main {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--accent);
    color: white;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    border-radius: var(--radius);
    transition: .2s;
    text-decoration: none;
    margin-top: 16px;
}
.btn-booking-main:hover { background: #e04a2a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,92,56,.3); }

/* ================================================================
   BUSCA / ARQUIVO LAYOUT
   ================================================================ */
.archive-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding: 40px 0 80px;
}

/* Sidebar filtros */
.filter-sidebar {
    position: sticky;
    top: 88px;
    height: fit-content;
}
.filter-sidebar__section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.filter-sidebar__section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.filter-sidebar__title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filter-sidebar__title button {
    font-size: 12px;
    color: var(--brand-dark);
    font-weight: 500;
}

/* Checkboxes customizados */
.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px 0;
}
.filter-option input[type="checkbox"] { display: none; }
.filter-option__check {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--border);
    border-radius: 5px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .2s;
}
.filter-option input:checked ~ .filter-option__check {
    background: var(--brand);
    border-color: var(--brand);
}
.filter-option input:checked ~ .filter-option__check::after {
    content: '';
    width: 4px;
    height: 7px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    display: block;
}
.filter-option__label {
    font-size: 14px;
    color: var(--ink-soft);
    flex: 1;
}
.filter-option__count {
    font-size: 12px;
    color: var(--muted);
}

/* Price range slider */
.price-range-wrap {
    padding: 4px 0;
}
.price-range-inputs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.price-input {
    flex: 1;
    height: 38px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0 10px;
    font-size: 13px;
    color: var(--ink);
    text-align: center;
    outline: none;
}
.price-input:focus { border-color: var(--brand); }
input[type="range"] {
    width: 100%;
    accent-color: var(--brand);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: var(--ink);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}
.footer-brand__text {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
}
.footer-brand__text span { color: var(--brand); }
.footer-brand__desc {
    font-size: 14px;
    color: rgba(255,255,255,.4);
    line-height: 1.7;
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: 14px;
    transition: .2s;
}
.footer-social a:hover { background: var(--brand); border-color: var(--brand); color: white; }

.footer-col__title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    transition: color .15s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom__copy {
    font-size: 13px;
    color: rgba(255,255,255,.3);
}
.footer-bottom__links {
    display: flex;
    gap: 20px;
}
.footer-bottom__links a {
    font-size: 13px;
    color: rgba(255,255,255,.3);
    transition: color .15s;
}
.footer-bottom__links a:hover { color: rgba(255,255,255,.7); }

/* ================================================================
   BADGES PLATAFORMA AFILIADA (na busca)
   ================================================================ */
.platform-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.platform-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
    border: 1.5px solid var(--border);
    color: var(--mid);
    background: white;
}
.platform-chip:hover, .platform-chip.active { border-color: transparent; color: white; }
.platform-chip--gyg.active, .platform-chip--gyg:hover { background: var(--gyg); }
.platform-chip--viator.active, .platform-chip--viator:hover { background: var(--viator); }
.platform-chip--civitatis.active, .platform-chip--civitatis:hover { background: var(--civitatis); }
.platform-chip--airbnb.active, .platform-chip--airbnb:hover { background: var(--airbnb); }
.platform-chip--todos.active, .platform-chip--todos:hover { background: var(--brand); border-color: var(--brand); }

/* ================================================================
   AVALIAÇÕES / REVIEWS
   ================================================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.review-card__stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.review-card__text {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.7;
    flex: 1;
}
.review-card__author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}
.review-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-dark);
    flex-shrink: 0;
}
.review-card__name { font-size: 13px; font-weight: 600; color: var(--ink); }
.review-card__source { font-size: 11px; color: var(--muted); }
.review-card__badge {
    margin-left: auto;
    flex-shrink: 0;
}

/* ================================================================
   ADSPOT (AdSense)
   ================================================================ */
.adspot {
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.adspot--banner { width: 100%; height: 90px; margin: 32px 0; }
.adspot--rectangle { width: 300px; height: 250px; }
.adspot--leaderboard { width: 728px; height: 90px; margin: 0 auto; }

/* ================================================================
   EMPTY STATE + LOADING
   ================================================================ */
.empty-state {
    text-align: center;
    padding: 80px 32px;
    color: var(--muted);
}
.empty-state i { font-size: 48px; margin-bottom: 16px; display: block; }
.empty-state h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink-soft);
    margin-bottom: 8px;
}

.skeleton {
    background: linear-gradient(90deg, var(--surface) 25%, #e8eff3 50%, var(--surface) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 6px;
}
@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ================================================================
   PÁGINA 404 / EXTRAS
   ================================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    padding: 16px 0;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--mid); transition: color .15s; }
.breadcrumb a:hover { color: var(--brand-dark); }
.breadcrumb i { font-size: 10px; color: var(--muted); }
.breadcrumb span { color: var(--ink-soft); font-weight: 500; }

/* ================================================================
   RESPONSIVO
   ================================================================ */
@media (max-width: 1100px) {
    .passeios-grid { grid-template-columns: repeat(2, 1fr); }
    .passeios-grid--4col { grid-template-columns: repeat(3, 1fr); }
    .categorias-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .archive-layout { grid-template-columns: 240px 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }

    /* Header */
    .header-nav, .header-actions { display: none; }
    .header-toggle { display: flex; }
    .header-inner { justify-content: space-between; }

    /* Hero */
    .hero { padding: 48px 0 40px; min-height: auto; }
    .hero__pins { display: none; }
    .hero-search { flex-wrap: wrap; gap: 0; padding: 0; border-radius: var(--radius-lg); }
    .hero-search__field { padding: 14px 16px; border-right: none; border-bottom: 1px solid var(--border); width: 100%; }
    .hero-search__btn { width: 100%; justify-content: center; border-radius: 0 0 var(--radius-lg) var(--radius-lg); padding: 16px; }
    .hero-stats { gap: 20px; }
    .hero-stat__number { font-size: 22px; }

    /* Grids */
    .passeios-grid,
    .passeios-grid--4col,
    .passeios-grid--2col { grid-template-columns: 1fr; }
    .categorias-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .planos-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }

    /* Como funciona */
    .como-funciona { padding: 48px 0; }

    /* CTA Agências */
    .cta-agencias { flex-direction: column; padding: 36px 24px; gap: 28px; text-align: center; }
    .cta-agencias__actions { flex-direction: column; width: 100%; }
    .btn-cta-primary, .btn-cta-secondary { width: 100%; justify-content: center; }
    .cta-agencias__title { font-size: 24px; }

    /* Archive */
    .archive-layout { grid-template-columns: 1fr; }
    .filter-sidebar { position: static; }

    /* Single */
    .single-layout { grid-template-columns: 1fr; }
    .single-sticky { position: static; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

    /* Destinos scroll */
    .destino-card { width: 160px; }
    .destino-card__img, .destino-card__img-placeholder { height: 210px; }

    /* AdSpot */
    .adspot--leaderboard { width: 100%; }
}

@media (max-width: 480px) {
    .categorias-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 56px 0; }
    .passeio-card__img-wrap { height: 180px; }
}

/* ================================================================
   REGIÕES — SEO Programático Interlinking
   ================================================================ */
.regioes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .regioes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .regioes-grid { grid-template-columns: 1fr; } }

.regiao-bloco {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: box-shadow .2s;
}
.regiao-bloco:hover { box-shadow: var(--shadow-sm); }

.regiao-bloco__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.regiao-bloco__title i { color: var(--brand); font-size: 14px; }

.regiao-bloco__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.regiao-link {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    background: var(--surface);
    border: 1px solid transparent;
    transition: all .2s;
}
.regiao-link:hover {
    color: var(--brand-dark);
    border-color: var(--brand);
    background: var(--brand-light);
}

/* ================================================================
   BLOG GRID — Home
   ================================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card__img {
    height: 160px;
    overflow: hidden;
}
.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }

.blog-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card__date {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 8px;
}
.blog-card__excerpt {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.5;
    flex: 1;
    margin: 0;
}
.blog-card__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-list { margin-top: 8px; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-item__question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    transition: background .15s;
}
.faq-item__question:hover { background: var(--surface); }
.faq-item__question span { flex: 1; }
.faq-item__question i {
    color: var(--muted);
    font-size: 14px;
    transition: transform .25s;
    flex-shrink: 0;
}
.faq-item__question[aria-expanded="true"] i { transform: rotate(180deg); }

.faq-item__answer {
    padding: 0 20px 18px;
}
.faq-item__answer p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.7;
    margin: 0;
}

/* ================================================================
   SEO CONTENT — Bloco texto indexável
   ================================================================ */
.seo-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}
.seo-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink-soft);
    margin: 24px 0 8px;
}
.seo-content p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ================================================================
   FOOTER — Expandido com links programáticos
   ================================================================ */
.footer-grid-regions {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 32px;
}
@media (max-width: 900px) { .footer-grid-regions { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .footer-grid-regions { grid-template-columns: repeat(2, 1fr); } }

.footer-region__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.5);
    margin-bottom: 10px;
}
.footer-region a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    padding: 3px 0;
    transition: color .15s;
}
.footer-region a:hover { color: var(--brand); }
