/* =========================================================
   ENVÍOS YA
   inicio.css
   Diseño corporativo - Importación / Exportación / Logística
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --blue: #1557b0;
    --blue-dark: #103f80;
    --blue-light: #eaf2fc;

    --red: #d92f3d;
    --red-light: #fdf0f1;

    --dark: #17202b;
    --text: #4b5563;
    --muted: #7b8490;

    --white: #ffffff;
    --background: #f7f9fc;
    --border: #e5e9ef;

    --shadow-sm: 0 4px 18px rgba(20, 35, 55, 0.05);
    --shadow-md: 0 12px 35px rgba(20, 35, 55, 0.08);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --container: 1180px;

    --transition: 0.25s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

button {
    font-family: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border);
}

.header-container {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

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

    gap: 10px;

    flex-shrink: 0;
}

.brand-symbol {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 9px;

    font-size: 17px;
    overflow: hidden;
}

.brand-symbol img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}

.brand-name {
    display: flex;
    align-items: baseline;

    gap: 2px;

    white-space: nowrap;

    color: var(--dark);

    font-family: "Poppins", sans-serif;

    font-size: 20px;
    font-weight: 700;

    letter-spacing: -0.5px;
}

.brand-name strong {
    color: var(--red);
}


/* =========================================================
   NAVEGACIÓN DESKTOP
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    margin-left: auto;
    margin-right: 30px;
}

.nav-item {
    position: relative;

    padding: 26px 0;

    color: #66707c;

    font-size: 14px;
    font-weight: 400;

    transition: color 0.2s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--blue);
}

.nav-item.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 17px;

    width: 100%;
    height: 2px;

    background: var(--blue);

    border-radius: 10px;
}


/* =========================================================
   CONTACTO HEADER
========================================================= */

.header-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 11px 17px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--white);

    color: var(--dark);

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.header-contact i {
    color: var(--blue);
}

.header-contact:hover {
    border-color: var(--blue);
    color: var(--blue);

    transform: translateY(-1px);
}


/* =========================================================
   MENÚ MÓVIL
========================================================= */

.mobile-menu {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: var(--white);
    color: var(--dark);

    cursor: pointer;

    font-size: 18px;

    transition: var(--transition);
}

.mobile-menu:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.mobile-menu:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    padding: 35px 0 100px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}

.hero-container {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.9fr);

    align-items: center;

    gap: 80px;
}


/* =========================================================
   HERO TEXTO
========================================================= */

.hero-copy {
    width: 100%;
    max-width: 650px;
    min-width: 0;
}

.hero-label {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 24px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.4px;
}

.label-line {
    width: 28px;
    height: 2px;

    flex-shrink: 0;

    background: var(--red);

    border-radius: 4px;
}

.hero h1 {
    max-width: 650px;

    margin-bottom: 25px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(42px, 5vw, 67px);

    line-height: 1.08;

    letter-spacing: -2px;

    color: var(--dark);
}

.hero h1 span {
    color: var(--blue);
}

.hero-copy > p {
    max-width: 570px;

    margin-bottom: 34px;

    color: var(--text);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    min-height: 48px;

    padding: 0 20px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 600;

    transition: var(--transition);
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--border);

    background: var(--white);

    color: var(--dark);
}

.btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
}


/* =========================================================
   HERO INFO
========================================================= */

.hero-info {
    display: flex;

    gap: 35px;

    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.hero-info-item {
    display: flex;
    align-items: center;

    gap: 12px;
}

.hero-info-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 8px;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 15px;
}

.hero-info-icon.blue {
    background: var(--red-light);
    color: var(--red);
}

.hero-info-item strong,
.hero-info-item span {
    display: block;
}

.hero-info-item strong {
    margin-bottom: 2px;

    color: var(--dark);

    font-size: 12px;
}

