/**
 * CONSTRONEX — Landing page premium
 * Azul: #012c6c | Laranja: #fe8a09
 */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

:root {
    --heading-fonts: "Plus Jakarta Sans", sans-serif;
    --body-fonts: "Inter", sans-serif;
    --landing-radius: 16px;
    --landing-radius-lg: 24px;
    --landing-shadow: 0 4px 24px rgba(1, 44, 108, 0.08);
    --landing-shadow-lg: 0 20px 60px rgba(1, 44, 108, 0.12);
}

body {
    font-family: var(--body-fonts);
    color: #3d4349;
    background: #fafafa;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-fonts);
    color: #012c6c;
    letter-spacing: -0.02em;
}

/* ── Header / Nav — fundo claro (logo legível) ── */
.constron-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

.constron-header .navbar-bottom {
    background: #fff;
    padding: 0;
    position: relative;
    border-bottom: 1px solid rgba(1, 44, 108, 0.08);
}

.constron-header .navbar-bottom::before {
    display: none;
}

.constron-nav.navbar-bottom-wrapper {
    background: #fff !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0 !important;
    padding: 14px 0 !important;
    box-shadow: 0 2px 16px rgba(1, 44, 108, 0.06);
    border: none !important;
    border-bottom: 3px solid #fe8a09 !important;
    position: relative;
    z-index: 1;
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.constron-nav .logo {
    flex-shrink: 0;
    padding: 6px 12px;
    background: #fff;
    border-radius: 10px;
    max-width: min(42vw, 170px);
}

.constron-nav .logo img {
    width: auto !important;
    max-height: 48px;
    max-width: 100%;
    filter: none;
    display: block;
}

.header-install {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    padding: 0 6px;
}

.header-install__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
    background: #fe8a09;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(254, 138, 9, 0.35);
    line-height: 1.2;
}

.header-install__toggle i {
    font-size: 1.15rem;
}

.header-install__toggle[aria-expanded="true"] {
    background: #012c6c;
    box-shadow: 0 4px 14px rgba(1, 44, 108, 0.3);
}

@media (min-width: 992px) {
    .header-install {
        flex: 0 0 auto;
        justify-content: flex-start;
        margin-left: 14px;
    }

    .header-install__toggle {
        padding: 11px 18px;
        font-size: 1rem;
    }
}

/* Painel Instalar App — centralizado via flex (sem 100vw) */
.install-app-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    background: rgba(1, 22, 48, 0.5);
    opacity: 0;
    transition: opacity 0.2s ease;
    overflow: hidden;
    overscroll-behavior: none;
}

.install-app-overlay[hidden] {
    display: none !important;
}

.install-app-overlay.is-open {
    opacity: 1;
}

.install-app-panel {
    position: relative;
    flex: 0 1 auto;
    width: 100%;
    max-width: 340px;
    margin: 0;
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 20px 50px rgba(1, 44, 108, 0.35);
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
    max-height: calc(100% - 8px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transform: scale(0.96);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.install-app-overlay.is-open .install-app-panel,
.install-app-panel.is-open {
    transform: scale(1);
    opacity: 1;
}

.install-app-panel__handle {
    display: none;
}

.install-app-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0;
}

.install-app-panel__head h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #012c6c;
    line-height: 1.25;
}

.install-app-panel__close {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #012c6c;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.install-app-panel__hint {
    margin: 0 0 2px;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.35;
}

