/**
 * CobreZap Homepage — Design System
 * Landing page SaaS moderna, responsiva, mobile-first
 * 
 * @package CobreZap
 * @author CloudShops <https://cloudwebcom.com.br>
 * @since 2.8.0
 * @modified 2026-02-17T23:50:00-03:00
 */

/* ========================================
   VARIAVEIS
   ======================================== */

:root {
    --hp-white: #FFFFFF;
    --hp-offwhite: #F8FAFC;
    --hp-gray-50: #F1F5F9;
    --hp-gray-100: #E2E8F0;
    --hp-gray-200: #CBD5E1;
    --hp-gray-300: #94A3B8;
    --hp-gray-400: #64748B;
    --hp-gray-500: #475569;
    --hp-gray-600: #334155;
    --hp-gray-700: #1E293B;
    --hp-gray-800: #0F172A;

    --hp-green: #25D366;
    --hp-green-hover: #1EBF5A;
    --hp-green-dark: #128C7E;
    --hp-green-deep: #075E54;
    --hp-green-light: #DCF8C6;
    --hp-green-bg: #E8F5E9;

    --hp-blue-meta: #0668E1;
    --hp-blue-light: #1877F2;

    --hp-lima: #DDFF02;
    --hp-azul-cobalto: #0B218E;
    --hp-azul-marinho: #091734;
    --hp-verde-musgo: #00434F;

    --hp-text: #1A202C;
    --hp-text-secondary: #64748B;
    --hp-text-muted: #94A3B8;

    --hp-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --hp-shadow: 0 4px 24px rgba(0,0,0,0.06);
    --hp-shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
    --hp-shadow-xl: 0 16px 64px rgba(0,0,0,0.10);

    --hp-radius: 12px;
    --hp-radius-lg: 16px;
    --hp-radius-xl: 24px;

    --hp-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --hp-container: 1200px;
    --hp-font: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========================================
   RESET E BASE
   ======================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.hp-body {
    font-family: var(--hp-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--hp-text);
    background: var(--hp-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Titulos usam peso medio; <strong> dentro deles fica extrabold para destaque */
.hp-body h1, .hp-body h2, .hp-body h3 {
    font-weight: 500;
}

.hp-body h1 strong, .hp-body h2 strong, .hp-body h3 strong {
    font-weight: 800;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--hp-transition);
}

/* ========================================
   CONTAINER
   ======================================== */

.hp-container {
    max-width: var(--hp-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   0. BARRA META (TOPO)
   ======================================== */

.hp-meta-bar {
    text-align: center;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1001;
}

.hp-meta-bar span {
    opacity: 0.9;
}

.hp-meta-bar strong {
    opacity: 1;
}

.hp-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 8px;
    vertical-align: middle;
}

/* ========================================
   1. HEADER
   ======================================== */

.hp-header {
    background: linear-gradient(135deg, #0D47A1 0%, #1B5E20 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    transition: border-color var(--hp-transition);
}

.hp-header.hp-header--scrolled {
    box-shadow: none;
    border-bottom: 2px solid var(--hp-lima);
}

.hp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    min-height: 110px;
    max-width: var(--hp-container);
    margin: 0 auto;
}

.hp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--hp-white);
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.hp-logo img {
    height: 48px;
    width: auto;
}

.hp-logo svg {
    width: 28px;
    height: 28px;
    fill: var(--hp-green);
}

.hp-nav-pill {
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 6px 28px;
}

.hp-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.hp-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--hp-transition);
    white-space: nowrap;
}

.hp-nav a:hover,
.hp-nav a.active {
    color: var(--hp-lima);
}

.hp-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.hp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--hp-transition);
    white-space: nowrap;
    text-decoration: none;
}

.hp-btn-primary {
    background: var(--hp-lima);
    color: var(--hp-azul-marinho);
    border-radius: 10px;
}

.hp-btn-primary svg {
    color: var(--hp-azul-marinho);
}

.hp-btn-primary:hover {
    transform: translateY(-2px);
}

.hp-btn-outline {
    background: transparent;
    color: var(--hp-white);
    border: none;
    gap: 10px;
}

