/* ===== Banner ===== */
.hp-banner {
    position: relative;
    padding: 70px 24px 60px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.hp-banner-deco {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    top: -220px; right: -120px;
    pointer-events: none;
}
.hp-banner-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.hp-banner-ico { font-size: 52px; display: block; margin-bottom: 18px; opacity: .85; }
.hp-banner-inner img.hp-banner-ico { max-height: 64px; border-radius: 6px; margin: 0 auto 18px; }
.hp-banner-inner h1 { font-size: 30px; font-weight: 700; margin: 0 0 6px; }
.hp-banner-inner h3 { font-size: 17px; font-weight: 400; opacity: .8; margin: 0 0 14px; }
.hp-banner-inner p  { font-size: 14px; opacity: .65; line-height: 1.6; margin: 0; }

/* Banner fullcover */
.hp-banner--fullcover {
    position: relative;
    padding: 0;
    overflow: hidden;
}
.hp-banner--fullcover .hp-banner-bg-img {
    display: block;
    width: 100%;
    height: auto;
}
.hp-banner--fullcover .hp-banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: .45;
}
.hp-banner--fullcover .hp-banner-inner {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.hp-banner--fullcover .hp-banner-deco { display: none; }

/* ===== Container ===== */
.hp-container { max-width: 1000px; margin: 0 auto; padding: 10px 20px 40px; }

/* ===== Seções ===== */
.hp-sec { margin-bottom: 32px; }
.hp-sec-title {
    font-size: 17px; font-weight: 600;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e4e9f0;
    display: flex; align-items: center; gap: 8px;
}
.hp-sec-title i { font-size: 15px; opacity: .5; }

/* ===== Cards (links) ===== */
.hp-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 14px;
}
.hp-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 16px;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    text-decoration: none; color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: transform .2s, box-shadow .2s;
}
.hp-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.hp-card-ico {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px;
    overflow: hidden;
}
.hp-card-ico img { max-height: 100%; max-width: 100%; object-fit: contain; }
.hp-card-txt { font-size: 14px; font-weight: 500; text-align: center; }

