/*
  Version: 0.26.0327.7
  Cambio: mejora el contraste de la hero con overlay mas oscuro, tipografia clara y botones/chips mas legibles sobre imagen de fondo.
*/

:root {
    --dn-primary: #3f7d20;
    --dn-primary-dark: #244c11;
    --dn-accent: #d9f27f;
    --dn-ink: #132117;
    --dn-muted: #5b695e;
    --dn-surface: #f5f8ef;
    --dn-surface-strong: #edf4df;
    --dn-line: rgba(19, 33, 23, 0.1);
    --dn-white: #ffffff;
    --dn-shadow: 0 24px 60px rgba(26, 43, 18, 0.14);
    --dn-radius-xl: 28px;
    --dn-radius-lg: 20px;
    --dn-radius-md: 14px;
}

html {
    scroll-behavior: smooth;
}

body.site-shell {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dn-ink);
    background:
        radial-gradient(circle at top left, rgba(217, 242, 127, 0.35), transparent 28%),
        linear-gradient(180deg, #fbfdf7 0%, #eff5e4 100%);
}

body.site-shell main {
    overflow: hidden;
}

.navbar.site-nav {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(19, 33, 23, 0.06);
}

.site-nav .navbar-brand img {
    height: 46px;
}

.site-nav .nav-link {
    color: var(--dn-ink);
    font-weight: 600;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus,
.site-nav .nav-link.active {
    color: var(--dn-primary);
}
/** /
.hero-section {
    position: relative;
    padding: 9rem 0 5rem;
    background:
        linear-gradient(135deg, rgba(8, 14, 9, 0.88), rgba(28, 54, 18, 0.78)),
        url("/img/slider2_2.jpg") center/cover no-repeat;
}
/**/
.hero-section {
    position: relative;
    padding: 9rem 0 5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(28, 54, 18, 0.78)), url(/img/slider2_2.jpg) center / cover no-repeat;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 2rem 0 auto auto;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(63, 125, 32, 0.2) 0%, rgba(63, 125, 32, 0) 72%);
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 12, 8, 0.48) 0%, rgba(7, 12, 8, 0.2) 46%, rgba(7, 12, 8, 0.08) 100%),
        linear-gradient(180deg, rgba(251, 253, 247, 0.02) 0%, rgba(239, 245, 228, 0.08) 100%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(63, 125, 32, 0.09);
    color: var(--dn-primary-dark);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-title,
.section-title {
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-title {
    font-size: clamp(2.7rem, 6vw, 5.3rem);
    max-width: 11ch;
}

.hero-section .hero-title,
.hero-section .hero-copy {
    color: #f7fbf2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-section .eyebrow {
    background: rgba(217, 242, 127, 0.14);
    color: #f2ffd0;
    border: 1px solid rgba(217, 242, 127, 0.18);
}

.hero-section .btn-outline-brand {
    --bs-btn-color: #f7fbf2;
    --bs-btn-border-color: rgba(255, 255, 255, 0.45);
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.12);
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.68);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-active-bg: rgba(255, 255, 255, 0.16);
    --bs-btn-active-border-color: rgba(255, 255, 255, 0.7);
}