.hp-btn-outline svg {
    background: var(--hp-lima);
    color: var(--hp-azul-marinho);
    border-radius: 50%;
    padding: 4px;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.hp-btn-outline:hover {
    transform: translateY(-2px);
}

.hp-btn-outline-green {
    background: transparent;
    color: var(--hp-green-dark);
    border: 2px solid var(--hp-green);
}

.hp-btn-outline-green:hover {
    transform: translateY(-2px);
}

.hp-btn-youtube {
    background: #CC0000;
    color: var(--hp-white);
    border: none;
}

.hp-btn-youtube:hover {
    transform: translateY(-2px);
}

.hp-btn-youtube svg {
    width: 22px;
    height: 22px;
}

.hp-btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 10px;
}

.hp-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* Menu mobile */
.hp-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--hp-white);
    cursor: pointer;
    padding: 8px;
}

.hp-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.hp-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hp-green-deep);
    z-index: 9999;
    flex-direction: column;
    padding: 24px;
}

.hp-mobile-nav.hp-mobile-nav--open {
    display: flex;
}

.hp-mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.hp-mobile-nav-close {
    background: none;
    border: none;
    color: var(--hp-white);
    cursor: pointer;
    padding: 8px;
}

.hp-mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hp-mobile-nav-links a {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hp-mobile-nav-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
}

/* ========================================
   2. HERO
   ======================================== */

.hp-hero {
    background: linear-gradient(180deg, #f4f7f5 0%, #f8faf9 50%, #fbfcfb 100%);
    padding: 80px 0 100px;
    overflow: hidden;
    position: relative;
}

.hp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,211,102,0.1);
    color: var(--hp-green-dark);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(37,211,102,0.2);
}

.hp-hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--hp-green);
    border-radius: 50%;
    animation: hp-pulse 2s infinite;
}

@keyframes hp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hp-hero h1 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--hp-gray-800);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hp-hero-subtitle {
    font-size: 18px;
    color: var(--hp-text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hp-hero-bullets {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hp-hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--hp-gray-700);
    line-height: 1.5;
}

.hp-hero-bullets li svg {
    width: 24px;
    height: 24px;
    color: var(--hp-green);
    flex-shrink: 0;
    margin-top: 0;
}

.hp-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.hp-hero-image {
    position: relative;
    animation: hp-float 4s ease-in-out infinite;
}

.hp-hero-image img {
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.hp-hero-zoom-wrap {
    overflow: hidden;
    border-radius: var(--hp-radius-lg);
    cursor: zoom-in;
    position: relative;
}

.hp-hero-zoom-wrap img {
    width: 100%;
    display: block;
    transition: transform 0.15s ease-out;
    transform-origin: center center;
}

.hp-hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.hp-hero-badge-card {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hp-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hp-hero-badge-card svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.hp-hero-badge-card--green {
    background: var(--hp-green-dark);
}

.hp-hero-badge-card--blue {
    background: #1565C0;
}

/* Placeholder para imagem */
.hp-hero-placeholder {
    background: linear-gradient(135deg, var(--hp-green-bg), var(--hp-gray-50));
    border-radius: var(--hp-radius-lg);
    padding: 60px 40px;
    text-align: center;
    border: 2px dashed var(--hp-gray-200);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--hp-text-muted);
}

/* ========================================
   SEÇÕES GENÉRICAS
   ======================================== */

.hp-section {
    padding: 80px 0;
}

.hp-section--alt {
    background: var(--hp-offwhite);
}

.hp-section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 56px;
}

.hp-section-header h2 {
    font-size: 36px;
    font-weight: 400;
    color: var(--hp-gray-800);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hp-section-header p {
    font-size: 18px;
    color: var(--hp-text-secondary);
    line-height: 1.6;
}

/* Secao com fundo gradiente forte */
.hp-section--gradient {
    background: linear-gradient(135deg, #0D47A1 0%, #1B5E20 100%);
}

.hp-section--gradient .hp-section-header h2 {
    color: var(--hp-lima);
}

.hp-section--gradient .hp-section-header p {
    color: rgba(255,255,255,0.85);
}

.hp-section--gradient .hp-step-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
}

.hp-section--gradient .hp-step-card h3 {
    color: var(--hp-lima);
}

.hp-section--gradient .hp-step-card p {
    color: rgba(255,255,255,0.8);
}

.hp-section--gradient .hp-step-icon {
    background: var(--hp-lima);
    color: var(--hp-azul-marinho);
}

.hp-section--gradient .hp-steps-footer {
    color: var(--hp-white);
}

/* ========================================
   3. COMO FUNCIONA
   ======================================== */

.hp-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hp-step-card {
    background: var(--hp-white);
    border-radius: var(--hp-radius-lg);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--hp-shadow);
    transition: transform var(--hp-transition);
    position: relative;
}

.hp-step-card:hover {
    transform: translateY(-2px);
}

.hp-step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 24px;
}

