/* ═══════════════════════════════════════════════════════════════
   Carambeí Turismo v2 — Estilos Públicos
   ═══════════════════════════════════════════════════════════════ */

/*
 * Garante que os ícones FontAwesome renderizem corretamente
 * mesmo que o Elementor carregue uma versão diferente do FA.
 * As classes fa-solid, fa-regular e fa-brands já existem no FA6.
 * Este bloco só serve como âncora — o @font-face vem do CDN.
 */
.ct-meta-icon,
.ct-card__acoes .ct-btn i {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
}

/* ── Grid ───────────────────────────────────────────────────── */
.ct-grid {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}
.ct-cols-1 { grid-template-columns: 1fr; }
.ct-cols-2 { grid-template-columns: repeat(2, 1fr); }
.ct-cols-3 { grid-template-columns: repeat(3, 1fr); }
.ct-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .ct-cols-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .ct-cols-3, .ct-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ct-cols-2, .ct-cols-3, .ct-cols-4 { grid-template-columns: 1fr; }
}

/* ── Card ────────────────────────────────────────────────────── */
.ct-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
}
.ct-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.13);
}

.ct-card__img {
    height: 200px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.ct-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── Badge ───────────────────────────────────────────────────── */
.ct-card__badge {
    display: inline-block;
    background: #f0f5e8;
    color: #4a6741;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 3px 9px;
    border-radius: 20px;
    margin-bottom: 8px;
    align-self: flex-start;
}

/* ── Título ──────────────────────────────────────────────────── */
.ct-card__titulo {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.3;
}

/* ── Descrição ───────────────────────────────────────────────── */
.ct-card__desc {
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 14px;
    flex: 1;
}

/* ── Meta ────────────────────────────────────────────────────── */
.ct-card__meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}
.ct-meta-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.ct-meta-icon {
    font-size: 13px;
    width: 15px;
    text-align: center;
    color: #4a6741;
    flex-shrink: 0;
    line-height: 1.5;
}
.ct-meta-text {
    font-size: 12.5px;
    color: #555;
    line-height: 1.5;
}
.ct-meta-text a,
a.ct-meta-text {
    color: #4a6741;
    text-decoration: none;
}
.ct-meta-text a:hover,
a.ct-meta-text:hover { text-decoration: underline; }

/* ── Ações ───────────────────────────────────────────────────── */
.ct-card__acoes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

/* ── Botões ──────────────────────────────────────────────────── */
.ct-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: filter .15s ease;
    line-height: 1;
}
.ct-btn:hover { filter: brightness(.9); }

.ct-btn--whatsapp { background: #25d366; color: #fff; }
.ct-btn--maps     { background: #f0f0f0; color: #333; }

.ct-btn--primario {
    background: #4a6741;
    color: #fff;
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 8px;
}

/* ── Seções agrupadas ────────────────────────────────────────── */
.ct-secao { margin-bottom: 48px; }
.ct-secao-titulo {
    font-size: 22px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 3px solid #6b8e3e;
    display: inline-block;
}

/* ── Filtro ──────────────────────────────────────────────────── */
.ct-filtro-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    align-items: center;
}

.ct-filtro-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1.5px solid #e0d8cc;
    background: #fff;
    color: #7a6a55;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .2px;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
    position: relative;
    overflow: hidden;
    transition: background .18s ease, color .18s ease, border-color .18s ease,
                box-shadow .18s ease, transform .12s ease;
}

/* shimmer no hover */
.ct-filtro-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .4s ease;
    pointer-events: none;
}
.ct-filtro-btn:hover::after { transform: translateX(100%); }

.ct-filtro-btn:hover {
    border-color: #b5845a;
    color: #b5845a;
    box-shadow: 0 2px 10px rgba(181,132,90,.15);
    transform: translateY(-1px);
}

.ct-filtro-btn.ct-ativo {
    background: #b5845a;
    border-color: #b5845a;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(181,132,90,.3);
}

