:root {
    --produtos-primary: #1d4790;
    --produtos-secondary: #10182c;
    --produtos-accent: #f49b45;
    --produtos-neutral: #f6f8fc;
    --produtos-card-bg: rgba(255, 255, 255, 0.95);
    --produtos-card-border: rgba(20, 39, 80, 0.08);
    --produtos-text: #1b2435;
    --produtos-muted: #5a677b;
    --produtos-dark: #0b1323;
}

.hero-section {
    padding: 7rem 0 6rem;
    position: relative;
    background:
        radial-gradient(circle at 5% 5%, rgba(242, 131, 34, 0.18), transparent 45%),
        linear-gradient(140deg, #1d4790 0%, #10182c 85%);
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 20, 35, 0.15), rgba(11, 20, 35, 0.78));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: clamp(0rem, 2vw, 1.5rem);
}

.hero-intro {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    background-color: rgba(15, 16, 18, 0.28);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: fit-content !important;
    max-width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2.2rem;
    line-height: 1.65;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 1.05rem;
    padding: 1.05rem 1.55rem;
    border-radius: 1.1rem;
    background: rgba(11, 20, 35, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s ease;
}

.hero-point::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--produtos-accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-point:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(11, 20, 35, 0.65);
}

.hero-point:hover::after {
    transform: scaleX(1);
}

.hero-point-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    overflow: hidden;
}

.hero-point-icon-glow {
    position: absolute;
    inset: -40%;
    filter: blur(16px);
    opacity: 0.8;
}

.hero-point-icon i {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    color: var(--produtos-accent);
}

.hero-point-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    font-weight: 500;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 1rem 2rem;
    border-radius: .75rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.hero-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 4px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--produtos-accent), #ffb066);
    color: var(--produtos-dark);
    border: none;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    border: 2px solid var(--produtos-accent);
}

.hero-btn-secondary {
    background: rgba(12, 19, 33, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.32);
    color: #ffffff;
}

.hero-btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    width: min(100%, 520px);
}

.hero-device-frame {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-device-screen {
    background: linear-gradient(180deg, rgba(12, 19, 33, 0.06), rgba(30, 79, 143, 0.1));
    border-radius: 1.6rem;
    padding: 0.4rem;
    overflow: hidden;
}

.hero-device-main {
    width: 100%;
    display: block;
    border-radius: .75rem;
    object-fit: cover;
}

.hero-device-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1.75rem;
    padding: 0.9rem 1.4rem 0.9rem 1.2rem;
    background: rgba(12, 19, 33, 0.82);
    border: 2px solid rgba(255, 255, 255, 0.16);
    border-radius: .75rem;
    color: #ffffff;
    align-self: flex-end;
    overflow: hidden;
}

.hero-device-badge .badge-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--produtos-accent);
    position: relative;
    z-index: 1;
}

.hero-device-badge .badge-dot::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    background: rgba(244, 155, 69, 0.15);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

.hero-device-badge .badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-device-badge .badge-label {
    font-size: 0.7rem;
    opacity: 0.7;
}

.hero-device-badge .badge-value {
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-floating-card {
    --card-offset: 0px;
    display: grid;
    gap: 0.45rem;
    padding: 2rem 1.15rem;
    border-radius: 1.2rem;
    background: rgba(14, 23, 39, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s ease;
    transform: translateX(var(--card-offset));
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.hero-floating-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--produtos-accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-floating-card:hover {
    border-color: rgba(244, 155, 69, 0.4);
}

.hero-floating-card:hover::after {
    transform: scaleX(1);
}

.hero-floating-card:nth-child(2) {
    --card-offset: 14px;
}

.hero-floating-card:nth-child(3) {
    --card-offset: 28px;
}

.metrics-floating-grid {
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.metrics-floating-grid .hero-floating-card {
    --card-offset: 0px;
    height: 100%;
}

.hero-floating-card.is-hover {
    transform: translateX(var(--card-offset)) translateY(-6px);
}

.metrics-floating-grid > [class*='col-'] {
    display: flex;
}

.metrics-floating-grid > [class*='col-'] .hero-floating-card {
    width: 100%;
}

.hero-floating-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.hero-floating-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
    text-align: left;
}

.hero-floating-card .hero-floating-icon {
    margin-inline: auto;
}

.hero-floating-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: grid;
    place-content: center;
    background: rgba(244, 155, 69, 0.18);
    border: 1px solid rgba(244, 155, 69, 0.32);
    overflow: hidden;
}

.hero-floating-icon-glow {
    position: absolute;
    inset: -35%;
    background: radial-gradient(circle, rgba(244, 155, 69, 0.5), transparent 60%);
    filter: blur(14px);
    opacity: 0.8;
}

.hero-floating-icon i {
    position: relative;
    z-index: 1;
    font-size: 2.2rem;
    color: var(--produtos-accent);
}

.metric-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    padding: 2.2rem 1.6rem;
    background: #ffffff;
    color: var(--produtos-secondary);
    border: 1px solid rgba(17, 52, 95, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    min-height: 180px;
}

.metric-card:hover {
    border-color: rgba(29, 71, 144, 0.35);
    border-width: 2px;
}

.metric-card::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--produtos-primary), var(--produtos-accent));
}

.metric-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    font-size: 2.45rem;
    font-weight: 700;
    color: var(--produtos-secondary);
}

.metric-value span[data-count] {
    font-size: inherit;
    font-weight: inherit;
}

.metric-label {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--produtos-muted);
}

.produtos-metricas .row.g-4 > [class*='col-'] {
    display: flex;
}

.produtos-metricas .row.g-4 > [class*='col-'] .metric-card {
    width: 100%;
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero-section {
        padding: 5.5rem 0 5rem;
    }

    .hero-visual {
        margin-top: 2.5rem;
        padding-inline: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-device-badge {
        align-self: center;
    }
}