.hp-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hp-azul-marinho);
    color: var(--hp-white);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-step-dash {
    width: 24px;
    height: 2px;
    background: var(--hp-gray-200);
    flex-shrink: 0;
}

.hp-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--hp-lima);
    color: var(--hp-azul-marinho);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-step-icon svg {
    width: 32px;
    height: 32px;
}

.hp-step-icon i[class*="fa-"] {
    font-size: 36px;
}

.hp-step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--hp-lima);
    margin-bottom: 10px;
}

.hp-step-card p {
    font-size: 14px;
    color: var(--hp-text-secondary);
    line-height: 1.6;
}

.hp-steps-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--hp-green-dark);
}

.hp-integrados {
    text-align: center;
    margin-top: 48px;
}

.hp-integrados-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.hp-integrados-logos {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hp-integrados-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hp-integrados-item--light {
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
}

.hp-integrados-item--light:hover {
    background: rgba(0,0,0,0.07);
    border-color: rgba(0,0,0,0.12);
}

.hp-integrados-item--dark {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
}

.hp-integrados-item--dark:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(37,211,102,0.3);
}

.hp-integrados-logo {
    height: 22px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.hp-integrados-logo:hover {
    opacity: 1;
}

.hp-integrados--hero {
    margin-top: 40px;
}

.hp-integrados-label--dark {
    color: var(--hp-text-secondary);
}

.hp-integrados-logo--dark {
    filter: brightness(0);
    height: 22px;
    opacity: 0.7;
}

.hp-integrados-logo--dark:hover {
    opacity: 1;
}

.hp-integrados-nome {
    font-size: 18px;
    font-weight: 700;
    color: var(--hp-gray-700);
}

/* ========================================
   4. FUNCIONALIDADES
   ======================================== */

.hp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hp-feature-card {
    background: var(--hp-white);
    border-radius: var(--hp-radius);
    padding: 32px 28px;
    box-shadow: var(--hp-shadow-sm);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--hp-gray-100);
    text-align: center;
}

.hp-section--alt .hp-section-header h2 {
    color: #0D47A1;
}

.hp-feature-card:hover {
    box-shadow: 0 6px 24px rgba(21,101,192,0.12);
    border-color: rgba(21,101,192,0.25);
}

.hp-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(21,101,192,0.08);
    color: #1565C0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.hp-feature-icon svg {
    width: 36px;
    height: 36px;
}

.hp-feature-icon i[class*="fa-"] {
    font-size: 36px;
}

.hp-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--hp-gray-800);
    margin-bottom: 8px;
}

.hp-feature-card p {
    font-size: 14px;
    color: var(--hp-text-secondary);
    line-height: 1.5;
}


/* ========================================
   6. INTEGRAÇÕES
   ======================================== */

.hp-section--alt#integracoes {
    background: linear-gradient(180deg, #ffffff 0%, #e0f2fc 100%);
}

.hp-integ-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hp-integ-row--active {
    padding: 40px 0 24px;
}

.hp-integ-row--soon {
    padding: 24px 0 32px;
}

.hp-integ-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--hp-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--hp-gray-100);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    flex: 0 0 auto;
}

.hp-integ-card--lg {
    padding: 44px 56px 36px;
    min-width: 230px;
    max-width: 280px;
}

.hp-integ-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    border-color: rgba(37,211,102,0.3);
}

.hp-integ-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.hp-integ-badge--active {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37,211,102,0.35);
}

.hp-integ-badge--soon {
    background: #e0e0e0;
    color: #757575;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.hp-integ-card--inactive {
    background: #fff;
    border-color: #d0d0d0;
    padding: 32px 40px 24px;
    min-width: 180px;
    max-width: 220px;
}