.hero-info-item span {
    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    width: 100%;

    min-width: 0;
    min-height: 490px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.visual-background {
    position: absolute;

    width: 420px;
    height: 420px;

    max-width: 70vw;
    max-height: 70vw;

    border-radius: 50%;

    background: #f0f5fb;

    z-index: 0;
}


/* =========================================================
   RUTA
========================================================= */

.route-path {
    position: absolute;

    width: 340px;
    height: 280px;

    max-width: 100%;

    z-index: 1;
}

.route-line {
    position: absolute;

    height: 1px;

    background: #c9d5e3;

    transform-origin: left center;
}

.line-one {
    width: 145px;

    top: 90px;
    left: 45px;

    transform: rotate(18deg);
}

.line-two {
    width: 130px;

    top: 150px;
    left: 175px;

    transform: rotate(-30deg);
}

.route-dot {
    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--blue);

    z-index: 2;
}

.dot-one {
    top: 80px;
    left: 36px;
}

.dot-two {
    top: 125px;
    left: 167px;

    background: var(--red);
}

.dot-three {
    top: 82px;
    right: 28px;
}


/* =========================================================
   PAQUETE
========================================================= */

.package {
    position: relative;

    width: 490px;
    height: 465px;

    flex-shrink: 0;

    z-index: 3;
}

.package-top {
    position: absolute;

    top: 0;
    left: 20px;

    width: 150px;
    height: 38px;

    background: #dce6f2;

    clip-path: polygon(
        10% 100%,
        0 20%,
        50% 0,
        100% 20%,
        90% 100%
    );
}

.package-body {
    position: absolute;

    left: 10px;
    top: 28px;

    width: 170px;
    height: 125px;

    border-radius: 7px;

    background: #eef3f8;

    border: 1px solid #d7e0ea;

    box-shadow:
        0 22px 40px rgba(30, 50, 75, 0.13);

    overflow: hidden;
}

.package-tape {
    position: absolute;

    top: 0;
    bottom: 0;
    left: 73px;

    width: 25px;

    background: #d4e0ed;
}

.package-logo {
    position: absolute;

    top: 37px;
    left: 26px;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    color: var(--dark);
}

.package-logo strong {
    color: var(--red);
}

.package-icon {
    position: absolute;

    right: 24px;
    bottom: 22px;

    color: var(--blue);

    font-size: 22px;
}


/* =========================================================
   LOCATION CARDS
========================================================= */

.location-card {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 11px 14px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 9px;

    box-shadow: var(--shadow-sm);

    z-index: 4;
}

.location-card span,
.location-card strong {
    display: block;
}

.location-card span {
    color: var(--muted);

    font-size: 9px;
}

.location-card strong {
    color: var(--dark);

    font-size: 11px;
}

.location-icon {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 7px;

    background: var(--red-light);

    color: var(--red);

    font-size: 12px;
}

.location-icon.blue {
    background: var(--blue-light);
    color: var(--blue);
}

.origin-card {
    top: 85px;
    left: 5px;
}

.destination-card {
    top: 70px;
    right: 0;
}


/* =========================================================
   STATUS
========================================================= */

.delivery-status {
    position: absolute;

    right: 20px;
    bottom: 65px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 9px;

    box-shadow: var(--shadow-sm);

    z-index: 5;
}

.status-check {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #edf7f0;

    color: #38834c;

    font-size: 11px;
}

.delivery-status strong,
.delivery-status span {
    display: block;
}

.delivery-status strong {
    color: var(--dark);

    font-size: 10px;
}

.delivery-status span {
    color: var(--muted);

    font-size: 9px;
}


/* =========================================================
   INTRO
========================================================= */

