:root {
    --bg: #08131b;
    --bg-soft: #102636;
    --panel: rgba(8, 19, 27, 0.7);
    --panel-strong: rgba(10, 23, 32, 0.9);
    --surface: #f4f7f2;
    --surface-2: #dde6de;
    --text: #f3f4ed;
    --text-dark: #11222b;
    --muted: #9db0bb;
    --line: rgba(255, 255, 255, 0.1);
    --brand: #72b63f;
    --brand-2: #f18a3b;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    --radius: 28px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(241, 138, 59, 0.18), transparent 28%),
        radial-gradient(circle at left 20%, rgba(114, 182, 63, 0.12), transparent 30%),
        linear-gradient(180deg, #08131b 0%, #08131b 30%, #eef2ea 30%, #eef2ea 100%);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

code {
    padding: 0.14rem 0.42rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.88em;
}

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    padding: 120px 0 0;
    background:
        linear-gradient(90deg, rgba(7, 21, 29, 0.9) 0%, rgba(7, 21, 29, 0.8) 36%, rgba(7, 21, 29, 0.4) 68%, rgba(7, 21, 29, 0.7) 100%),
        linear-gradient(0deg, rgba(7, 21, 29, 0.18), rgba(7, 21, 29, 0.18)),
        url("../img/hero-logistica.jpg") center center / cover no-repeat;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at left 72%, rgba(114, 182, 63, 0.12), transparent 26%),
        radial-gradient(circle at right 18%, rgba(241, 138, 59, 0.14), transparent 22%);
    pointer-events: none;
}

.site-header > .container {
    position: relative;
    z-index: 1;
}

.topbar {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 40px), var(--container));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(8, 19, 27, 0.9);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
    z-index: 20;
    transition:
        top 0.24s ease,
        padding 0.24s ease,
        border-radius 0.24s ease,
        background-color 0.24s ease,
        box-shadow 0.24s ease;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(230, 236, 229, 0.96));
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    transition: padding 0.24s ease, border-radius 0.24s ease, box-shadow 0.24s ease;
}

.brand img {
    width: clamp(92px, 8.4vw, 124px);
    transition: width 0.24s ease;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 2px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 0.84rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.24s ease, transform 0.24s ease, font-size 0.24s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    transform: scaleX(0.35);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #fff;
    transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    opacity: 1;
}