/* ===== Avisos ===== */
.hp-av {
    background: #fff;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 1px 5px rgba(0,0,0,.05);
    border-left: 4px solid #ccc;
}
.hp-av--info { border-left-color: #3498db; }
.hp-av--warn { border-left-color: #f39c12; }
.hp-av--urg  { border-left-color: #e74c3c; }
.hp-av-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.hp-av-top strong { font-size: 15px; color: #333; }
.hp-av-top small  { font-size: 12px; color: #aaa; }
.hp-av p { margin: 0; font-size: 14px; color: #666; line-height: 1.55; }

/* ===== Texto ===== */
.hp-texto {
    background: #fff;
    border-radius: 10px;
    padding: 22px 24px;
    font-size: 14px; color: #555; line-height: 1.7;
    box-shadow: 0 1px 5px rgba(0,0,0,.05);
}
.hp-texto p { margin: 0 0 10px; }
.hp-texto p:last-child { margin: 0; }

/* ===== Contadores ===== */
.hp-nums {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 14px;
}
.hp-num {
    background: #fff;
    border-radius: 12px;
    padding: 24px 14px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: transform .2s;
}
.hp-num:hover { transform: translateY(-3px); }
.hp-num-ico { font-size: 26px; margin-bottom: 10px; }
.hp-num-ico img { max-height: 32px; max-width: 48px; object-fit: contain; }
.hp-num-val { display: block; font-size: 30px; font-weight: 700; color: #2c3e50; }
.hp-num-lbl { display: block; font-size: 12px; color: #999; margin-top: 4px; }

/* ===== Empty ===== */
.hp-empty {
    text-align: center;
    padding: 100px 20px;
    color: #bbb;
}
.hp-empty i { font-size: 64px; margin-bottom: 20px; opacity: .25; display: block; }
.hp-empty h2 { margin: 0 0 6px; color: #888; font-size: 24px; }
.hp-empty p  { margin: 0; font-size: 15px; }

/* ===== Galeria ===== */
.hp-galeria { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.hp-gal-item { border-radius: 10px; overflow: hidden; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.05); transition: transform .2s; }
.hp-gal-item:hover { transform: translateY(-3px); }
.hp-gal-item img { width: 100%; height: 160px; object-fit: cover; display: block; }
.hp-gal-item span { display: block; font-size: 13px; padding: 8px 12px; color: #555; }

/* ===== FAQ ===== */
.hp-faq-item { background: #fff; border-radius: 10px; margin-bottom: 8px; box-shadow: 0 1px 5px rgba(0,0,0,.05); overflow: hidden; }
.hp-faq-q { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; font-size: 15px; font-weight: 600; color: #333; cursor: pointer; transition: background .15s; }
.hp-faq-q:hover { background: #f8f9fb; }
.hp-faq-q i { font-size: 12px; color: #999; transition: transform .2s; }
.hp-faq-a { max-height: 0; overflow: hidden; padding: 0 18px; font-size: 14px; color: #666; line-height: 1.6; transition: max-height .3s ease, padding .3s ease; }
.hp-faq-open .hp-faq-q i { transform: rotate(180deg); }
.hp-faq-open .hp-faq-a { max-height: 500px; padding: 0 18px 14px; }

/* ===== Depoimentos ===== */
.hp-depoimentos { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.hp-dep-card { background: #fff; border-radius: 12px; padding: 24px 20px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.hp-dep-avatar { width: 56px; height: 56px; border-radius: 50%; background: #e8ecf1; margin: 0 auto 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; color: #bbb; font-size: 22px; }
.hp-dep-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hp-dep-texto { font-size: 14px; color: #666; font-style: italic; margin: 0 0 12px; line-height: 1.5; }
.hp-dep-nome { display: block; font-size: 14px; color: #333; }
.hp-dep-cargo { display: block; font-size: 12px; color: #999; margin-top: 2px; }

/* ===== CTA ===== */
.hp-cta { border-radius: 12px; position: relative; overflow: hidden; display: flex; min-height: 350px; }
.hp-cta--largo { border-radius: 0; }
.hp-cta--grid { display: block; }
.hp-cta-grid { display: grid; grid-template-rows: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; width: 100%; height: 100%; min-height: inherit; }
.hp-cta-cell { max-width: 100%; }
.hp-cta-cell--stacked { display: flex; flex-direction: column; gap: 16px; }
.hp-cta h2 { font-size: 26px; font-weight: 700; margin: 0 0 6px; }
.hp-cta h3 { font-size: 16px; font-weight: 400; opacity: .85; margin: 0 0 10px; }
.hp-cta p { font-size: 14px; opacity: .75; margin: 0 0 20px; line-height: 1.6; }
.hp-cta-text { position: relative; z-index: 2; }
.hp-cta-btn { display: inline-block; padding: 10px 28px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.hp-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.hp-cta-btn--outline { background: transparent !important; border: 2px solid; }
.hp-cta-btn--link { background: transparent !important; padding: 10px 4px; text-decoration: underline; }
.hp-cta-btns { display: flex; flex-wrap: wrap; gap: 10px; }
/* Imagem de fundo */
.hp-cta--img { background: none !important; }
.hp-cta-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hp-cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }

/* ===== Vídeo ===== */
.hp-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 10px; overflow: hidden; background: #000; box-shadow: 0 2px 10px rgba(0,0,0,.1); }
.hp-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.hp-video-desc { font-size: 13px; color: #888; margin: 10px 0 0; }

/* ===== Equipe ===== */
.hp-equipe { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.hp-eq-card { background: #fff; border-radius: 12px; padding: 20px 12px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,.05); transition: transform .2s; }
.hp-eq-card:hover { transform: translateY(-3px); }
.hp-eq-avatar { width: 60px; height: 60px; border-radius: 50%; background: #e8ecf1; margin: 0 auto 10px; overflow: hidden; display: flex; align-items: center; justify-content: center; color: #bbb; font-size: 24px; }
.hp-eq-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hp-eq-card strong { display: block; font-size: 14px; color: #333; }
.hp-eq-card small { display: block; font-size: 12px; color: #999; margin-top: 2px; }

/* ===== Parceiros ===== */
.hp-parceiros { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }
.hp-parc-item { width: 100px; height: 70px; background: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 6px rgba(0,0,0,.06); overflow: hidden; transition: transform .2s; text-decoration: none; }
.hp-parc-item:hover { transform: translateY(-2px); }
.hp-parc-item img { max-width: 85%; max-height: 85%; object-fit: contain; }

/* ===== Timeline ===== */
.hp-timeline { position: relative; padding-left: 28px; }
.hp-timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: #e4e9f0; }
.hp-tl-item { position: relative; margin-bottom: 20px; }
.hp-tl-dot { position: absolute; left: -28px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: #3498db; border: 3px solid #fff; box-shadow: 0 0 0 2px #3498db; }
.hp-tl-content { background: #fff; border-radius: 10px; padding: 14px 18px; box-shadow: 0 1px 5px rgba(0,0,0,.05); }
.hp-tl-content small { font-size: 12px; color: #3498db; font-weight: 600; }
.hp-tl-content strong { display: block; font-size: 15px; color: #333; margin: 3px 0; }
.hp-tl-content p { margin: 0; font-size: 13px; color: #666; line-height: 1.5; }

/* ===== Responsivo ===== */
@media (max-width: 768px) {
    .hp-banner { padding: 50px 20px 40px; }
    .hp-banner-ico { font-size: 40px; }
    .hp-banner-inner h1 { font-size: 24px; }
    .hp-banner-inner h3 { font-size: 15px; }
    .hp-container { padding: 10px 16px 30px; }
    .hp-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hp-nums  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hp-depoimentos { grid-template-columns: 1fr; }
    .hp-equipe { grid-template-columns: repeat(2, 1fr); }
    .hp-galeria { grid-template-columns: repeat(2, 1fr); }
    .hp-cta { min-height: 200px; }
    .hp-cta h2 { font-size: 22px; }
    .hp-cta-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 16px; }
}

@media (max-width: 480px) {
    .hp-banner { padding: 36px 16px 30px; }
    .hp-banner-inner h1 { font-size: 20px; }
    .hp-banner-deco { display: none; }
    .hp-cards { grid-template-columns: 1fr 1fr; }
    .hp-card { padding: 16px 10px; gap: 10px; }
    .hp-card-ico { width: 42px; height: 42px; font-size: 18px; border-radius: 10px; }
    .hp-av-top { flex-direction: column; align-items: flex-start; gap: 2px; }
    .hp-nums { grid-template-columns: 1fr 1fr; }
    .hp-num { padding: 18px 10px; }
    .hp-num-val { font-size: 24px; }
    .hp-galeria { grid-template-columns: 1fr 1fr; }
    .hp-gal-item img { height: 110px; }
    .hp-equipe { grid-template-columns: 1fr 1fr; }
    .hp-cta { padding: 30px 16px; }
    .hp-cta h2 { font-size: 20px; }
    .hp-cta-btn { padding: 8px 20px; font-size: 13px; }
    .hp-timeline { padding-left: 22px; }
}

/* ===== Formulário ===== */
.hp-form { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.hp-form-field { margin-bottom: 16px; }
.hp-form-field label { display: block; font-size: 13px; font-weight: 600; color: #555; margin-bottom: 6px; }
.hp-form-field input, .hp-form-field textarea, .hp-form-field select { width: 100%; padding: 10px 14px; border: 1px solid #dde3ec; border-radius: 8px; font-size: 14px; color: #333; background: #f8f9fb; box-sizing: border-box; }
.hp-form-field textarea { resize: vertical; min-height: 90px; }
.hp-form-btn { display: inline-block; padding: 11px 32px; background: #3498db; color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s; }
.hp-form-btn:hover { background: #2980b9; }

/* ===== Pricing ===== */
.hp-pricing { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; align-items: end; }
.hp-pricing-col { background: #fff; border-radius: 14px; padding: 28px 22px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,.06); position: relative; }
.hp-pricing-col--dest { background: #3498db; color: #fff; transform: scale(1.04); box-shadow: 0 8px 30px rgba(52,152,219,.3); }
.hp-pricing-col--dest h3, .hp-pricing-col--dest .hp-pricing-preco, .hp-pricing-col--dest ul li { color: #fff; }
.hp-pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #e74c3c; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 14px; border-radius: 20px; white-space: nowrap; }
.hp-pricing-col h3 { font-size: 18px; font-weight: 700; margin: 0 0 12px; color: #2c3e50; }
.hp-pricing-preco { font-size: 28px; font-weight: 800; color: #2c3e50; margin-bottom: 4px; }
.hp-pricing-preco small { font-size: 13px; font-weight: 400; opacity: .7; display: block; }
.hp-pricing-col ul { list-style: none; padding: 16px 0; margin: 0; border-top: 1px solid rgba(0,0,0,.07); border-bottom: 1px solid rgba(0,0,0,.07); text-align: left; }
.hp-pricing-col ul li { font-size: 13px; color: #555; padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.hp-pricing-col ul li i { color: #27ae60; font-size: 11px; }
.hp-pricing-col--dest ul li i { color: #a8e6cf; }
.hp-pricing-btn { display: inline-block; margin-top: 18px; padding: 10px 28px; background: #3498db; color: #fff; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background .2s; }
.hp-pricing-col--dest .hp-pricing-btn { background: #fff; color: #3498db; }

/* ===== Downloads ===== */
.hp-downloads { display: flex; flex-direction: column; gap: 8px; }
.hp-dl-item { display: flex; align-items: center; gap: 14px; background: #fff; border-radius: 10px; padding: 14px 18px; box-shadow: 0 1px 5px rgba(0,0,0,.05); text-decoration: none; color: #333; transition: transform .15s, box-shadow .15s; }
.hp-dl-item:hover { transform: translateX(4px); box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.hp-dl-item > i:first-child { font-size: 22px; flex-shrink: 0; }
.hp-dl-info { flex: 1; }
.hp-dl-info span { display: block; font-size: 14px; font-weight: 600; }
.hp-dl-info small { font-size: 12px; color: #999; }
.hp-dl-ico { font-size: 14px; color: #bbb; }

/* ===== Mapa ===== */
.hp-mapa iframe { display: block; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.hp-mapa-legenda { font-size: 13px; color: #888; margin: 8px 0 0; text-align: center; }

/* ===== Contagem Regressiva ===== */
.hp-ctd-grid { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; padding: 20px 0; }
.hp-ctd-box { border-radius: 12px; padding: 16px 20px; text-align: center; color: #fff; min-width: 70px; }
.hp-ctd-box span { display: block; font-size: 32px; font-weight: 800; line-height: 1; }
.hp-ctd-box small { display: block; font-size: 11px; opacity: .8; margin-top: 4px; text-transform: uppercase; }
.hp-contagem-msg { text-align: center; font-size: 20px; font-weight: 700; color: #e74c3c; padding: 30px 0; }
.hp-contagem-texto { text-align: center; font-size: 15px; color: #666; margin: 12px 0 0; }

/* ===== Embed ===== */
.hp-embed { width: 100%; overflow: hidden; border-radius: 10px; }
.hp-embed iframe { display: block; width: 100%; border: none; }

/* ===== Cards Informativos (popup) ===== */
.hp-popup-grid {
    gap: 14px;
}
.hp-popup-card {
    background: #fff;
    border-radius: 10px;
    border-top: 4px solid #3498db;
    padding: 20px 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: transform .2s, box-shadow .2s;
}
.hp-popup-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.09); }
.hp-popup-ico { font-size: 26px; margin-bottom: 10px; line-height: 1; }
.hp-popup-ico-img { max-height: 28px; max-width: 40px; object-fit: contain; }
.hp-popup-titulo { display: block; font-size: 15px; font-weight: 700; color: #2c3e50; margin-bottom: 6px; }
.hp-popup-texto { margin: 0; font-size: 13px; color: #666; line-height: 1.55; }

@media (max-width: 600px) {
    .hp-popup-grid { grid-template-columns: 1fr !important; }
}

/* ===== Responsivo novos ===== */
@media (max-width: 768px) {
    .hp-pricing { grid-template-columns: 1fr; }
    .hp-pricing-col--dest { transform: none; }
}
@media (max-width: 480px) {
    .hp-ctd-box { min-width: 56px; padding: 12px 14px; }
    .hp-ctd-box span { font-size: 24px; }
}