.hero-copy,
.section-copy,
.lead-copy {
    color: var(--dn-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-brand {
    --bs-btn-bg: var(--dn-primary);
    --bs-btn-border-color: var(--dn-primary);
    --bs-btn-hover-bg: var(--dn-primary-dark);
    --bs-btn-hover-border-color: var(--dn-primary-dark);
    --bs-btn-active-bg: var(--dn-primary-dark);
    --bs-btn-active-border-color: var(--dn-primary-dark);
    --bs-btn-color: #fff;
    --bs-btn-padding-y: 0.9rem;
    --bs-btn-padding-x: 1.45rem;
    --bs-btn-font-weight: 700;
    --bs-btn-border-radius: 999px;
    box-shadow: 0 14px 30px rgba(63, 125, 32, 0.24);
}

.btn-outline-brand {
    --bs-btn-color: var(--dn-primary-dark);
    --bs-btn-border-color: rgba(63, 125, 32, 0.26);
    --bs-btn-hover-bg: rgba(63, 125, 32, 0.08);
    --bs-btn-hover-border-color: rgba(63, 125, 32, 0.32);
    --bs-btn-hover-color: var(--dn-primary-dark);
    --bs-btn-active-bg: rgba(63, 125, 32, 0.12);
    --bs-btn-active-border-color: rgba(63, 125, 32, 0.32);
    --bs-btn-border-radius: 999px;
    --bs-btn-font-weight: 700;
    --bs-btn-padding-y: 0.9rem;
    --bs-btn-padding-x: 1.45rem;
}

.hero-panel,
.glass-panel,
.metric-card,
.feature-card,
.journey-card,
.offer-card,
.contact-card,
.carousel-card,
.sector-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(19, 33, 23, 0.06);
    border-radius: var(--dn-radius-xl);
    box-shadow: var(--dn-shadow);
}

.hero-panel {
    padding: 1.4rem;
}

.hero-visual {
    min-height: 500px;
    display: grid;
    gap: 1rem;
    align-content: end;
    background:
        linear-gradient(155deg, rgba(19, 33, 23, 0.9), rgba(63, 125, 32, 0.92)),
        url("/img/slider2_2.jpg") center/cover no-repeat;
    color: var(--dn-white);
    padding: 1.6rem;
}

.hero-visual.hero-visual-parts {
    background:
        linear-gradient(155deg, rgba(19, 33, 23, 0.84), rgba(63, 125, 32, 0.88)),
        url("/img/car_engine.jpg") center/cover no-repeat;
}

.hero-visual.hero-visual-satelite {
    background:
        linear-gradient(155deg, rgba(19, 33, 23, 0.84), rgba(63, 125, 32, 0.88)),
        url("/img/desk.jpg") center/cover no-repeat;
}

.hero-chip-row,
.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-chip,
.metric-chip {
    border-radius: 999px;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.hero-shot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.hero-shot-grid img,
.screen-track img {
    width: 100%;
    display: block;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.hero-shot-grid.hero-shot-grid-single img {
    max-height: 320px;
    object-fit: cover;
}

.hero-summary-card {
    padding: 1.15rem 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.hero-summary-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.hero-section .logo-pill {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dn-primary-dark);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.logo-cloud {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.logo-cloud .logo-pill {
    padding: 1rem 1.15rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--dn-line);
    text-align: center;
    color: var(--dn-muted);
    font-weight: 700;
}

.section-block {
    padding: 4.4rem 0;
}

.section-block.compact {
    padding-top: 2rem;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.metric-card,
.feature-card,
.journey-card,
.offer-card,
.contact-card,
.sector-card {
    height: 100%;
    padding: 1.6rem;
}

.metric-card h3,
.feature-card h3,
.journey-card h3,
.offer-card h3,
.contact-card h3,
.sector-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.metric-value {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--dn-primary-dark);
    line-height: 1;
}

.icon-badge {
    width: 3.25rem;
    height: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(63, 125, 32, 0.18), rgba(217, 242, 127, 0.65));
    color: var(--dn-primary-dark);
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.timeline-list,
.check-list,
.contact-list,
.detail-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.timeline-list li,
.check-list li,
.detail-list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.72rem 0;
    border-bottom: 1px solid rgba(19, 33, 23, 0.06);
}

.timeline-list li:last-child,
.check-list li:last-child,
.detail-list li:last-child {
    border-bottom: 0;
}

.timeline-list span,
.check-list span,
.detail-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: var(--dn-surface-strong);
    color: var(--dn-primary-dark);
    font-weight: 800;
}

.offer-card.featured {
    background:
        linear-gradient(160deg, rgba(63, 125, 32, 0.96), rgba(36, 76, 17, 0.96));
    color: var(--dn-white);
}

.offer-card.featured .lead-copy,
.offer-card.featured p,
.offer-card.featured li {
    color: rgba(255, 255, 255, 0.86);
}

.offer-card .price-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 800;
}

.app-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 1.5rem;
    align-items: stretch;
}

.download-panel {
    padding: 1.6rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 223, 0.92));
}

.download-panel .apk-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: var(--dn-surface-strong);
    color: var(--dn-primary-dark);
    font-weight: 700;
}

.screen-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

.carousel-button {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    border: 0;
    background: var(--dn-primary-dark);
    color: #fff;
    box-shadow: 0 14px 24px rgba(19, 33, 23, 0.18);
}

.carousel-button:disabled {
    opacity: 0.42;
}

.screen-viewport {
    overflow: hidden;
}

.screen-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.35s ease;
    will-change: transform;
}

.screen-track img {
    flex: 0 0 calc(33.333% - 0.67rem);
    min-width: calc(33.333% - 0.67rem);
    background: #fff;
}

.app-note {
    font-size: 0.95rem;
    color: var(--dn-muted);
}

.contact-strip {
    padding: 3rem 0 4.5rem;
}

.contact-form-shell {
    padding: 1.8rem;
}

.contact-form-shell .form-control,
.contact-form-shell .form-select {
    border-radius: 14px;
    border: 1px solid rgba(19, 33, 23, 0.1);
    padding: 0.85rem 1rem;
    box-shadow: none;
}

.contact-form-shell .form-control:focus,
.contact-form-shell .form-select:focus {
    border-color: rgba(63, 125, 32, 0.4);
    box-shadow: 0 0 0 0.2rem rgba(63, 125, 32, 0.12);
}

.form-status {
    display: none;
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    font-weight: 600;
}

.form-status.is-success {
    display: block;
    background: rgba(63, 125, 32, 0.12);
    color: var(--dn-primary-dark);
}

.form-status.is-error {
    display: block;
    background: rgba(187, 52, 52, 0.12);
    color: #8e1f1f;
}

.contact-card a,
.site-footer a {
    color: inherit;
    text-decoration: none;
}

.contact-card a:hover,
.site-footer a:hover {
    color: var(--dn-primary);
}

.footer-top {
    padding: 3rem 0 1.5rem;
}

.site-footer {
    border-top: 1px solid rgba(19, 33, 23, 0.08);
    background: rgba(255, 255, 255, 0.72);
}

.site-footer .footer-brand img {
    max-height: 50px;
}

.site-footer small {
    color: var(--dn-muted);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 7.5rem;
    }

    .app-layout,
    .logo-cloud {
        grid-template-columns: 1fr 1fr;
    }

    .screen-track img {
        flex-basis: calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        max-width: none;
    }

    .hero-shot-grid,
    .logo-cloud,
    .app-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .screen-shell {
        grid-template-columns: 1fr;
    }

    .carousel-button {
        width: 100%;
        border-radius: 18px;
        height: auto;
        padding: 0.85rem 1rem;
    }

    .screen-track img {
        flex-basis: 100%;
        min-width: 100%;
    }
}