.hp-integ-card--inactive .hp-integ-logo {
    filter: brightness(0) saturate(100%) invert(60%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
    opacity: 0.6;
}

.hp-integ-card--inactive .hp-integ-nome {
    color: #9e9e9e;
}

.hp-integ-logo {
    height: 56px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(22%) sepia(85%) saturate(1800%) hue-rotate(205deg) brightness(95%) contrast(95%);
}

.hp-integ-nome {
    font-size: 14px;
    font-weight: 600;
    color: var(--hp-gray-700);
    text-align: center;
}

.hp-integrations-text {
    text-align: center;
    margin-top: 32px;
    font-size: 16px;
    color: var(--hp-text-secondary);
}

/* ========================================
   7. PLANOS
   ======================================== */

#planos {
    background: linear-gradient(135deg, #f5fef8 0%, #f2fcfe 50%, #f5fafd 100%);
}

.hp-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.hp-plan-card {
    background: var(--hp-white);
    border-radius: 20px;
    padding: 44px 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 2px solid var(--hp-gray-100);
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.hp-plan-card:hover {
    box-shadow: 0 12px 40px rgba(37,211,102,0.15);
    border-color: rgba(37,211,102,0.4);
}

.hp-plan-card--featured {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    border-color: var(--hp-green);
    box-shadow: 0 8px 32px rgba(37,211,102,0.15);
    padding: 52px 40px;
    z-index: 2;
}

.hp-plan-card--featured:hover {
    box-shadow: 0 16px 48px rgba(37,211,102,0.22);
    border-color: var(--hp-green);
}

.hp-plan-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--hp-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 12px rgba(37,211,102,0.3);
}

.hp-plan-header {
    margin-bottom: 24px;
}

.hp-plan-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--hp-gray-800);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.hp-plan-desc {
    font-size: 14px;
    color: var(--hp-text-secondary);
    line-height: 1.5;
    min-height: 20px;
}

.hp-plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}

.hp-plan-price .hp-plan-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--hp-gray-600);
    margin-right: 2px;
}

.hp-plan-price .hp-plan-value {
    font-size: 52px;
    font-weight: 800;
    color: var(--hp-gray-800);
    line-height: 1;
    letter-spacing: -0.03em;
}

.hp-plan-price .hp-plan-cents {
    font-size: 22px;
    font-weight: 700;
    color: var(--hp-gray-800);
}

.hp-plan-price .hp-plan-period {
    font-size: 14px;
    color: var(--hp-text-muted);
    margin-left: 4px;
    font-weight: 500;
}

.hp-plan-limit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--hp-gray-600);
    padding: 10px 16px;
    background: rgba(37,211,102,0.06);
    border-radius: 10px;
    margin-bottom: 20px;
}

.hp-plan-limit svg {
    color: var(--hp-green);
    flex-shrink: 0;
}

.hp-plan-divider {
    height: 1px;
    background: var(--hp-gray-100);
    margin-bottom: 20px;
}

.hp-plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hp-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--hp-gray-600);
    line-height: 1.4;
}

.hp-plan-features li svg {
    width: 18px;
    height: 18px;
    color: var(--hp-green);
    flex-shrink: 0;
    margin-top: 1px;
}

.hp-plan-cta {
    margin-top: auto;
}

.hp-plan-cta .hp-btn {
    width: 100%;
}

/* Alerta abaixo dos planos */
.hp-plans-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 680px;
    margin: 36px auto 0;
    padding: 12px 18px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fcd34d;
    border-radius: 10px;
}

.hp-plans-alert-icon {
    flex-shrink: 0;
    color: #d97706;
    margin-top: 2px;
}

.hp-plans-alert-text {
    font-size: 13px;
    line-height: 1.65;
    color: #78350f;
    margin: 0;
}

.hp-plans-alert-text strong {
    color: #451a03;
}

/* Calculadora inline (dentro da seção planos) */
.hp-calc-inline {
    max-width: 680px;
    margin: 16px auto 0;
    background: rgba(21,101,192,0.06);
    border-radius: 20px;
    padding: 36px 40px;
    border: 1px solid rgba(21,101,192,0.08);
}

.hp-calc-inline-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--hp-gray-800);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    text-align: center;
}

.hp-calc-inline-title strong {
    color: var(--hp-green-dark);
}

.hp-calc-inline-subtitle {
    font-size: 13px;
    color: var(--hp-text-secondary);
    margin-bottom: 20px;
    text-align: center;
}

.hp-calc-card {
    background: var(--hp-white);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
    border: 1px solid var(--hp-gray-100);
}

.hp-calc-card--compact {
    text-align: left;
}

.hp-calc-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 4px;
}