.install-app-panel .banner-install__btn {
    padding: 11px 12px;
    border-radius: 12px;
    gap: 10px;
    box-shadow: none;
    margin: 0;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.install-app-panel .banner-install__btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.install-app-panel .banner-install__btn-text {
    min-width: 0;
    overflow: hidden;
}

.install-app-panel .banner-install__btn-text strong {
    font-size: 0.9rem;
}

.install-app-panel .banner-install__btn-text small {
    font-size: 0.72rem;
}

html.install-panel-open,
body.install-panel-open {
    overflow: hidden !important;
    overscroll-behavior: none;
}

@media (min-width: 992px) {
    .install-app-overlay {
        align-items: flex-start;
        justify-content: flex-end;
        padding: 74px 24px 24px;
        background: rgba(1, 22, 48, 0.35);
    }

    .install-app-panel {
        max-width: 340px;
        transform: translateY(-6px) scale(0.98);
    }

    .install-app-overlay.is-open .install-app-panel,
    .install-app-panel.is-open {
        transform: translateY(0) scale(1);
    }
}

.constron-nav__menu {
    margin-left: auto;
    margin-right: 16px;
}

.constron-nav .menu {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.constron-nav .menu li {
    padding: 0 !important;
}

.constron-nav .menu li a {
    font-family: var(--heading-fonts);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #012c6c !important;
    padding: 10px 14px !important;
    border-radius: 8px;
    position: relative;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.constron-nav .menu li a span {
    position: relative;
    z-index: 1;
}

.constron-nav .menu li a::before {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 3px;
    background: #fe8a09;
    border-radius: 2px;
    transition: transform 0.2s;
}

.constron-nav .menu li a:hover {
    color: #fe8a09 !important;
    background: rgba(254, 138, 9, 0.08) !important;
}

.constron-nav .menu li a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.constron-nav .menu li a.active {
    color: #012c6c !important;
    background: rgba(254, 138, 9, 0.12) !important;
    font-weight: 700 !important;
}

.constron-nav .menu li a.active::before {
    transform: translateX(-50%) scaleX(1);
}

.constron-nav .cmn--btn:not(.cmn--btn--outline) {
    font-family: var(--heading-fonts);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 11px 22px !important;
    line-height: 1.3 !important;
    border-radius: 10px !important;
    background: #fe8a09 !important;
    border: 1px solid #fe8a09 !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(254, 138, 9, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
}

.constron-nav .cmn--btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.4s;
}

.constron-nav .cmn--btn:hover {
    background: #e67d08 !important;
    border-color: #e67d08 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(254, 138, 9, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.constron-nav .cmn--btn:hover::after {
    left: 120%;
}

.constron-nav .cmn--btn--outline {
    background: transparent !important;
    color: #012c6c !important;
    border: 2px solid #012c6c !important;
    box-shadow: none !important;
}

.constron-nav .cmn--btn--outline:hover {
    background: #012c6c !important;
    color: #fff !important;
}

.constron-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 991.9px) {
    .constron-nav__actions {
        display: none;
    }
}

.constron-nav .nav-toggle span {
    background: #012c6c !important;
}

@media (max-width: 991.9px) {
    .constron-header .navbar-bottom-wrapper .menu {
        background: #fff !important;
        border: 1px solid rgba(1, 44, 108, 0.1);
        border-radius: 12px;
        padding: 12px;
        margin-top: 8px;
        gap: 2px;
        box-shadow: 0 8px 24px rgba(1, 44, 108, 0.12);
    }

    .constron-header .navbar-bottom-wrapper .menu li a {
        display: block;
        text-align: left;
        color: #012c6c !important;
    }
}

/* ── Hero / Banner ── */
.banner-section {
    position: relative;
    padding: 60px 0 80px !important;
    overflow: hidden;
    background: linear-gradient(135deg, #fafafa 0%, #fff 40%, #fffbf0 100%);
}

.banner-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(254, 138, 9, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.banner-section::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(1, 44, 108, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.banner-content {
    max-width: 520px !important;
    margin-top: 20px !important;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.banner-content .subtitle {
    font-family: var(--heading-fonts);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #012c6c !important;
    margin-bottom: 16px !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(254, 138, 9, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
}

.banner-content .subtitle::before {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #fe8a09!important;
    margin-right: 0 !important;
    transform: none !important;
}

.banner-content .title {
    text-transform: none !important;
    font-size: clamp(2rem, 4.5vw, 3.25rem) !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.03em !important;
    color: #012c6c !important;
    margin-bottom: 20px !important;
}

.banner-content .txt {
    font-size: 17px !important;
    line-height: 1.65 !important;
    color: #5a6169 !important;
    margin-bottom: 36px !important;
    max-width: 440px;
}

/* Hero CTA (substitui app store) */
.banner-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.banner-cta__btn {
    padding: 14px 28px !important;
    font-size: 14px !important;
}

.banner-cta__link {
    font-family: var(--heading-fonts);
    font-weight: 600;
    font-size: 14px;
    color: #012c6c;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, gap 0.2s;
}

.banner-cta__link i {
    font-size: 18px;
    transition: transform 0.2s;
}

.banner-cta__link:hover {
    color: #e67d08;
    gap: 12px;
}

.banner-cta__link:hover i {
    transform: translateX(4px);
}

/* Hero visual — imagem única */
.banner-visual {
    position: relative;
    flex: 0 0 46%;
    max-width: 520px;
    z-index: 1;
}

.banner-visual__glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 60% 40%, rgba(254, 138, 9, 0.25), transparent 65%);
    pointer-events: none;
}

.banner-visual__frame {
    position: relative;
    width: 100%;
    border-radius: var(--landing-radius-lg);
    overflow: hidden;
    box-shadow: var(--landing-shadow-lg);
    border: 3px solid #fff;
    background: linear-gradient(145deg, #e8eef5, #d4dce8);
    aspect-ratio: 4 / 3;
}

.banner-visual__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-visual__frame--media {
    aspect-ratio: 16 / 9;
}

.banner-video-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #0a1628;
}

.banner-video-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.banner-video-carousel__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Player em 16:9 */
.banner-video-carousel__viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(145deg, #e8eef5, #d4dce8);
}

.banner-video-carousel__iframe,
.banner-video-carousel__player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border: 0;
    display: block;
    object-fit: contain;
    object-position: center center;
    background: #0a1628;
}

.banner-video-carousel__splash,
.banner-video-carousel__shield,
.banner-video-carousel__chrome-mask,
.banner-video-carousel__ad-tag {
    display: none !important;
}

.banner-video-carousel__label {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    background: rgba(1, 44, 108, 0.88);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    max-width: calc(100% - 24px);
    font-size: 12px;
    line-height: 1.35;
    pointer-events: none;
}

.banner-video-carousel__badge {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #fe8a09;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.banner-video-carousel__label strong {
    display: block;
    font-family: var(--heading-fonts);
    font-size: 13px;
}

.banner-video-carousel__label span:last-child {
    opacity: 0.85;
}

.banner-video-carousel__dots {
    position: absolute;
    bottom: 10px;
    right: 12px;
    z-index: 4;
    display: flex;
    gap: 6px;
}

.banner-video-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.banner-video-carousel__dot.is-active {
    background: #fe8a09;
    transform: scale(1.15);
}

.banner-visual__frame::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fe8a09, #012c6c);
}

.banner-visual__card {
    position: absolute;
    bottom: -16px;
    left: -16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(1, 44, 108, 0.15);
    border: 1px solid rgba(1, 44, 108, 0.06);
    max-width: 240px;
}

.banner-visual__card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(254, 138, 9, 0.15);
    color: #fe8a09;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.banner-visual__card strong {
    display: block;
    font-family: var(--heading-fonts);
    font-size: 13px;
    color: #012c6c;
}

.banner-visual__card span {
    font-size: 12px;
    color: #6b7280;
}

.cmn--btn--outline-light {
    background: transparent !important;
    border: 2px solid #012c6c !important;
    color: #012c6c !important;
    box-shadow: none !important;
}

.cmn--btn--outline-light:hover {
    background: #012c6c !important;
    color: #fff !important;
}

/* Trust bar */
.trust-bar {
    background: #012c6c;
    padding: 28px 0;
    border-top: 1px solid rgba(254, 138, 9, 0.15);
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.trust-bar__item > i {
    font-size: 28px;
    color: #fe8a09;
    flex-shrink: 0;
}

.trust-bar__item strong {
    display: block;
    font-family: var(--heading-fonts);
    font-size: 14px;
    font-weight: 700;
}

.trust-bar__item span {
    font-size: 12px;
    opacity: 0.75;
}

/* Section header */
.section-header {
    margin-bottom: 48px;
}

.section-subtitle {
    color: #6b7280;
    font-size: 16px;
    margin-top: 8px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* How it works */
.steps-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

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

.step-card {
    position: relative;
    background: #fff;
    border-radius: var(--landing-radius);
    padding: 36px 28px 32px;
    text-align: center;
    border: 1px solid rgba(1, 44, 108, 0.06);
    box-shadow: var(--landing-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--landing-shadow-lg);
}

.step-card__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--heading-fonts);
    font-size: 32px;
    font-weight: 800;
    color: rgba(254, 138, 9, 0.2);
    line-height: 1;
}

.step-card__icon {
    font-size: 40px;
    color: #fe8a09;
    margin-bottom: 16px;
    display: block;
}

.step-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #012c6c;
}