.intro-section {
    padding: 105px 0;

    background: var(--white);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.intro-container {
    display: grid;

    grid-template-columns: 70px 1fr 1fr;

    gap: 45px;

    align-items: start;
}

.intro-number {
    color: var(--blue);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
}

.intro-small {
    margin-bottom: 13px;

    color: var(--muted);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.3px;
}

.intro-content h2 {
    max-width: 500px;

    font-family: "Poppins", sans-serif;

    font-size: 38px;

    line-height: 1.2;

    color: var(--dark);
}

.intro-content h2 span {
    color: var(--blue);
}

.intro-description {
    padding-top: 22px;
}

.intro-description p {
    margin-bottom: 16px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   COMPANY
========================================================= */

.company-section {
    padding: 120px 0;

    background: var(--background);
}

.company-container {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}


/* =========================================================
   COMPANY VISUAL
========================================================= */

.company-visual {
    position: relative;

    min-height: 480px;
}

.company-card {
    position: absolute;

    border-radius: var(--radius-lg);
}

.main-card {
    left: 0;
    top: 25px;

    width: 390px;

    padding: 42px;

    background: var(--dark);

    color: var(--white);

    box-shadow: var(--shadow-md);
}

.card-number {
    color: #7d8da0;

    font-size: 11px;
    font-weight: 700;
}

.company-icon {
    width: 55px;
    height: 55px;

    margin: 75px 0 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.08);

    color: #b9d5f7;

    font-size: 22px;
}

.main-card h3 {
    margin-bottom: 12px;

    font-family: "Poppins", sans-serif;

    font-size: 25px;
}

.main-card p {
    color: #b9c2cd;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   SECONDARY CARD
========================================================= */

.secondary-card {
    right: 0;
    bottom: 20px;

    width: 210px;

    padding: 24px;

    background: var(--white);

    border: 1px solid var(--border);

    box-shadow: var(--shadow-sm);
}

.secondary-card i {
    display: block;

    margin-bottom: 15px;

    color: var(--red);

    font-size: 21px;
}

.secondary-card span,
.secondary-card strong {
    display: block;
}

.secondary-card span {
    color: var(--muted);

    font-size: 11px;
}

.secondary-card strong {
    color: var(--dark);

    font-size: 14px;
}


/* =========================================================
   DECORACIÓN
========================================================= */

.company-decoration {
    position: absolute;

    top: 0;
    right: 45px;

    width: 100px;
    height: 100px;

    border-top: 2px solid #d9e5f2;
    border-right: 2px solid #d9e5f2;

    border-radius: 0 30px 0 0;
}


/* =========================================================
   COMPANY CONTENT
========================================================= */

.company-content .section-label {
    margin-bottom: 22px;
}

.section-label {
    display: flex;
    align-items: center;

    gap: 12px;
}

.section-label span {
    color: var(--blue);

    font-size: 11px;
    font-weight: 700;
}

.section-label strong {
    color: var(--muted);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}

.company-content h2 {
    margin-bottom: 24px;

    font-family: "Poppins", sans-serif;

    font-size: 42px;

    line-height: 1.15;

    color: var(--dark);
}

.company-content h2 span {
    color: var(--blue);
}

.company-content > p {
    max-width: 620px;

    margin-bottom: 15px;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   VALUES
========================================================= */

.company-values {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    margin-top: 35px;
    padding-top: 30px;

    border-top: 1px solid var(--border);
}

.value {
    display: flex;

    gap: 13px;
}

.value-icon {
    width: 37px;
    height: 37px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: var(--red-light);

    color: var(--red);

    font-size: 13px;
}

.value-icon.blue {
    background: var(--blue-light);
    color: var(--blue);
}

.value strong {
    display: block;

    margin-bottom: 5px;

    color: var(--dark);

    font-size: 12px;
}

.value p {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding: 120px 0;

    background: var(--white);
}

.services-heading {
    display: grid;

    grid-template-columns: 1fr 400px;

    gap: 80px;

    align-items: end;

    margin-bottom: 55px;
}

.services-heading h2 {
    margin-top: 20px;

    font-family: "Poppins", sans-serif;

    font-size: 42px;

    line-height: 1.15;

    color: var(--dark);
}

.services-heading h2 span {
    color: var(--blue);
}

.services-heading > p {
    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   SERVICES LIST
========================================================= */

.services-list {
    border-top: 1px solid var(--border);
}

.service {
    display: grid;

    grid-template-columns:
        70px
        minmax(0, 1fr)
        minmax(0, 1.2fr)
        45px;

    gap: 25px;

    align-items: center;

    padding: 25px 0;

    border-bottom: 1px solid var(--border);

    transition: var(--transition);
}

.service:hover {
    padding-left: 12px;
    padding-right: 12px;

    background: #fafbfd;
}

.service-number {
    color: #a6afba;

    font-size: 11px;
    font-weight: 700;
}

.service-main {
    display: flex;
    align-items: center;

    gap: 17px;

    min-width: 0;
}

.service-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 9px;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 15px;
}

.service-icon.blue {
    background: var(--red-light);
    color: var(--red);
}

.service h3 {
    color: var(--dark);

    font-size: 15px;
    font-weight: 650;
}

.service-description p {
    max-width: 470px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}

.service-arrow {
    color: #a7b0bb;

    font-size: 13px;

    transition: var(--transition);
}

.service:hover .service-arrow {
    color: var(--blue);

    transform: translate(3px, -3px);
}


/* =========================================================
   DIFFERENCE
========================================================= */

.difference-section {
    padding: 115px 0;

    background: var(--dark);

    color: var(--white);
}

.difference-container {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}

.section-label.light span {
    color: #8eb8e8;
}

.section-label.light strong {
    color: #8995a4;
}

.difference-content h2 {
    max-width: 600px;

    margin: 25px 0 22px;

    font-family: "Poppins", sans-serif;

    font-size: 40px;

    line-height: 1.18;
}

.difference-content h2 span {
    color: #8eb8e8;
}

.difference-content > p {
    max-width: 550px;

    color: #aeb8c4;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   DIFFERENCE GRID
========================================================= */

.difference-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    border-left: 1px solid #303b48;
    border-top: 1px solid #303b48;
}

.difference-item {
    min-height: 210px;

    padding: 28px;

    border-right: 1px solid #303b48;
    border-bottom: 1px solid #303b48;
}

.difference-item > span {
    display: block;

    margin-bottom: 30px;

    color: #677484;

    font-size: 10px;
    font-weight: 700;
}

.difference-item > i {
    display: block;

    margin-bottom: 16px;

    color: #9dbde0;

    font-size: 20px;
}

.difference-item h3 {
    margin-bottom: 7px;

    font-size: 14px;
}

.difference-item p {
    color: #8d99a7;

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    padding: 120px 0;

    background: var(--background);
}

.process-heading {
    margin-bottom: 55px;
}

.process-heading h2 {
    max-width: 500px;

    margin-top: 20px;

    font-family: "Poppins", sans-serif;

    font-size: 42px;

    line-height: 1.15;

    color: var(--dark);
}

.process-heading h2 span {
    color: var(--blue);
}


/* =========================================================
   PROCESS TRACK
========================================================= */

.process-track {
    display: grid;

    grid-template-columns:
        1fr
        30px
        1fr
        30px
        1fr
        30px
        1fr;

    align-items: stretch;
}

.process-card {
    padding: 28px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);
}

.process-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 35px;
}

.process-card-top span {
    color: var(--blue);

    font-size: 10px;
    font-weight: 700;
}

.process-card-top i {
    color: #a7b5c4;

    font-size: 17px;
}

.process-card h3 {
    margin-bottom: 9px;

    color: var(--dark);

    font-size: 15px;
}

.process-card p {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.7;
}

.process-connector {
    align-self: center;

    height: 1px;

    background: #d4dce5;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 100px 0;

    background: var(--white);
}

.cta {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 300px;

    min-height: 350px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background: var(--blue);

    color: var(--white);
}

.cta-content {
    position: relative;

    z-index: 2;

    padding: 58px;
}

.cta-content > span {
    color: #bdd6f2;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.3px;
}

.cta-content h2 {
    max-width: 570px;

    margin: 17px 0;

    font-family: "Poppins", sans-serif;

    font-size: 42px;

    line-height: 1.15;
}

.cta-content p {
    max-width: 520px;

    margin-bottom: 27px;

    color: #d4e2f2;

    font-size: 13px;

    line-height: 1.7;
}

.cta-buttons {
    display: flex;

    gap: 10px;
}

.cta-button {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    min-height: 43px;

    padding: 0 17px;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 600;

    transition: var(--transition);
}

.cta-button.white {
    background: var(--white);

    color: var(--blue);
}

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

.cta-button.outline {
    border: 1px solid rgba(255, 255, 255, 0.35);

    color: var(--white);
}

.cta-button.outline:hover {
    background: rgba(255, 255, 255, 0.08);
}


/* =========================================================
   CTA VISUAL
========================================================= */

.cta-visual {
    position: relative;

    overflow: hidden;
}

.cta-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.13);
}