.topbar.is-condensed {
    top: 6px;
    padding: 8px 14px;
    border-radius: 16px;
    background: rgba(8, 19, 27, 0.96);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.topbar.is-condensed .brand-mark {
    padding: 5px 10px;
    border-radius: 15px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.topbar.is-condensed .brand img {
    width: clamp(82px, 7.4vw, 110px);
}

.topbar.is-condensed .site-nav {
    gap: 22px;
}

.topbar.is-condensed .site-nav a {
    min-height: 34px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 6px auto;
    border-radius: 99px;
}

.hero {
    display: flex;
    align-items: center;
    min-height: calc(100svh - 112px);
    padding: 60px 0 72px;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 18px;
    color: #d7e2e8;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 700;
}

.hero h1,
.section h2,
.cta-box h2,
.contact-form-head h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    letter-spacing: -0.04em;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(2.5rem, 4.2vw, 4.8rem);
    line-height: 1.02;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero-text,
.section-text,
.info-card p,
.timeline-step p,
.cta-box p,
.contact-card span,
.line-item p,
.check-list li,
.contact-form-head p,
.field span,
.field small,
.form-captcha,
.site-footer small {
    line-height: 1.75;
    font-size: 1rem;
}

.hero-text {
    max-width: 640px;
    margin: 18px 0 0;
    color: #d9e4ea;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin: 30px 0 22px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--brand-2), #ff9e59);
    color: #fff;
    box-shadow: 0 18px 38px rgba(241, 138, 59, 0.24);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.button-secondary.dark {
    border-color: rgba(17, 34, 43, 0.12);
    color: var(--text-dark);
    background: rgba(17, 34, 43, 0.05);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-highlights li,
.stacked-tags span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f7f8f3;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-highlights li::before,
.line-item span {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    flex: 0 0 auto;
}

.info-card h3,
.timeline-step h3,
.contact-card strong {
    display: block;
    font-size: 1.15rem;
    line-height: 1.35;
}

.section {
    padding: 96px 0;
    color: var(--text-dark);
}

.section h2,
.cta-box h2 {
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    line-height: 1.04;
}

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: start;
}

.section-intro {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(17, 34, 43, 0.02)),
        var(--surface);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 16px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: #4b5d68;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-solutions {
    background: linear-gradient(180deg, #f4f7f2, #edf2ec);
}

.section-solutions .eyebrow,
.section-solutions h2 {
    color: var(--text-dark);
}

.section-solutions .section-heading {
    max-width: 700px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.info-card,
.timeline-step,
.contact-card,
.panel,
.cta-box,
.contact-form-wrap {
    border-radius: var(--radius);
}

.info-card {
    padding: 28px;
    background: linear-gradient(180deg, #ffffff, #f6f8f4);
    border: 1px solid rgba(17, 34, 43, 0.08);
    box-shadow: 0 18px 44px rgba(17, 34, 43, 0.08);
}

.info-card h3 {
    color: #142732;
    margin-bottom: 12px;
}

.info-card p {
    color: #556a75;
}

.icon-wrap {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 18px;
    color: var(--brand-2);
    background: linear-gradient(135deg, rgba(241, 138, 59, 0.16), rgba(114, 182, 63, 0.16));
}

.icon-wrap svg {
    width: 24px;
    height: 24px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 30px;
    align-items: start;
}

.contact-grid {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.contact-card {
    padding: 24px 28px;
    background: #fff;
    border: 1px solid rgba(17, 34, 43, 0.08);
    box-shadow: 0 18px 44px rgba(17, 34, 43, 0.08);
}

.contact-card span {
    display: block;
    margin-bottom: 8px;
    color: #67808d;
}

.contact-card strong {
    color: var(--text-dark);
}

.contact-form-wrap {
    padding: 30px;
    background: linear-gradient(180deg, rgba(17, 34, 43, 0.98), rgba(8, 19, 27, 0.98));
    box-shadow: var(--shadow);
}

.contact-form-head h3 {
    font-size: 1.7rem;
    color: #fff;
}

.contact-form-head p {
    margin: 14px 0 0;
    color: #b6c8d1;
}

.contact-form {
    margin-top: 24px;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.field span {
    color: #dbe5ea;
    font-size: 0.95rem;
    font-weight: 600;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    outline: none;
    transition: border-color 160ms ease, background 160ms ease;
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(241, 138, 59, 0.62);
    background: rgba(255, 255, 255, 0.08);
}

.field textarea {
    resize: vertical;
    min-height: 150px;
}

.field small {
    color: #ffb48a;
    line-height: 1.45;
}

.form-alert {
    padding: 14px 16px;
    border-radius: 18px;
    margin: 0 0 18px;
    font-weight: 600;
}

.form-alert.success {
    background: rgba(114, 182, 63, 0.16);
    color: #d8f0c4;
    border: 1px solid rgba(114, 182, 63, 0.28);
}

.form-alert.error {
    background: rgba(241, 138, 59, 0.14);
    color: #ffd3bb;
    border: 1px solid rgba(241, 138, 59, 0.22);
}

.form-captcha {
    margin: 6px 0 18px;
    color: #b6c8d1;
}

.form-captcha.placeholder {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.18);
}

.site-footer {
    padding: 28px 0 42px;
    color: #d7e2e8;
    background:
        linear-gradient(180deg, rgba(5, 12, 17, 0), rgba(5, 12, 17, 0.1)),
        #050c11;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 26px;
}

.footer-row p,
.site-footer small {
    margin: 0;
}

.site-footer a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
}

.site-footer a svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #20c15a, #12a84b);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 34px rgba(18, 168, 75, 0.28);
}

@media (max-width: 1080px) {
    .split,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .site-header {
        min-height: auto;
        padding-top: 110px;
        background-position: 68% center;
    }

    .menu-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 24px;
        background: rgba(8, 19, 27, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 48px 0 56px;
    }

    .cards-grid,
    .field-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .site-header {
        padding-top: 16px;
        padding-top: 98px;
        background-position: 72% center;
    }

    .topbar {
        gap: 16px;
    }

    .brand-mark {
        padding: 8px 12px;
    }

    .hero-actions,
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .button {
        width: 100%;
    }

    .info-card,
    .contact-card,
    .contact-form-wrap {
        border-radius: 22px;
    }

    .section {
        padding: 72px 0;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        min-height: 54px;
        padding: 0 18px;
    }
}