.step-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.landing-empty {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.landing-empty i {
    font-size: 48px;
    color: #fe8a09;
    opacity: 0.5;
    margin-bottom: 12px;
    display: block;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.cta-link-secondary {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.cta-link-secondary:hover {
    color: #fe8a09;
}

.app-section-cta {
    display: inline-flex;
}

.app-slider-section .app-thumb .smaller-thumb {
    display: none;
}

/* ── Section titles ── */
.section-title {
    font-family: var(--heading-fonts);
    font-weight: 800 !important;
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
    color: #012c6c !important;
    text-transform: none !important;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, #fe8a09, #e67d08);
    border-radius: 2px;
    margin: 12px auto 0;
}

/* ── Services ── */
.service-section {
    background: #fff;
    padding: 80px 0 !important;
}

.service__item {
    border-radius: var(--landing-radius) !important;
    border: 1px solid rgba(1, 44, 108, 0.06) !important;
    box-shadow: var(--landing-shadow) !important;
    padding: 36px 24px 28px !important;
    margin: 8px !important;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s !important;
    position: relative;
    overflow: hidden;
}

.service__item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fe8a09, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service__item:hover {
    transform: translateY(-6px);
    box-shadow: var(--landing-shadow-lg) !important;
    border-color: rgba(254, 138, 9, 0.3) !important;
}

.service__item:hover::after {
    opacity: 1;
}

.service__item-content .title {
    font-family: var(--heading-fonts);
    font-weight: 700;
    color: #012c6c !important;
}

.service__item-btn {
    border-radius: 50px !important;
    font-weight: 600 !important;
    border-color: #012c6c !important;
    color: #012c6c !important;
}

.service__item-btn:hover {
    background: #fe8a09!important;
    border-color: #fe8a09!important;
    color: #012c6c !important;
}

.slide-icon {
    background: #012c6c !important;
    color: #fe8a09!important;
    box-shadow: var(--landing-shadow);
    transition: transform 0.2s, background 0.2s;
}

.slide-icon:hover {
    background: #fe8a09!important;
    color: #012c6c !important;
    transform: scale(1.05);
}

/* ── About ── */
.about-section {
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    padding: 80px 0 !important;
}

.about__wrapper-content {
    border-radius: var(--landing-radius-lg) !important;
    box-shadow: var(--landing-shadow-lg) !important;
    border: 1px solid rgba(1, 44, 108, 0.05);
    padding: 48px 40px !important;
}

.about__wrapper-content .section-title::after {
    margin-left: 0;
}

.cmn--btn2 {
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    background: rgba(254, 138, 9, 0.15) !important;
    color: #012c6c !important;
    border: 1px solid rgba(254, 138, 9, 0.4) !important;
}

.cmn--btn2:hover {
    background: #fe8a09!important;
    color: #012c6c !important;
}

.about__wrapper-thumb .bg-img::before {
    background: rgba(254, 138, 9, 0.85) !important;
}

.about__wrapper-thumb .main-img {
    border-radius: var(--landing-radius);
    box-shadow: var(--landing-shadow-lg);
}

/* ── Stats / Counter ── */
.contact-info-section {
    padding: 60px 0 !important;
}

.counter__item {
    border-radius: var(--landing-radius) !important;
    border: 1px solid rgba(1, 44, 108, 0.06) !important;
    box-shadow: var(--landing-shadow) !important;
    transition: transform 0.3s, box-shadow 0.3s;
    color: #012c6c !important;
}

.counter__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--landing-shadow-lg);
}

div[class*="col"]:nth-of-type(3n + 1) > .counter__item,
div[class*="col"]:nth-of-type(3n + 2) > .counter__item,
div[class*="col"]:nth-of-type(3n + 3) > .counter__item {
    color: #012c6c !important;
}

.counter__item-right h3 {
    font-family: var(--heading-fonts);
    font-weight: 700;
    color: #012c6c;
}

/* ── App slider ── */
.app-slider-section {
    background: #012c6c;
    color: #fff;
    padding: 80px 0 !important;
}

.app-slider-section .subtitle,
.app-slider-section h3 {
    color: #fff !important;
}

.app-slider-section p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.app-slider-section .owl-btn {
    background: rgba(254, 138, 9, 0.15);
    color: #fe8a09;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

.app-slider-section .owl-btn:hover {
    background: #fe8a09;
    color: #012c6c;
}

/* ── CTA ── */
.cta-section {
    padding: 80px 0 !important;
}

.cta-wrapper {
    border-radius: var(--landing-radius-lg) !important;
    background: linear-gradient(135deg, #012c6c 0%, #013a85 100%) !important;
    padding: 64px 40px !important;
    box-shadow: var(--landing-shadow-lg);
    border: 1px solid rgba(254, 138, 9, 0.15);
}

.cta-wrapper::before {
    background: none !important;
}

.cta-wrapper .title {
    color: #fff !important;
    font-weight: 800 !important;
    text-transform: none !important;
    letter-spacing: -0.02em;
}

.cta-wrapper .text-btn-title,
.cta-wrapper p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.cta-wrapper .cmn--btn {
    background: #fe8a09 !important;
    color: #fff !important;
    border-color: #fe8a09 !important;
    font-weight: 700;
    padding: 12px 32px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 20px rgba(254, 138, 9, 0.3);
}

.cta-wrapper .cmn--btn:hover {
    background: #fff !important;
    color: #012c6c !important;
    border-color: #fff !important;
}

/* ── Testimonials ── */
.testimonial-section {
    background: #fafafa;
    padding: 80px 0 !important;
}

.testimonial__item-wrapper {
    background: #fff;
    border-radius: var(--landing-radius);
    padding: 32px;
    box-shadow: var(--landing-shadow);
    border: 1px solid rgba(1, 44, 108, 0.05);
}

.testimonial-section .owl-btn {
    background: #012c6c;
    color: #fe8a09;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.testimonial-section .owl-btn:hover {
    background: #fe8a09;
    color: #012c6c;
}

/* ── Newsletter ── */
.subscribe-newsletter {
    background: linear-gradient(135deg, #012c6c 0%, #013a85 100%) !important;
    padding: 64px 0 !important;
}

.subscribe-newsletter h3,
.subscribe-newsletter p {
    color: #fff !important;
}

.subscribe-newsletter .text--base {
    color: #fe8a09!important;
}

.subscribe-newsletter .form-control {
    border-radius: 50px !important;
    padding: 14px 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
}

.subscribe-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-newsletter .subscribe-btn {
    background: #fe8a09 !important;
    color: #fff !important;
    border-color: #fe8a09 !important;
    font-weight: 700;
    border-radius: 50px !important;
}

/* ── Footer ── */
footer {
    background: #012c6c !important;
}

.main-footer {
    padding-top: 48px;
}

.footer__wrapper-link a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
}

.footer__wrapper-link a:hover {
    color: #fe8a09 !important;
}

.footer__wrapper-contact h6 {
    color: #fe8a09;
    font-family: var(--heading-fonts);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer__wrapper-contact a,
.footer__wrapper-contact span {
    color: rgba(255, 255, 255, 0.8);
}

.footer__wrapper .cont p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(254, 138, 9, 0.2);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom a {
    color: #fe8a09;
    text-decoration: none;
    font-weight: 600;
}

/* ── Global buttons ── */
.cmn--btn:not(.cmn--btn--outline):not(.cmn--btn--outline-light) {
    font-family: var(--heading-fonts);
    font-weight: 700;
    color: #fff !important;
    background: #fe8a09 !important;
    border-color: #fe8a09 !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    line-height: 1.4 !important;
    box-shadow: 0 4px 14px rgba(254, 138, 9, 0.25);
}

.cmn--btn:not(.cmn--btn--outline):not(.cmn--btn--outline-light):hover {
    background: #e67d08 !important;
    border-color: #e67d08 !important;
    color: #fff !important;
}

/* ── Dark theme tweaks ── */
.dark-theme .banner-section {
    background: linear-gradient(135deg, #012c6c 0%, #013a85 100%);
}

.dark-theme .banner-content .title {
    color: #fff !important;
}

.dark-theme .banner-content .txt {
    color: rgba(255, 255, 255, 0.7) !important;
}

.dark-theme .constron-header,
.dark-theme .constron-header .navbar-bottom,
.dark-theme .constron-nav.navbar-bottom-wrapper {
    background: #fff !important;
}

.dark-theme .constron-nav .menu li a {
    color: #012c6c !important;
}

.dark-theme .service-section,
.dark-theme .about-section {
    background: #012c6c;
}

.dark-theme .service__item,
.dark-theme .about__wrapper-content,
.dark-theme .counter__item,
.dark-theme .testimonial__item-wrapper {
    background: #013a85 !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .banner-section {
        padding: 28px 0 40px !important;
        overflow: visible;
    }

    .banner-content {
        margin-top: 0 !important;
    }

    .banner-content .title {
        margin-bottom: 12px !important;
    }

    .banner-content .txt {
        margin-bottom: 20px !important;
    }

    .banner-visual {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
        margin-bottom: 8px;
        overflow: visible;
    }

    .banner-visual__frame--media {
        aspect-ratio: 16 / 9;
        width: 100%;
        /* fallback 16:9 em navegadores mobile antigos */
        min-height: 0;
    }

    @supports not (aspect-ratio: 16 / 9) {
        .banner-visual__frame--media {
            height: 0;
            padding-bottom: 56.25%;
        }

        .banner-visual__frame--media .banner-video-carousel {
            position: absolute;
            inset: 0;
            height: 100%;
        }
    }

    /* Card abaixo do vídeo — evita sobrepor/cortar o player no celular */
    .banner-visual__card {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 16px;
        max-width: 100%;
    }

    .trust-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .navbar-bottom-wrapper {
        border-radius: 0 0 16px 16px !important;
        padding: 12px 16px !important;
    }

    .banner-content .title {
        font-size: 1.75rem !important;
    }

    .banner-visual__frame {
        border-width: 2px;
        border-radius: 14px;
    }

    .banner-visual__frame--media {
        aspect-ratio: 16 / 9;
    }

    .banner-video-carousel__player {
        object-fit: contain;
        object-position: center center;
    }

    .trust-bar__grid {
        grid-template-columns: 1fr;
    }

    .banner-visual__card {
        margin-top: 12px;
        padding: 10px 12px;
    }

    .banner-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .banner-cta__btn,
    .banner-cta__btn-secondary {
        text-align: center;
        justify-content: center;
    }
}

/* Deploy-safe: ícones e badges sem PNG externos */
.footer-contact-icon {
    font-size: 2rem;
    color: var(--constron-orange, #fe8a09);
    display: block;
    margin-bottom: 0.5rem;
}

.app-store-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    background: #fff;
    color: #012c6c;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-store-badge--play {
    background: #012c6c;
    color: #fff;
}

.app-phone-frame {
    width: 260px;
    max-width: 100%;
    aspect-ratio: 9/19;
    border-radius: 32px;
    border: 10px solid #012c6c;
    background: linear-gradient(180deg, #f4f5f7 0%, #e8ecf2 100%);
    box-shadow: 0 20px 50px rgba(1, 44, 108, 0.2);
    margin: 0 auto;
    position: relative;
}

.app-phone-frame::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    border-radius: 6px;
    background: #012c6c;
    opacity: 0.25;
}

/* ── Instalar apps (PWA) — alto contraste ── */
.banner-install {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 8px 0 22px;
    max-width: 420px;
}

.banner-install__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fe8a09;
    margin: 0 0 2px;
}

.banner-install__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    text-decoration: none !important;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 20px rgba(1, 44, 108, 0.12);
}

.banner-install__btn:hover {
    transform: translateY(-2px);
    text-decoration: none !important;
}

.banner-install__btn--client {
    background: #012c6c;
    color: #fff !important;
    border: 2px solid #012c6c;
}

.banner-install__btn--client:hover {
    background: #0a3d8f;
    color: #fff !important;
    box-shadow: 0 10px 28px rgba(1, 44, 108, 0.28);
}

.banner-install__btn--provider {
    background: #fff;
    color: #012c6c !important;
    border: 2px solid #012c6c;
}

.banner-install__btn--provider:hover {
    background: #ecfdf5;
    border-color: #065f46;
    color: #065f46 !important;
}

.banner-install__btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex-shrink: 0;
}

.banner-install__btn--client .banner-install__btn-icon {
    background: rgba(254, 138, 9, 0.2);
    color: #fe8a09;
}

.banner-install__btn--provider .banner-install__btn-icon {
    background: #ecfdf5;
    color: #065f46;
}

.banner-install__btn-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.banner-install__btn-text strong {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.2;
}

.banner-install__btn-text small {
    font-size: 0.78rem;
    opacity: 0.78;
    line-height: 1.3;
}

.banner-install__btn-arrow {
    font-size: 1.1rem;
    opacity: 0.7;
    flex-shrink: 0;
}

/* Compat: classes antigas (caso cache) */
.banner-cta--apps { display: none; }

.install-apps-section {
    background: linear-gradient(180deg, #f4f6fb 0%, #fff 100%);
}

.install-app-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    box-shadow: 0 8px 32px rgba(1, 44, 108, 0.08);
    border: 1px solid #e8ecf2;
    text-align: center;
}

.install-app-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
}