.hp-calc-tipo {
    font-size: 16px;
    font-weight: 700;
    color: var(--hp-gray-800);
    margin: 0;
}

.hp-calc-preco-unit {
    font-size: 12px;
    color: #0d7377;
    font-weight: 600;
}

.hp-calc-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.hp-calc-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--hp-gray-200);
    background: var(--hp-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}

.hp-calc-btn svg {
    width: 16px;
    height: 16px;
    color: var(--hp-gray-600);
}

.hp-calc-btn:hover {
    background: var(--hp-gray-50);
    border-color: var(--hp-gray-300);
}

.hp-calc-btn:active {
    background: var(--hp-gray-100);
}

.hp-calc-input {
    flex: 1;
    height: 38px;
    border: 1px solid var(--hp-gray-200);
    border-radius: 10px;
    background: var(--hp-white);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--hp-gray-800);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -moz-appearance: textfield;
    appearance: textfield;
}

.hp-calc-input::-webkit-outer-spin-button,
.hp-calc-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.hp-calc-input:focus {
    border-color: #0d7377;
    box-shadow: 0 0 0 3px rgba(13,115,119,0.08);
}

.hp-calc-slider-wrap {
    padding: 0 2px;
    margin-bottom: 16px;
}

.hp-calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #0d7377 0%, #0d7377 var(--pct, 2%), var(--hp-gray-200) var(--pct, 2%), var(--hp-gray-200) 100%);
    outline: none;
    cursor: pointer;
}

.hp-calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0d7377;
    border: 3px solid #ffffff;
    box-shadow: 0 1px 6px rgba(13,115,119,0.3);
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}

.hp-calc-slider::-webkit-slider-thumb:hover {
    box-shadow: 0 2px 10px rgba(13,115,119,0.5);
}

.hp-calc-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0d7377;
    border: 3px solid #ffffff;
    box-shadow: 0 1px 6px rgba(13,115,119,0.3);
    cursor: pointer;
}

.hp-calc-slider::-moz-range-progress {
    background: #0d7377;
    border-radius: 3px;
    height: 6px;
}

.hp-calc-slider::-moz-range-track {
    background: var(--hp-gray-200);
    border-radius: 3px;
    height: 6px;
}

.hp-calc-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--hp-gray-100);
}

.hp-calc-msgs {
    font-size: 13px;
    color: #0d7377;
    font-weight: 600;
}

.hp-calc-total {
    font-size: 18px;
    font-weight: 800;
    color: var(--hp-gray-800);
    letter-spacing: -0.02em;
}

.hp-calc-desc {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: var(--hp-text-muted);
    line-height: 1.5;
}

/* ========================================
   8. FAQ
   ======================================== */

.hp-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hp-faq-item {
    background: var(--hp-white);
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-gray-100);
    overflow: hidden;
    transition: box-shadow var(--hp-transition);
}

.hp-faq-item:hover {
    box-shadow: var(--hp-shadow-sm);
}

.hp-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--hp-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--hp-gray-800);
    transition: color var(--hp-transition);
}

.hp-faq-question:hover {
    color: var(--hp-green-dark);
}

.hp-faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--hp-green);
    flex-shrink: 0;
    transition: transform var(--hp-transition);
}

.hp-faq-item--open .hp-faq-question svg {
    transform: rotate(180deg);
}

.hp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.hp-faq-item--open .hp-faq-answer {
    max-height: 300px;
}

.hp-faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--hp-text-secondary);
    line-height: 1.7;
}

/* ========================================
   9. CTA FINAL
   ======================================== */

.hp-cta-final {
    background: linear-gradient(135deg, var(--hp-green) 0%, var(--hp-green-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--hp-white);
}

.hp-cta-final h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.hp-cta-final p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
}

.hp-cta-final-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hp-btn-white {
    background: var(--hp-white);
    color: var(--hp-green-dark);
}

.hp-btn-white:hover {
    transform: translateY(-2px);
}

.hp-btn-ghost {
    background: transparent;
    color: var(--hp-white);
    border: 2px solid rgba(255,255,255,0.4);
}

.hp-btn-ghost:hover {
    transform: translateY(-2px);
}

/* ========================================
   10. FOOTER
   ======================================== */

.hp-footer {
    background: var(--hp-azul-marinho);
    color: var(--hp-white);
    padding: 60px 0 0;
}