.circle-one {
    width: 390px;
    height: 390px;

    top: -100px;
    right: -130px;
}

.circle-two {
    width: 250px;
    height: 250px;

    top: -30px;
    right: -60px;
}

.cta-box {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 100px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.15);

    color: var(--white);

    font-size: 35px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #111820;

    color: #ffffff;
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1.2fr
        1.2fr;

    gap: 70px;

    padding: 70px 0 60px;
}

.footer-brand p {
    max-width: 230px;

    margin: 18px 0 22px;

    color: #8995a2;

    font-size: 12px;

    line-height: 1.7;
}

.footer-brand .brand-name {
    color: var(--white);
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
    display: flex;

    gap: 8px;
}

.footer-social a {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #2a3540;

    border-radius: 7px;

    color: #aab4bf;

    font-size: 11px;

    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--blue);

    color: var(--blue);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 9px;

    color: var(--white);

    font-size: 12px;
}

.footer-column a,
.footer-column span {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #8995a2;

    font-size: 11px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column i {
    width: 13px;

    color: #718090;

    font-size: 10px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    border-top: 1px solid #27313b;
}

.footer-bottom .container {
    min-height: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom span {
    color: #66727f;

    font-size: 10px;
}


/* =========================================================
   TABLET / LAPTOP PEQUEÑO
========================================================= */

@media (max-width: 1050px) {

    /* HEADER */

    .main-nav {
        gap: 18px;
    }

    .nav-item {
        font-size: 13px;
    }


    /* HERO */

    .hero-container {
        gap: 40px;
    }


    /* COMPANY / DIFFERENCE */

    .company-container,
    .difference-container {
        gap: 50px;
    }


    /* FOOTER */

    .footer-main {
        gap: 35px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    /* =====================================================
       HEADER
    ===================================================== */

    .main-nav {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }


    /*
       IMPORTANTE:
       Cuando JS agrega .active,
       el menú vuelve a aparecer.
    */

    .main-nav.active {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: flex;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        margin: 0;
        padding: 10px 20px 20px;

        background: var(--white);

        border-bottom: 1px solid var(--border);

        box-shadow: 0 12px 30px rgba(20, 35, 55, 0.08);

        animation: mobileMenuOpen 0.25s ease forwards;
    }

    .main-nav.active .nav-item {
        width: 100%;

        padding: 15px 5px;

        border-bottom: 1px solid #f0f2f5;

        font-size: 14px;
    }

    .main-nav.active .nav-item:last-child {
        border-bottom: none;
    }

    .main-nav.active .nav-item.active::after {
        display: none;
    }

    .main-nav.active .nav-item:hover {
        color: var(--blue);
        padding-left: 10px;
    }


    @keyframes mobileMenuOpen {

        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        padding: 70px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

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

    .hero-visual {
        width: 100%;
        max-width: 620px;

        min-height: 430px;

        margin: 0 auto;
    }

    .visual-background {
        width: min(420px, 70vw);
        height: min(420px, 70vw);
    }


    /* =====================================================
       INTRO
    ===================================================== */

    .intro-container {
        grid-template-columns: 50px 1fr;
    }

    .intro-description {
        grid-column: 2;

        padding-top: 0;
    }


    /* =====================================================
       COMPANY
    ===================================================== */

    .company-container,
    .difference-container {
        grid-template-columns: 1fr;
    }

    .company-visual {
        width: 100%;
        max-width: 600px;

        margin: 0 auto;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .services-heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    /* =====================================================
       PROCESS
    ===================================================== */

    .process-track {
        grid-template-columns: 1fr 1fr;

        gap: 15px;
    }

    .process-connector {
        display: none;
    }


    /* =====================================================
       CTA
    ===================================================== */

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

    .cta-visual {
        display: none;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 600px) {

    /* =====================================================
       GENERAL
    ===================================================== */

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


    /* =====================================================
       HEADER
    ===================================================== */

    .header-container {
        min-height: 68px;

        height: auto;
    }

    .brand-symbol {
        width: 36px;
        height: 36px;
    }

    .brand-name {
        font-size: 18px;
    }

    .mobile-menu {
        width: 42px;
        height: 42px;
    }


    /*
       Menú móvil ligeramente más ajustado
    */

    .main-nav.active {
        padding-left: 14px;
        padding-right: 14px;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        padding: 55px 0 65px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
    }

    .hero-label {
        margin-bottom: 18px;

        font-size: 10px;
    }

    .hero h1 {
        max-width: 100%;

        margin-bottom: 20px;

        font-size: clamp(34px, 10vw, 42px);

        line-height: 1.08;

        letter-spacing: -1.5px;
    }

    .hero-copy > p {
        max-width: 100%;

        margin-bottom: 28px;

        font-size: 14px;

        line-height: 1.75;
    }


    /* =====================================================
       HERO BUTTONS
    ===================================================== */

    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        gap: 10px;

        margin-bottom: 35px;
    }

    .btn {
        width: 100%;

        min-height: 48px;
    }


    /* =====================================================
       HERO INFO
    ===================================================== */

    .hero-info {
        flex-direction: column;

        gap: 16px;

        padding-top: 20px;
    }

    .hero-info-item {
        gap: 10px;
    }


    /* =====================================================
       HERO VISUAL
    ===================================================== */

    .hero-visual {
        width: 100%;

        max-width: 100%;

        min-height: 350px;

        margin: 0 auto;

        overflow: hidden;
    }


    /* =====================================================
       CÍRCULO
    ===================================================== */

    .visual-background {
        width: 285px;
        height: 285px;

        max-width: none;
        max-height: none;
    }


    /* =====================================================
       RUTA
    ===================================================== */

    .route-path {
        width: 270px;
        height: 220px;

        transform: scale(0.9);
    }


    /* =====================================================
       PAQUETE
    ===================================================== */

    .package {
        width: 490px;
        height: 465px;

        transform:
            scale(0.68)
            rotate(-4deg);

        transform-origin: center center;
    }


    /* =====================================================
       LOCATION CARDS
    ===================================================== */

    .origin-card {
        left: 0;
        top: 38px;
    }

    .destination-card {
        right: 0;
        top: 35px;
    }


    /* =====================================================
       STATUS
    ===================================================== */

    .delivery-status {
        right: 0;
        bottom: 20px;
    }


    /* =====================================================
       SECCIONES
    ===================================================== */

    .intro-section,
    .company-section,
    .services-section,
    .difference-section,
    .process-section {
        padding: 75px 0;
    }


    /* =====================================================
       INTRO
    ===================================================== */

    .intro-container {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .intro-description {
        grid-column: auto;
    }

    .intro-content h2,
    .company-content h2,
    .services-heading h2,
    .process-heading h2 {
        font-size: 32px;
    }


    /* =====================================================
       COMPANY
    ===================================================== */

    .company-visual {
        min-height: 410px;
    }

    .main-card {
        width: calc(100% - 30px);

        padding: 30px;
    }

    .secondary-card {
        width: 180px;

        right: 0;
        bottom: 10px;
    }

    .company-icon {
        margin-top: 55px;
    }

    .company-values {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .service {
        grid-template-columns:
            35px
            minmax(0, 1fr)
            30px;

        gap: 10px;
    }

    .service-description {
        grid-column: 2 / 4;
    }


    /* =====================================================
       DIFFERENCE
    ===================================================== */

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


    /* =====================================================
       PROCESS
    ===================================================== */

    .process-track {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .cta {
        min-height: auto;
    }

    .cta-content {
        padding: 40px 28px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .cta-button {
        justify-content: center;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer-main {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 55px 0 45px;
    }

    .footer-bottom .container {
        min-height: 90px;

        flex-direction: column;

        justify-content: center;

        text-align: center;
    }
}


/* =========================================================
   MÓVILES PEQUEÑOS
========================================================= */

@media (max-width: 380px) {

    .container {
        width: calc(100% - 22px);
    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        padding-top: 45px;
    }

    .hero h1 {
        font-size: 33px;
    }

    .hero-visual {
        min-height: 320px;
    }

    .visual-background {
        width: 250px;
        height: 250px;
    }

    .package {
        transform:
            scale(0.60)
            rotate(-4deg);
    }


    /* =====================================================
       LOCATION CARDS
    ===================================================== */

    .location-card {
        padding: 9px 11px;
    }

    .location-card strong {
        font-size: 10px;
    }

    .location-card span {
        font-size: 8px;
    }


    /* =====================================================
       DELIVERY STATUS
    ===================================================== */

    .delivery-status {
        padding: 10px 12px;
    }
}