.ct-filtro-btn.ct-ativo:hover {
    background: #9e6e47;
    border-color: #9e6e47;
    transform: translateY(-1px);
}

/* ── Roteiro ─────────────────────────────────────────────────── */
.ct-roteiro-wrap { max-width: 800px; }

.ct-roteiro-form {
    background: #f7f9f4;
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 40px;
}
.ct-roteiro-form h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 24px;
    color: #2a2a2a;
}

.ct-form-grupo { margin-bottom: 22px; }
.ct-form-grupo > label {
    display: block;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-size: 15px;
}

.ct-opcoes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.ct-opcoes label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #444;
}
.ct-opcoes--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
@media (max-width: 600px) {
    .ct-opcoes--grid { grid-template-columns: repeat(2, 1fr); }
}

.ct-roteiro-resultado { margin-top: 20px; }
.ct-roteiro-resultado h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2a2a2a;
}

/* ── Horário no card do roteiro ──────────────────────────────── */
.ctr-parada-horario {
    font-size: 11.5px;
    color: #b5845a;
    font-weight: 500;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.ctr-parada-horario i { font-size: 11px; }

/* ── Aviso de data no resultado ──────────────────────────────── */
.ctr-data-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

/* ── Bloco de refeição ───────────────────────────────────────── */
.ctr-refeicao-bloco {
    margin-bottom: 36px;
}
.ctr-periodo-icone--ref {
    background: #fef3c7;
    color: #d97706;
}
.ctr-refeicao--almoco .ctr-periodo-icone--ref { background: #fce7d6; color: #b5845a; }
.ctr-refeicao--noite  .ctr-periodo-icone--ref { background: #e8e0f0; color: #6d4c9e; }

.ctr-opcoes-badge {
    font-size: 11px;
    font-weight: 600;
    background: #f5f0e8;
    color: #b5845a;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 8px;
}

/* Número de refeição com ícone em vez de número */
.ctr-parada-num--ref {
    background: #fef3c7;
    color: #d97706;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(217,119,6,.2);
}
.ctr-refeicao--almoco .ctr-parada-num--ref { background: #fce7d6; color: #b5845a; box-shadow: 0 2px 8px rgba(181,132,90,.2); }
.ctr-refeicao--noite  .ctr-parada-num--ref { background: #e8e0f0; color: #6d4c9e; box-shadow: 0 2px 8px rgba(109,76,158,.2); }

/* Grid de múltiplas opções */
.ctr-opcoes-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 19px;
    padding-left: 20px;
    border-left: 2px solid #ede5d6;
}

.ctr-opcao-wrap {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

/* Número da opção igual ao .ctr-parada-num */
.ctr-opcao-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e8e0f0;
    color: #6d4c9e;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: -20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-align: center;
    line-height: 1.2;
    cursor: pointer;
    transition: background .2s, color .2s, box-shadow .2s;
}
.ctr-refeicao--cafe   .ctr-opcao-num { background: #fef3c7; color: #d97706; }
.ctr-refeicao--almoco .ctr-opcao-num { background: #fce7d6; color: #b5845a; }
.ctr-refeicao--noite  .ctr-opcao-num { background: #e8e0f0; color: #6d4c9e; }

/* Card da opção — igual ao .ctr-parada-card */
.ctr-opcao-card {
    background: #fffdf9;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex: 1;
    box-shadow: 0 2px 12px rgba(44,36,22,.07);
    border: 2px solid transparent;
    cursor: pointer;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}
.ctr-opcao-card:hover {
    box-shadow: 0 6px 24px rgba(44,36,22,.12);
    transform: translateX(2px);
}
.ctr-opcao-card.selecionado {
    border-color: #b5845a;
    box-shadow: 0 4px 16px rgba(181,132,90,.25);
}
.ctr-opcao-card.selecionado + .ctr-opcao-num,
.ctr-opcao-wrap.selecionado .ctr-opcao-num {
    background: #b5845a;
    color: #fff;
    box-shadow: 0 2px 8px rgba(181,132,90,.35);
}

.ctr-opcao-img {
    width: 90px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: #ede5d6;
}
.ctr-opcao-info {
    padding: 12px 14px;
    flex: 1;
}
/* Badge "Opção X" dentro do card */
.ctr-opcao-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b5845a;
    margin-bottom: 3px;
}
.ctr-refeicao--cafe   .ctr-opcao-label { color: #d97706; }
.ctr-refeicao--noite  .ctr-opcao-label { color: #6d4c9e; }

/* Hint de seleção */
.ctr-opcoes-hint {
    font-size: 11.5px;
    color: #b5845a;
    margin: 6px 0 10px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── Botão roteiro final ─────────────────────────────────────── */
.ctr-btn-finalizar {
    width: 100%;
    padding: 16px;
    background: #4a6741;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    transition: filter .2s, transform .15s;
    font-family: inherit;
}
.ctr-btn-finalizar:hover { filter: brightness(.9); transform: translateY(-1px); }
.ctr-btn-finalizar:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ── Modal do roteiro final ──────────────────────────────────── */
.ctr-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44,36,22,.55);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ctr-modal-overlay.aberto { display: flex; }

.ctr-modal {
    background: #fffdf9;
    border-radius: 20px;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(44,36,22,.25);
}
.ctr-modal-header {
    padding: 28px 32px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    background: #fffdf9;
    z-index: 1;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0ebe0;
}
.ctr-modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c2416;
    margin: 0;
}
.ctr-modal-fechar {
    background: none;
    border: none;
    font-size: 22px;
    color: #7a6a55;
    cursor: pointer;
    line-height: 1;
    flex-shrink: 0;
    padding: 4px;
}
.ctr-modal-body { padding: 24px 32px 32px; }

/* Lista do roteiro final no modal */
.ctr-final-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #f0ebe0;
}
.ctr-final-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.ctr-final-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #b5845a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ctr-final-num--ref { background: #f5f0e8; color: #b5845a; font-size: 13px; }
.ctr-final-info { flex: 1; }
.ctr-final-tipo { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #b5845a; margin-bottom: 2px; }
.ctr-final-nome { font-size: 15px; font-weight: 700; color: #2c2416; }
.ctr-final-horario { font-size: 12px; color: #b5845a; margin-top: 2px; }

.ctr-modal-acoes {
    display: flex;
    gap: 10px;
    padding: 0 32px 28px;
}
.ctr-modal-acoes button {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    font-family: inherit;
    transition: filter .2s;
}
.ctr-modal-acoes button:hover { filter: brightness(.9); }
.ctr-btn-print { background: #b5845a; color: #fff; }
.ctr-btn-email { background: #f5f0e8; color: #2c2416; }

@media print {
    body * { visibility: hidden !important; }
    .ctr-modal, .ctr-modal * { visibility: visible !important; }
    .ctr-modal { position: fixed; inset: 0; box-shadow: none; border-radius: 0; max-height: none; }
    .ctr-modal-fechar, .ctr-modal-acoes { display: none !important; }
}

@media(max-width:600px) {
    .ctr-opcoes-grid--2,
    .ctr-opcoes-grid--3 { flex-direction: column; }
    .ctr-modal-body, .ctr-modal-header, .ctr-modal-acoes { padding-left: 20px; padding-right: 20px; }
}

/* ── Separador de dia no roteiro ─────────────────────────────── */
.ctr-dia-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 36px 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #ede5d6;
}
.ctr-dia-header:first-child { margin-top: 0; }
.ctr-dia-num {
    background: #4a6741;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.ctr-dia-info { display: flex; flex-direction: column; gap: 1px; }
.ctr-dia-label { font-size: 16px; font-weight: 700; color: #2c2416; }
.ctr-dia-data  { font-size: 12px; color: #7a6a55; }
.ctr-dia-separador {
    height: 1px;
    background: linear-gradient(to right, transparent, #ede5d6, transparent);
    margin: 32px 0;
}

/* ── Café da tarde ───────────────────────────────────────────── */
.ctr-refeicao--cafe-tarde .ctr-periodo-icone {
    background: #fdf3e3;
    color: #c0782a;
}

/* ── Badge Indicação Geográfica ──────────────────────────────── */
.ctr-ig-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #b8860b, #daa520, #b8860b);
    background-size: 200% auto;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px 4px 8px;
    border-radius: 4px;
    margin-top: 4px;
    box-shadow: 0 1px 4px rgba(184,134,11,0.35);
    white-space: nowrap;
    flex-wrap: wrap;
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
}
.ctr-ig-badge i {
    font-size: 11px;
    flex-shrink: 0;
    color: #fff9e0;
}

/* Badge sobre a foto */
.ctr-ig-foto-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.ctr-parada-img { position: relative; }


/* ── Todos os cards de opção — apagados quando não selecionados ── */
.ctr-opcao-item:not(.selecionado) {
    opacity: 0.45 !important;
    transition: opacity 0.2s;
}
.ctr-opcao-item:not(.selecionado) .ctr-opcao-card-sel {
    filter: grayscale(30%);
}
.ctr-opcao-item.selecionado {
    opacity: 1 !important;
}
.ctr-opcao-item.selecionado .ctr-opcao-card-sel {
    border-color: #4a6741 !important;
}

/* ── Atrativos clicáveis (multi-select) ──────────────────────── */
.ctr-opcao-check {
    background: #e8f5e2 !important;
    color: #4a6741 !important;
    border: 2px solid #4a6741 !important;
    transition: background 0.2s, color 0.2s;
}
.ctr-opcao-atrativo:not(.selecionado) .ctr-opcao-check {
    background: #f0f0f0 !important;
    color: #bbb !important;
    border-color: #ddd !important;
}
.ctr-nao-ig-aviso { display: none; }

/* Item excluído por seleção em outro dia */
.ctr-opcao--excluido {
    display: none !important;
}

/* Cabeçalho de dia no modal final */
.ctr-final-dia-header {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a6741;
    padding: 14px 0 6px;
    border-bottom: 1px solid #ede5d6;
    margin-bottom: 8px;
}
.ctr-final-dia-header:first-child { padding-top: 0; }

/* ── Mensagem quando todos atrativos do período já foram alocados ── */
.ctr-atr-vazio {
    padding: 16px 18px;
    background: #f5f5f0;
    border-radius: 10px;
    color: #888;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    margin: 4px 0;
}
.ctr-atr-vazio i {
    font-size: 18px;
    color: #4a6741;
    display: block;
    margin-bottom: 6px;
}
.ctr-atr-vazio small {
    font-size: 11px;
    color: #aaa;
}

/* ══════════════════════════════════════════════════════════════════════════
   EVENTOS — Grid com hover reveal
   ══════════════════════════════════════════════════════════════════════════ */

.cte-secao {
    padding: 60px 0;
    background: #fdf8f3;
    width: 100%;
    box-sizing: border-box;
}

/* ── Cabeçalho ──────────────────────────────────────────────────────────── */
.cte-secao-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.cte-acento {
    width: 38px;
    height: 4px;
    border-radius: 2px;
    background: #4a6741;
    margin-bottom: 12px;
}
.cte-secao-titulo {
    font-size: 30px;
    font-weight: 800;
    color: #2c2416;
    margin: 0 0 4px;
    line-height: 1.15;
}
.cte-secao-sub {
    font-size: 15px;
    color: #7a6a55;
    margin: 0;
}
.cte-btn-divulgar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: transparent;
    border: 2px solid #4a6741;
    border-radius: 30px;
    color: #4a6741;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, color .2s;
}
.cte-btn-divulgar:hover { background: #4a6741; color: #fff; }

/* ── Grid ───────────────────────────────────────────────────────────────── */
.cte-grid {
    display: grid !important;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}
.cte-grid--2 { grid-template-columns: repeat(2, 1fr) !important; }
.cte-grid--3 { grid-template-columns: repeat(3, 1fr) !important; }
.cte-grid--4 { grid-template-columns: repeat(4, 1fr) !important; }

/* ── Card ───────────────────────────────────────────────────────────────── */
.cte-card {
    position: relative !important;
    height: 340px !important;
    border-radius: 14px;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center !important;
    background-color: #c8bfb0;
    cursor: pointer;
    box-shadow: 0 2px 16px rgba(44,36,22,.10);
    transition: box-shadow .3s, transform .3s;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box;
}
.cte-card:hover {
    box-shadow: 0 8px 40px rgba(44,36,22,.18);
    transform: translateY(-3px);
}

/* Categoria badge */
.cte-card-cat {
    position: absolute !important;
    top: 14px;
    right: 14px;
    background: rgba(44,36,22,.55);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 20px;
    z-index: 3;
}

/* Data badge */
.cte-card-data {
    position: absolute !important;
    top: 14px;
    left: 14px;
    background: #4a6741;
    color: #fff;
    border-radius: 10px;
    padding: 7px 13px;
    text-align: center;
    line-height: 1;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0,0,0,.22);
}
.cte-card-dia {
    display: block;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -1px;
}
.cte-card-mes {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 2px;
    opacity: .85;
}

/* ── Rodapé sempre visível ──────────────────────────────────────────────── */
.cte-card-base {
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 16px 18px;
    background: linear-gradient(to top, rgba(20,14,6,.85) 0%, transparent 100%);
    z-index: 2;
    transition: opacity .3s;
    pointer-events: none;
}
.cte-card.cte-hovered .cte-card-base {
    opacity: 0;
}
.cte-card-nome {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 5px;
    line-height: 1.2;
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.cte-card-data-txt {
    font-size: 11px;
    color: rgba(255,255,255,.82);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cte-card-data-txt i { font-size: 10px; }

/* ── Overlay hover — controlado por classe JS ───────────────────────────── */
.cte-card-hover {
    position: absolute !important;
    inset: 0;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20,14,6,.76);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 4;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: none;
}
.cte-card.cte-hovered .cte-card-hover {
    opacity: 1;
    pointer-events: auto;
}
.cte-card-hover-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    transform: translateY(10px);
    transition: transform .3s ease;
}
.cte-card.cte-hovered .cte-card-hover-inner {
    transform: translateY(0);
}
.cte-card-hover-nome {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}
.cte-card-hover-desc {
    font-size: 12px;
    color: rgba(255,255,255,.80);
    margin: 0;
    line-height: 1.55;
}
.cte-card-hover-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.cte-card-hover-meta span {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 11px;
    color: rgba(255,255,255,.75);
    line-height: 1.4;
}
.cte-card-hover-meta i {
    font-size: 10px;
    margin-top: 2px;
    flex-shrink: 0;
    color: rgba(255,255,255,.5);
}
.cte-card-hover-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 18px;
    background: #4a6741;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
    transition: opacity .2s;
    align-self: flex-start;
    margin-top: 4px;
}
.cte-card-hover-btn:hover { opacity: .88; }

/* ── Vazio ──────────────────────────────────────────────────────────────── */
.cte-vazio {
    text-align: center;
    padding: 60px 20px;
    color: #b5a090;
}
.cte-vazio i { font-size: 48px; margin-bottom: 16px; display: block; color: #d5c9bb; }
.cte-vazio p  { font-size: 16px; margin: 0 0 20px; }
.cte-btn-divulgar-vazio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #4a6741;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: opacity .2s;
}
.cte-btn-divulgar-vazio:hover { opacity: .88; }

/* ── Responsivo ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .cte-grid--4 { grid-template-columns: repeat(2, 1fr) !important; }
    .cte-grid--3 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 540px) {
    .cte-grid--4,
    .cte-grid--3,
    .cte-grid--2 { grid-template-columns: 1fr !important; }
    .cte-secao-titulo  { font-size: 24px; }
    .cte-secao-header  { flex-direction: column; align-items: flex-start; }
    .cte-card          { height: 260px !important; }
}

/* Badge de data multi-dia */
.cte-card-data--multi {
    padding: 7px 11px;
}
.cte-card-dia--range {
    font-size: 13px !important;
    letter-spacing: 0 !important;
    font-weight: 800;
}
.cte-card-data--multi .cte-card-mes {
    font-size: 10px;
    letter-spacing: .3px;
    margin-top: 3px;
}

/* ── Eventos no roteiro ─────────────────────────────────────────────────── */
.ctr-eventos-bloco {
    background: #f5f0fb;
    border-radius: 16px;
    padding: 16px 18px 18px;
    margin-bottom: 18px;
    border-left: 4px solid #7b4fa6;
}
.ctr-eventos-bloco .ctr-periodo-header {
    margin-bottom: 12px;
}
.ctr-eventos-bloco .ctr-periodo-icone {
    background: #7b4fa6 !important;
}
.ctr-eventos-bloco .ctr-opcoes-lista {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ctr-evento-item {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(123,79,166,.10);
    min-height: 90px;
}
.ctr-evento-img {
    width: 100px;
    min-width: 100px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: #d8ccec;
}
.ctr-evento-info {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}
.ctr-evento-nome {
    font-size: 14px;
    font-weight: 700;
    color: #2c2416;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ctr-evento-desc {
    font-size: 12px;
    color: #7a6a55;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ctr-evento-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-top: 2px;
}
.ctr-evento-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #6d4c9e;
    font-weight: 500;
}
.ctr-evento-meta i {
    font-size: 10px;
    opacity: .75;
}
.ctr-evento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: #7b4fa6;
    color: #fff !important;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
    align-self: flex-start;
    margin-top: 4px;
    transition: opacity .2s;
}
.ctr-evento-link:hover { opacity: .85; }

/* ── Widget Guias Turísticos ─────────────────────────────────────────────── */
.ctg-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(44,36,22,.08);
    overflow: hidden;
    transition: box-shadow .3s, transform .3s;
    cursor: default;
}
.ctg-card:hover {
    box-shadow: 0 8px 32px rgba(44,36,22,.16);
    transform: translateY(-4px);
}

/* Frente */
.ctg-frente {
    padding: 32px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.ctg-foto-wrap {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid #b5845a;
    border-style: solid;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0ebe0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ctg-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.ctg-foto-placeholder {
    font-size: 48px;
    color: #c8b89a;
}
.ctg-nome {
    font-size: 17px;
    font-weight: 700;
    color: #2c2416;
    margin: 0;
    line-height: 1.2;
}
.ctg-bio {
    font-size: 13px;
    color: #7a6a55;
    line-height: 1.5;
    margin: 0;
}
.ctg-cargo {
    font-size: 12px;
    font-weight: 700;
    color: #b5845a;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.ctg-redes {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 4px;
}
.ctg-rede {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f0ebe0;
    color: #7a6a55;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.ctg-rede:hover { background: #b5845a; color: #fff; }
.ctg-rede--wa:hover  { background: #25d366; color: #fff; }
.ctg-rede--ig:hover  { background: #e1306c; color: #fff; }
.ctg-rede--fb:hover  { background: #1877f2; color: #fff; }

/* Hover overlay */
.ctg-card-hover {
    position: absolute;
    inset: 0;
    background: #2c5282;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    padding: 24px 20px;
}
.ctg-card:hover .ctg-card-hover {
    opacity: 1;
}
.ctg-hover-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.ctg-hover-foto {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    border: 2px solid rgba(255,255,255,.4);
    flex-shrink: 0;
}
.ctg-hover-nome {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.ctg-hover-cargo {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .8px;
}
.ctg-hover-bio {
    font-size: 13px;
    color: rgba(255,255,255,.85);
    line-height: 1.5;
    margin: 0;
}
.ctg-redes--hover .ctg-rede {
    background: rgba(255,255,255,.15);
    color: #fff;
}
.ctg-redes--hover .ctg-rede:hover { background: rgba(255,255,255,.35); }