.install-app-card--client .install-app-card__icon {
    background: #fff4e8;
    color: #fe8a09;
}

.install-app-card--provider .install-app-card__icon {
    background: #ecfdf5;
    color: #065f46;
}

.install-app-card h4 {
    font-weight: 700;
    color: #012c6c;
    margin-bottom: 8px;
}

.install-app-card p {
    color: #64748b;
    font-size: 0.92rem;
    margin-bottom: 20px;
    min-height: 44px;
}

.install-app-card__hint {
    display: block;
    margin-top: 12px;
    color: #94a3b8;
    font-size: 0.78rem;
    line-height: 1.4;
}

.app-section-install {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.app-install-link {
    color: #012c6c;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.app-install-link:hover {
    color: #fe8a09;
}

.app-install-sep {
    color: #cbd5e1;
}

/* Barra fixa antiga removida — instalação agora no header */
.mobile-install-bar {
    display: none !important;
}

@media (max-width: 991px) {
    .banner-section {
        padding: 16px 0 24px !important;
        background: linear-gradient(180deg, #fff 0%, #fff7ec 55%, #fff 100%);
        overflow: visible !important;
    }

    .banner-content {
        max-width: 100% !important;
    }

    .banner-content .title {
        font-size: 1.55rem !important;
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
    }

    .banner-content .txt {
        font-size: 0.92rem !important;
        margin-bottom: 14px !important;
    }

    .banner-cta {
        gap: 10px;
        margin-top: 0;
    }

    .banner-cta__btn,
    .banner-cta__btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 13px 18px !important;
        border-radius: 12px !important;
    }

    .cmn--btn--outline.banner-cta__btn-secondary {
        background: #fff !important;
        color: #012c6c !important;
        border: 2px solid #012c6c !important;
    }

    .banner-visual {
        margin-top: 18px;
        margin-bottom: 8px;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .banner-visual__frame,
    .banner-visual__frame--media {
        aspect-ratio: 16 / 9;
        width: 100%;
        min-height: 200px;
        height: auto;
        overflow: hidden;
    }

    .banner-video-carousel {
        position: absolute;
        inset: 0;
    }

    .banner-video-carousel__player,
    .banner-video-carousel__iframe {
        object-fit: contain !important;
    }

    .banner-visual__card {
        display: none;
    }

    .constron-header {
        position: sticky;
        top: 0;
        z-index: 1040;
        backdrop-filter: blur(10px);
        background: #fff;
    }

    .navbar-bottom-wrapper {
        box-shadow: 0 2px 16px rgba(1, 44, 108, 0.08);
        display: flex !important;
        align-items: center;
        gap: 4px;
    }

    .nav-toggle {
        margin-left: 0 !important;
        flex-shrink: 0;
    }
}

@media (display-mode: standalone) {
    .header-install {
        display: none;
    }
}