.hp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hp-footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-top: 12px;
    max-width: 320px;
}

.hp-footer-brand .hp-logo {
    margin-bottom: 4px;
}

.hp-footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--hp-lima);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.hp-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hp-footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    transition: color var(--hp-transition);
}

.hp-footer-col a:hover {
    color: var(--hp-lima);
}

.hp-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.hp-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--hp-transition);
}

.hp-footer-social a:hover {
    background: rgba(255,255,255,0.2);
}

.hp-footer-social svg {
    width: 18px;
    height: 18px;
}

.hp-footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   MODAL YOUTUBE
   ======================================== */

.hp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(4px);
}

.hp-modal-overlay--open {
    display: flex;
}

.hp-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border-radius: var(--hp-radius);
    overflow: hidden;
    background: #000;
}

.hp-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.hp-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--hp-white);
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    padding: 4px;
    opacity: 0.7;
    transition: opacity var(--hp-transition);
}

.hp-modal-close:hover {
    opacity: 1;
}

/* ========================================
   ANIMAÇÕES (IntersectionObserver)
   ======================================== */

.hp-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hp-animate--visible {
    opacity: 1;
    transform: translateY(0);
}

.hp-animate-delay-1 { transition-delay: 0.1s; }
.hp-animate-delay-2 { transition-delay: 0.2s; }
.hp-animate-delay-3 { transition-delay: 0.3s; }
.hp-animate-delay-4 { transition-delay: 0.4s; }
.hp-animate-delay-5 { transition-delay: 0.5s; }

/* ========================================
   RESPONSIVO
   ======================================== */

@media (max-width: 1024px) {
    .hp-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hp-hero h1 { font-size: 34px; }
    .hp-section-header h2 { font-size: 30px; }
    
    .hp-steps-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-plans-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .hp-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hp-meta-bar { font-size: 11px; padding: 8px 16px; }
    .hp-meta-badge { display: none; }
    
    .hp-nav { display: none; }
    .hp-nav-pill { display: none; }
    .hp-menu-toggle { display: block; }
    .hp-header-actions .hp-btn-outline { display: none; }
    
    .hp-hero { padding: 48px 0 60px; }
    .hp-hero h1 { font-size: 28px; }
    .hp-hero-subtitle { font-size: 16px; }
    .hp-hero-ctas { flex-direction: column; }
    .hp-hero-ctas .hp-btn { width: 100%; }
    .hp-hero-badges { grid-template-columns: 1fr; }
    .hp-integrados-logos { flex-direction: column; gap: 24px; }
    .hp-integrados-logo { height: 36px; }
    
    .hp-section { padding: 56px 0; }
    .hp-section-header { margin-bottom: 36px; }
    .hp-section-header h2 { font-size: 26px; }
    .hp-section-header p { font-size: 16px; }
    
    .hp-steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .hp-features-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .hp-plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .hp-plan-card--featured { padding: 44px 36px; }
    .hp-plan-price .hp-plan-value { font-size: 40px; }
    .hp-calc-inline { padding: 24px 20px; margin-top: 32px; }
    
    .hp-integ-row { gap: 16px; }
    .hp-integ-card--lg { padding: 32px 36px 28px; min-width: 160px; }
    .hp-integ-card--inactive { padding: 24px 28px 20px; min-width: 140px; }
    
    .hp-calc-card { padding: 20px 16px; }
    .hp-calc-result { flex-direction: column; gap: 6px; align-items: flex-start; }
    .hp-calc-total { font-size: 16px; }
    .hp-calc-header { flex-direction: column; gap: 2px; }
    
    .hp-cta-final h2 { font-size: 26px; }
    .hp-cta-final-actions { flex-direction: column; align-items: center; }
    .hp-cta-final-actions .hp-btn { width: 100%; max-width: 320px; }
    
    .hp-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .hp-container { padding: 0 16px; }
    .hp-hero h1 { font-size: 24px; }
    .hp-hero-badge { font-size: 11px; padding: 6px 12px; }
    .hp-step-card { padding: 28px 24px; }
    .hp-feature-card { padding: 24px 20px; }
    .hp-plan-card { padding: 32px 24px; }
    .hp-plan-price .hp-plan-value { font-size: 40px; }
    .hp-calc-btn { width: 40px; height: 40px; border-radius: 10px; }
    .hp-calc-input { height: 40px; font-size: 16px; }
}
