/**
 * Hugo Tech — Home Page Stylesheet (home.css)
 * Coloque em: assets/css/home.css
 *
 * Design: Dark Tech Premium
 * Fonts: Raleway (títulos) + Outfit (corpo)
 */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700;800;900&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ════════════════════════════════════════════
   VARIÁVEIS & BASE ESCURA
   ════════════════════════════════════════════ */
body.page-home {
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --ht-bg:       #06091a;
    --ht-surface:  #0b1022;
    --ht-card:     #0e1528;
    --ht-card2:    #111c33;
    --ht-border:   rgba(255,255,255,0.07);
    --ht-border2:  rgba(255,255,255,0.12);
    --ht-text:     #dde4f0;
    --ht-muted:    rgba(221,228,240,0.42);
    --ht-blue:     #4f9cf9;
    --ht-orange:   var(--color-secondary);
    background: var(--ht-bg);
    color: var(--ht-text);
    font-family: var(--font-family);
}

.page-home .main-content {
    background: var(--ht-bg);
}

/* ── Navbar dark override ── */
.page-home .navbar {
    background: rgba(6,9,26,0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: none;
}
.page-home .navbar.scrolled {
    background: rgba(6,9,26,0.97);
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.page-home .navbar-brand { color: #fff; }
.page-home .navbar-brand-text { color: #fff; }
.page-home .nav-link { color: rgba(255,255,255,0.55); }
.page-home .nav-link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.page-home .nav-link.active { color: #fff; background: rgba(255,255,255,0.1); font-weight: 600; }
.page-home .hamburger span { background: #fff; }
.page-home .cart-btn { background: rgba(255,255,255,0.08); color: #fff; }
.page-home .cart-btn:hover { background: var(--color-secondary); transform: none; }
.page-home .cart-count { background: var(--color-secondary); border-color: #06091a; }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.ht-hero {
    min-height: min(100vh, 820px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 72px;
}

.ht-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Grid de pontos */
.ht-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Orbs de gradiente */
.ht-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.ht-orb-1 {
    width: 700px; height: 700px;
    top: -280px; right: -120px;
    background: radial-gradient(circle, rgba(250,114,38,0.07) 0%, transparent 65%);
}
.ht-orb-2 {
    width: 500px; height: 500px;
    bottom: -180px; left: -100px;
    background: radial-gradient(circle, rgba(79,156,249,0.07) 0%, transparent 65%);
}
.ht-orb-3 {
    width: 350px; height: 350px;
    top: 40%; left: 35%;
    background: radial-gradient(circle, rgba(250,114,38,0.04) 0%, transparent 65%);
}

/* Layout hero */
.ht-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Eyebrow */
.ht-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 22px;
}
.ht-pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-secondary);
    position: relative;
    flex-shrink: 0;
}
.ht-pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid var(--color-secondary);
    opacity: 0.35;
    animation: htPulseAnim 2.2s ease-in-out infinite;
}
@keyframes htPulseAnim {
    0%,100% { transform: scale(1); opacity: 0.35; }
    50%      { transform: scale(1.8); opacity: 0; }
}

/* Título principal */
.ht-hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(36px, 4.6vw, 60px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 22px;
}
.ht-hero-title em {
    font-style: normal;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-image: linear-gradient(90deg, var(--color-secondary) 0%, #ffb347 100%);
}

/* Descrição */
.ht-hero-desc {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--ht-muted);
    max-width: 500px;
    margin-bottom: 38px;
}

/* Botões CTA */
.ht-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    align-items: center;
}
.ht-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 12px;
    background: var(--color-secondary);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 22px rgba(250,114,38,0.25);
}
.ht-btn-primary:hover {
    background: #d95f14;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(250,114,38,0.38);
}
.ht-btn-primary i { font-size: 18px; }

.ht-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 26px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.65);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    border: 1px solid rgba(255,255,255,0.1);
}
.ht-btn-ghost:hover {
    background: rgba(255,255,255,0.09);
    color: #fff;
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

/* Stats */
.ht-hero-stats {
    display: flex;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.ht-hero-stat {
    padding-right: 28px;
    margin-right: 28px;
    border-right: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.ht-hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.ht-hero-stat strong {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.ht-hero-stat span {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

/* Visual / Phone Mockup */
.ht-phone-wrap {
    position: relative;
    height: clamp(380px, 45vw, 520px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ht-ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px solid;
}
.ht-ring-1 {
    width: clamp(260px, 30vw, 400px); height: clamp(260px, 30vw, 400px);
    border-color: rgba(250,114,38,0.1);
    animation: htRingRotate 14s linear infinite;
}
.ht-ring-2 {
    width: clamp(200px, 23vw, 310px); height: clamp(200px, 23vw, 310px);
    border-color: rgba(79,156,249,0.1);
    animation: htRingRotate 20s linear infinite reverse;
}
.ht-ring-3 {
    width: clamp(320px, 37vw, 480px); height: clamp(320px, 37vw, 480px);
    border-color: rgba(255,255,255,0.03);
    animation: htRingRotate 28s linear infinite;
}

/* Dot no anel */
.ht-ring::before {
    content: '';
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-secondary);
    box-shadow: 0 0 14px var(--color-secondary);
    top: -4px; left: 50%;
    margin-left: -4px;
}
.ht-ring-2::before {
    background: var(--ht-blue);
    box-shadow: 0 0 14px var(--ht-blue);
}
.ht-ring-3::before { display: none; }

@keyframes htRingRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Corpo do telefone */
.ht-phone-body {
    width: 185px; height: 368px;
    border-radius: 38px;
    background: linear-gradient(155deg, #131f38 0%, #1a2c4e 50%, #0e1a30 100%);
    border: 1.5px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow:
        0 40px 90px rgba(0,0,0,0.65),
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 1px 0 rgba(255,255,255,0.12) inset;
    animation: htPhoneFloat 4.5s ease-in-out infinite;
}
@keyframes htPhoneFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}
.ht-phone-body > i {
    font-size: 68px;
    color: rgba(255,255,255,0.1);
}
/* Notch */
.ht-phone-body::before {
    content: '';
    position: absolute;
    top: 17px; left: 50%;
    transform: translateX(-50%);
    width: 72px; height: 5px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
}
/* Screen overlay shine */
.ht-phone-body::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 38px;
    background: linear-gradient(
        135deg,
        rgba(250,114,38,0.06) 0%,
        transparent 40%,
        rgba(79,156,249,0.05) 100%
    );
}

/* Indicador de status no telefone */
.ht-phone-status {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
}
.ht-phone-status-bar {
    width: 80px; height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}
.ht-phone-status-fill {
    height: 100%;
    width: 65%;
    border-radius: 2px;
    background: var(--color-secondary);
    box-shadow: 0 0 8px var(--color-secondary);
}
.ht-phone-status span {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}

/* Badges flutuantes */
.ht-float-badge {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(11,16,34,0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.ht-float-badge i { font-size: 15px; color: var(--color-secondary); }
.ht-float-badge .ht-fi-green { color: #22c55e; }

.ht-badge-1 {
    top: 15%;
    right: -5%;
    animation: htPhoneFloat 4.5s 0.6s ease-in-out infinite;
}
.ht-badge-2 {
    bottom: 20%;
    left: -5%;
    animation: htPhoneFloat 4.5s 1.4s ease-in-out infinite;
}
.ht-badge-3 {
    top: 55%;
    right: -8%;
    animation: htPhoneFloat 4.5s 0.9s ease-in-out infinite;
}

/* ════════════════════════════════════════════
   SEÇÃO GENÉRICA
   ════════════════════════════════════════════ */
.ht-section {
    padding: 96px 0;
    background: var(--ht-bg);
}
.ht-section-alt {
    background: var(--ht-surface);
    border-top: 1px solid rgba(255,255,255,0.045);
    border-bottom: 1px solid rgba(255,255,255,0.045);
}

.ht-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.ht-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-secondary);
    background: rgba(250,114,38,0.09);
    border: 1px solid rgba(250,114,38,0.18);
    margin-bottom: 16px;
}
.ht-section-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.1;
}
.ht-section-sub {
    font-size: 16px;
    color: var(--ht-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ════════════════════════════════════════════
   SERVIÇOS
   ════════════════════════════════════════════ */
.ht-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.ht-service-card {
    background: var(--ht-card);
    border: 1px solid var(--ht-border);
    border-radius: 18px;
    padding: 28px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.ht-service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
.ht-service-card:hover {
    border-color: rgba(250,114,38,0.22);
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.3), 0 0 0 1px rgba(250,114,38,0.08) inset;
}
.ht-service-card:hover::after { opacity: 1; }

.ht-service-icon {
    width: 54px; height: 54px;
    border-radius: 16px;
    background: rgba(250,114,38,0.09);
    border: 1px solid rgba(250,114,38,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-secondary);
    margin-bottom: 18px;
    transition: all 0.3s;
}
.ht-service-card:hover .ht-service-icon {
    background: rgba(250,114,38,0.15);
    box-shadow: 0 0 22px rgba(250,114,38,0.15);
}
.ht-service-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.ht-service-card p {
    font-size: 14px;
    color: var(--ht-muted);
    line-height: 1.75;
    margin: 0;
}

/* ════════════════════════════════════════════
   PRODUTOS
   ════════════════════════════════════════════ */
.ht-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 44px;
}
.ht-product-card {
    background: var(--ht-card);
    border: 1px solid var(--ht-border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    color: var(--ht-text);
}
.ht-product-card:hover {
    border-color: rgba(250,114,38,0.2);
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.35);
    color: var(--ht-text);
}
.ht-product-img {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ht-product-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.ht-product-card:hover .ht-product-img img { transform: scale(1.07); }
.ht-product-img-ph {
    font-size: 44px;
    color: rgba(255,255,255,0.07);
}
.ht-product-badge-feat {
    position: absolute; top: 10px; right: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase;
    background: var(--color-secondary); color: #fff;
}
.ht-product-body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}
.ht-product-cat {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.28);
    font-weight: 600;
}
.ht-product-name {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    line-height: 1.45;
}
.ht-product-price {
    font-family: 'Raleway', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-top: 6px;
}
.ht-section-cta { text-align: center; }

/* ════════════════════════════════════════════
   DIFERENCIAIS
   ════════════════════════════════════════════ */
.ht-features-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
/* Lado esquerdo */
.ht-feat-left-tag { margin-bottom: 0; }
.ht-feat-left h2 {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 14px 0 18px;
}
.ht-feat-left > p {
    font-size: 15.5px;
    color: var(--ht-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 440px;
}
.ht-feat-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ht-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 14px;
    background: var(--ht-card);
    border: 1px solid var(--ht-border);
    transition: all 0.25s;
}
.ht-feat-item:hover {
    border-color: rgba(250,114,38,0.18);
    transform: translateX(5px);
}
.ht-feat-item-icon {
    width: 44px; height: 44px;
    border-radius: 13px;
    background: rgba(250,114,38,0.09);
    border: 1px solid rgba(250,114,38,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-secondary);
    flex-shrink: 0;
}
.ht-feat-item h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}
.ht-feat-item p {
    font-size: 13px;
    color: var(--ht-muted);
    margin: 0;
    line-height: 1.6;
}

/* Lado direito — stats */
.ht-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.ht-big-stat {
    background: var(--ht-card);
    border: 1px solid var(--ht-border);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.ht-big-stat:hover {
    border-color: rgba(250,114,38,0.18);
    box-shadow: 0 0 30px rgba(250,114,38,0.04);
}
/* Stat destaque (span 2 colunas) */
.ht-big-stat.ht-stat-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(250,114,38,0.07) 0%, rgba(250,114,38,0.02) 100%);
    border-color: rgba(250,114,38,0.14);
    flex-direction: row;
    text-align: left;
    padding: 28px 30px;
    gap: 24px;
}
.ht-big-stat.ht-stat-featured .ht-stat-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 18px;
    background: rgba(250,114,38,0.1);
    border: 1px solid rgba(250,114,38,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-secondary);
    flex-shrink: 0;
}
.ht-big-stat-num {
    font-family: 'Raleway', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.ht-big-stat.ht-stat-featured .ht-big-stat-num {
    font-size: 52px;
    color: var(--color-secondary);
}
.ht-big-stat-lbl {
    font-size: 12.5px;
    color: var(--ht-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ════════════════════════════════════════════
   CTA WHATSAPP
   ════════════════════════════════════════════ */
.ht-cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.ht-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 70% at 50% 100%, rgba(37,211,102,0.04) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 0%, rgba(250,114,38,0.04) 0%, transparent 65%);
    border-top:  1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ht-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.ht-cta-inner h2 {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(30px, 4.5vw, 56px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
    line-height: 1.08;
}
.ht-cta-inner > p {
    font-size: 17px;
    color: var(--ht-muted);
    margin-bottom: 38px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}
.ht-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 14px;
    background: #22c55e;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 8px 30px rgba(34,197,94,0.28);
}
.ht-btn-whatsapp:hover {
    background: #16a34a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(34,197,94,0.38);
}
.ht-btn-whatsapp i { font-size: 22px; }
.ht-cta-phone {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.8px;
}

/* ════════════════════════════════════════════
   FOOTER DARK OVERRIDE
   ════════════════════════════════════════════ */
html body.page-home .site-footer,
html body.page-home footer.site-footer {
    background-color: #0b1022 !important;
    background: #0b1022 !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    color: rgba(255,255,255,0.45) !important;
}

/* Zera herança estranha */
html body.page-home .site-footer,
html body.page-home .site-footer p,
html body.page-home .site-footer span,
html body.page-home .site-footer li,
html body.page-home .site-footer ul {
    color: rgba(255,255,255,0.45) !important;
    background: transparent !important;
}

/* Títulos das colunas */
html body.page-home .site-footer .footer-heading,
html body.page-home .site-footer h4 {
    color: rgba(255,255,255,0.75) !important;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 700 !important;
}

/* Links */
html body.page-home .site-footer a,
html body.page-home .site-footer .footer-links a,
html body.page-home .site-footer .footer-contact a {
    color: rgba(255,255,255,0.4) !important;
    text-decoration: none !important;
}
html body.page-home .site-footer a:hover,
html body.page-home .site-footer .footer-links a:hover,
html body.page-home .site-footer .footer-contact a:hover {
    color: var(--color-secondary) !important;
}

/* Ícones de contato */
html body.page-home .site-footer .footer-contact i,
html body.page-home .site-footer i {
    color: var(--color-secondary) !important;
}

/* Logo + nome da marca no footer */
html body.page-home .site-footer .footer-logo-link,
html body.page-home .site-footer .footer-logo-link span {
    color: #fff !important;
}

/* Tagline */
html body.page-home .site-footer .footer-tagline {
    color: rgba(255,255,255,0.3) !important;
}

/* Barra inferior */
html body.page-home .site-footer .footer-bottom,
html body.page-home .site-footer .footer-bottom p,
html body.page-home .site-footer .footer-cnpj {
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    color: rgba(255,255,255,0.22) !important;
    background: transparent !important;
}

/* ════════════════════════════════════════════
   ANIMAÇÕES DE SCROLL
   ════════════════════════════════════════════ */
.ht-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.ht-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.ht-reveal-d1 { transition-delay: 0.08s; }
.ht-reveal-d2 { transition-delay: 0.16s; }
.ht-reveal-d3 { transition-delay: 0.24s; }
.ht-reveal-d4 { transition-delay: 0.32s; }
.ht-reveal-d5 { transition-delay: 0.40s; }
.ht-reveal-d6 { transition-delay: 0.48s; }

/* ════════════════════════════════════════════
   BOTÃO VER MAIS
   ════════════════════════════════════════════ */
.ht-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 12px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.25s;
}
.ht-outline-btn:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   RESPONSIVE — DESKTOP LARGO (≥ 1400px)
   ════════════════════════════════════════════ */
@media (min-width: 1400px) {
    .ht-hero-inner      { gap: 80px; }
    .ht-phone-wrap      { height: 520px; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — LAPTOP GRANDE (≤ 1200px)
   ════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .ht-hero-inner      { gap: 44px; }
    .ht-phone-body      { width: 160px; height: 320px; border-radius: 32px; }
    .ht-phone-body::before { width: 60px; }
    .ht-badge-1         { right: -2%; font-size: 12px; padding: 8px 13px; }
    .ht-badge-2         { left: -2%; font-size: 12px; padding: 8px 13px; }
    .ht-badge-3         { right: -4%; font-size: 12px; padding: 8px 13px; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — TABLET LANDSCAPE / LAPTOP (≤ 1100px)
   ════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .ht-services-grid   { grid-template-columns: repeat(2, 1fr); }
    .ht-products-grid   { grid-template-columns: repeat(3, 1fr); }
    .ht-features-wrap   { grid-template-columns: 1fr; gap: 56px; }
    .ht-feat-left       { max-width: 640px; }
    .ht-feat-left > p   { max-width: 100%; }
    .ht-stats-grid      { grid-template-columns: repeat(4, 1fr); }
    .ht-big-stat.ht-stat-featured {
        grid-column: 1 / -1;
    }
}

/* ════════════════════════════════════════════
   RESPONSIVE — TABLET PORTRAIT (≤ 900px)
   ════════════════════════════════════════════ */
@media (max-width: 900px) {
    /* Hero: single column, sem telefone */
    .ht-hero            { min-height: auto; padding: 72px 0 56px; }
    .ht-hero-inner      { grid-template-columns: 1fr; gap: 0; }
    .ht-hero-content    { text-align: center; }
    .ht-eyebrow         { justify-content: center; }
    .ht-hero-desc       { margin-left: auto; margin-right: auto; }
    .ht-cta-row         { justify-content: center; }
    .ht-hero-stats      { justify-content: center; border-top: 1px solid rgba(255,255,255,0.07); }
    .ht-phone-wrap      { display: none; }

    /* Sections */
    .ht-section         { padding: 72px 0; }
    .ht-features-wrap   { grid-template-columns: 1fr; gap: 48px; }
    .ht-stats-grid      { grid-template-columns: repeat(2, 1fr); }
    .ht-big-stat.ht-stat-featured {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    .ht-big-stat.ht-stat-featured .ht-big-stat-num { font-size: 44px; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE GRANDE (≤ 768px)
   ════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Hero */
    .ht-hero            { padding: 60px 0 48px; }
    .ht-hero-title      { font-size: clamp(34px, 9vw, 52px); letter-spacing: -0.8px; }
    .ht-hero-desc       { font-size: 15px; }
    .ht-hero-stats      { flex-wrap: wrap; gap: 0; padding-top: 18px; }
    .ht-hero-stat       { padding: 0 20px 0 0; margin: 0 20px 0 0; }
    .ht-hero-stat strong { font-size: 26px; }

    /* Sections */
    .ht-section         { padding: 60px 0; }
    .ht-section-title   { font-size: clamp(22px, 6vw, 34px); }
    .ht-section-sub     { font-size: 14px; }
    .ht-section-header  { margin-bottom: 40px; }

    /* Services */
    .ht-services-grid   { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .ht-service-card    { padding: 22px 18px; }
    .ht-service-card h3 { font-size: 15px; }
    .ht-service-card p  { font-size: 13px; }

    /* Products */
    .ht-products-grid   { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    /* Features */
    .ht-feat-left h2    { font-size: clamp(22px, 6vw, 34px); }
    .ht-feat-item       { padding: 16px; }
    .ht-feat-item h4    { font-size: 14px; }

    /* Stats grid */
    .ht-stats-grid      { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ht-big-stat        { padding: 22px 16px; }
    .ht-big-stat-num    { font-size: 36px; }

    /* CTA */
    .ht-cta-section     { padding: 72px 0; }
    .ht-cta-inner h2    { font-size: clamp(26px, 7vw, 42px); }
    .ht-cta-inner > p   { font-size: 15px; }
    .ht-btn-whatsapp    { font-size: 15px; padding: 15px 28px; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE MÉDIO (≤ 580px)
   ════════════════════════════════════════════ */
@media (max-width: 580px) {
    /* Hero */
    .ht-hero            { padding: 52px 0 40px; }
    .ht-hero-title      { font-size: clamp(30px, 10vw, 46px); letter-spacing: -0.5px; }
    .ht-hero-stats      { gap: 16px; }
    .ht-hero-stat       { border-right: none; padding-right: 0; margin-right: 0; }
    .ht-hero-stat       { padding: 0 16px 0 0; margin: 0 16px 0 0; border-right: 1px solid rgba(255,255,255,0.07); }
    .ht-hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }

    /* CTA buttons: pilha vertical */
    .ht-cta-row         { flex-direction: column; align-items: stretch; }
    .ht-btn-primary,
    .ht-btn-ghost       { justify-content: center; width: 100%; }

    /* Services: 1 coluna */
    .ht-services-grid   { grid-template-columns: 1fr; }

    /* Products: 2 colunas ainda cabe */
    .ht-products-grid   { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    /* Stats: 2 colunas */
    .ht-stats-grid      { grid-template-columns: repeat(2, 1fr); }
    .ht-big-stat.ht-stat-featured {
        grid-column: 1 / -1;
    }

    /* Seções mais apertadas */
    .ht-section         { padding: 52px 0; }
    .ht-section-header  { margin-bottom: 32px; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE PEQUENO (≤ 420px)
   ════════════════════════════════════════════ */
@media (max-width: 420px) {
    /* Hero */
    .ht-hero-title      { font-size: clamp(28px, 11vw, 40px); }
    .ht-hero-desc       { font-size: 14px; }
    .ht-hero-stat strong { font-size: 22px; }

    /* Products: 1 coluna em telas muito pequenas */
    .ht-products-grid   { grid-template-columns: 1fr; }

    /* Stats: 1 coluna */
    .ht-stats-grid      { grid-template-columns: 1fr; }
    .ht-big-stat.ht-stat-featured { grid-column: auto; }

    /* Feature list */
    .ht-feat-item       { flex-direction: column; gap: 12px; }

    /* CTA */
    .ht-btn-whatsapp    { font-size: 14px; padding: 14px 20px; width: 100%; justify-content: center; }
    .ht-cta-inner > p   { font-size: 14px; }

    /* Seções */
    .ht-section         { padding: 44px 0; }
}