<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.blur,
.blur-hover:hover {
    -webkit-filter: none;
    filter: none;
}

.active-nav {
    text-decoration-line: underline !important;
    text-decoration-thickness: 2px !important;
    text-decoration-color: var(--veta-color-brand-dark) !important;
    text-underline-offset: 5px !important;
}

html {
    scroll-behavior: smooth !important;
}

body p {
    font-size: var(--veta-fs-base);
}

/* Variables Gobales */
:root {
    /* Colores */
    --veta-color-brand: #A2D784;
    --veta-color-brand-light: #F1EA9B;
    --veta-color-brand-dark: #235C4E;

    /* TamaÃ±os */
    --height-barra-navegacion: 50px;
    --height-container-full: 100vh;
    --height-container-header: calc(var(--height-container-full) - var(--height-barra-navegacion) - 1px);

    --height-container-half: 50vh;
    /* Fuentes y Textos */

    /* titulos */
    --veta-title-lh: 80px;
    --veta-title-ls: 0px;
    --veta-title-fs: 80px;
    --veta-title-fw: 450;

    /* subtitulos */
    --veta-subtitle-lh: 50px;
    --veta-subtitle-ls: 0px;
    --veta-subtitle-fs: 50px;
    --veta-subtitle-fw: 400;

    /* textos */
    --veta-txt-lh: 28px;
    --veta-txt-ls: 0px;
    --veta-txt-fs: 21px;
    --veta-txt-fw: 500;


    /* Escala de tamaÃ±o de fuente base */
    --veta-fs-xs: calc(0.8rem + 0.1vw);
    /* Para texto muy pequeÃ±o, notas */
    --veta-fs-sm: calc(0.9rem + 0.2vw);
    /* Para texto de pÃ¡rrafo secundario */
    --veta-fs-base: calc(1rem + 0.3vw);
    /* TamaÃ±o de pÃ¡rrafo estÃ¡ndar */
    --veta-fs-md: calc(1.1rem + 0.4vw);
    /* PÃ¡rrafos un poco mÃ¡s grandes, listas */

    /* Escala para encabezados */
    --veta-fs-h6: calc(1.2rem + 0.5vw);
    --veta-fs-h5: calc(1.4rem + 0.6vw);
    --veta-fs-h4: calc(1.6rem + 0.8vw);
    --veta-fs-h3: calc(1.8rem + 1vw);
    --veta-fs-h2: calc(2.2rem + 1.2vw);
    --veta-fs-h1: calc(2.8rem + 1.5vw);
    /* TÃ­tulo principal */

    /* Para tÃ­tulos muy grandes (hero sections) */
    --veta-fs-hero: calc(3.5rem + 2vw);

    /* urls */
    --veta-url-quen-somos: url("../resources/images/archivo/transporte-cesures.jpg");
}

/* Moviles */
@media (max-width: 768px) {
    :root {
        --veta-title-lh: 32px;
        --veta-title-ls: 0px;
        --veta-title-fs: 34px;
        --veta-title-fw: 500;

        --veta-subtitle-lh: 28px;
        --veta-subtitle-ls: 0px;
        --veta-subtitle-fs: 21px;
        --veta-subtitle-fw: 500;

        /* textos */
        --veta-txt-lh: 28px;
        --veta-txt-ls: 0px;
        --veta-txt-fs: 21px;
        --veta-txt-fw: 500;

        --height-barra-navegacion: 80px;

        .row-mb-reverse {
            flex-direction: row-reverse !important;
        }

        .only-desktop {
            display: none !important;
        }

    }
}

@media (min-width: 768px) {
    .only-mobile {
        display: none !important;
    }

    .row-reverse {
        flex-direction: row-reverse !important;
    }
}


/* Reglas generales */

.veta-bg-brand {
    background-color: var(--veta-color-brand);
}

.veta-bg-brand-light {
    background-color: var(--veta-color-brand-light);
}

.veta-bg-brand-dark {
    background-color: var(--veta-color-brand-dark);
}

.veta-txt-brand {
    color: var(--veta-color-brand);
}

.veta-txt-brand-light {
    color: var(--veta-color-brand-light);
}

.veta-txt-brand-dark {
    color: var(--veta-color-brand-dark);
}

.veta-btn-brand {
    border-color: var(--veta-color-brand);
    color: var(--veta-color-brand);
    display: block;
    margin-top: 2em;

    &amp;:hover {
        background-color: var(--veta-color-brand);
        color: var(--veta-color-brand-dark);
        border-color: var(--veta-color-brand-dark);
    }
}

.veta-btn-brand-light {
    border-color: var(--veta-color-brand-light);
    color: var(--veta-color-brand-light);
    display: block;
    margin-top: 2em;

    &amp;:hover {
        background-color: var(--veta-color-brand-light);
        color: var(--veta-color-brand);
        border-color: var(--veta-color-brand);
    }
}

.veta-btn-brand-light-alter {
    border-color: var(--veta-color-brand-light);
    color: var(--veta-color-brand-light);
    display: block;
    margin-top: 2em;

    &amp;:hover {
        background-color: var(--veta-color-brand-light);
        color: var(--veta-color-brand-dark);
        border-color: var(--veta-color-brand-dark);
    }
}

.veta-btn-brand-dark {
    border-color: var(--veta-color-brand-dark);
    color: var(--veta-color-brand-dark);
    display: block;
    margin-top: 2em;

    &amp;:hover {
        background-color: var(--veta-color-brand-dark);
        color: var(--veta-color-brand);
        border-color: var(--veta-color-brand);
    }
}

.veta-btn-brand-dark-alter {
    border-color: var(--veta-color-brand-dark);
    color: var(--veta-color-brand-dark);
    display: block;
    margin-top: 2em;

    &amp;:hover {
        background-color: var(--veta-color-brand-dark);
        color: var(--veta-color-brand-light);
        border-color: var(--veta-color-brand-light);
    }
}

.cont {
    scroll-margin-top: var(--height-barra-navegacion);
    box-sizing: border-box;
    padding: 2em;
}

.cont-full {
    width: 100%;
    height: var(--height-container-header);
}

.cont-half {
    width: 100%;
    height: var(--height-container-half);
}

.cont-header {
    width: 100%;
    height: var(--height-container-header);
}


.titulo {
    text-align: left;
    line-height: var(--veta-title-lh);
    font-size: var(--veta-title-fs);
    letter-spacing: var(--veta-title-ls);
    font-weight: var(--veta-title-fw);
}

.sub-titulo {
    text-align: left;
    line-height: var(--veta-subtitle-lh);
    font-size: var(--veta-subtitle-fs);
    letter-spacing: var(--veta-subtitle-ls);
    font-weight: var(--veta-subtitle-fw);
}

.txt-default {
    font-weight: var(--veta-txt-fw);
    font-size: var(--veta-txt-fs);
    line-height: var(--veta-txt-lh);
    letter-spacing: var(--veta-txt-ls);
    white-space: pre-wrap;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}


/* Mobile First */
.navbar-nav {
    height: 100vh !important;

    @media (min-width: 992px) {
        height: var(--height-barra-navegacion) !important;
        align-items: center;
    }
}


.nav-link {
    border-bottom: 1px solid;
    border-color: var(--veta-color-brand-dark);
    padding: 1em;
    font-size: 2em;
    font-weight: 600;

    @media (min-width: 992px) {
        border: 0;
    }
}

#navbarNavDropdown {

    @media (min-width: 768px) {
        justify-content: center;
        align-items: center;
    }
}

#navbarDropdownMenuLink&gt;i {
    anchor-name: --dropdown;
}

.dropdown-menu {
    background-color: var(--veta-color-brand-light);
    width: max-content;
    position: absolute;
    position-anchor: --dropdown;
    position-area: bottom;
    text-align: right;

    z-index: 2;
}


.body-block {
    height: 100%;
    overflow-y: hidden;
}

.cont-inicio {
    margin: auto;
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);

    &amp; video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        /* Centra el video */
        z-index: -1;
    }

    &amp; div {

        position: relative;
        z-index: 1;
        color: var(--veta-color-brand-light);
        padding: 20px;
        top: 30%;
        left: 1em;

        width: 90%;

        button {
            display: block;
            margin-top: 2em;
        }
    }
}

.cont-planificacion {

    .carousel-item&gt;div {
        display: flex;
        flex-direction: column;
        justify-content: space-around;

        @media (min-width : 768px) {
            flex-direction: row;
            align-items: center;
        }
    }

    &amp; video {
        margin-top: 1em;
        width: 100%;

        @media (min-width : 768px) {
            width: 70%;
        }
    }
}

.grid-novedades {
    display: grid;
    gap: 1.5em;
    grid-template-columns: 1fr;
    grid-template-rows: auto;

    section,
    article {
        border-radius: 6px;
    }

    &amp; .grid-item {
        height: auto;
        padding-bottom: 2em;
        border-bottom: 1px solid var(--veta-color-brand-dark);
        border-radius: 0%;
    }

    &amp; article img {
        width: 100%;
        height: 300px;
        min-width: auto;
        border-radius: 6px;
        object-fit: cover;
        padding-bottom: 1.5em;
    }


    &amp; .grid-left-panel {
        grid-row: auto;
        display: flex;
        flex-direction: column;
        align-items: center;

        img {
            padding-top: 2em;
            max-width: 100%;
        }
    }

    @media (min-width: 768px) {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 3em;

        &amp; .grid-left-panel {
            grid-row: 1 / span 3;
            flex-direction: column;
            justify-content: space-between;

            img {
                padding-top: 2em;
            }
        }

        &amp; .grid-item {
            height: fit-content;
        }

        &amp; article img {
            height: 350px;
            border-radius: 6px;
            object-fit: cover;
        }

        &amp; article h3 {
            font-size: var(--veta-fs-h5);
            text-decoration: underline;
            color: var(--veta-color-brand-dark);
            padding-bottom: 0.5em;
        }

        &amp; article p {
            color: var(--veta-color-brand-dark);
        }

    }
}


.grid-contacto {
    display: grid;
    gap: 1.5em;
    grid-template-columns: 1fr;
    grid-template-rows: auto;

    &amp; .grid-item {
        height: auto;
        padding-bottom: 2em;
        border-bottom: 1px solid var(--veta-color-brand-dark);
        border-radius: 16px;
    }

    &amp; .grid-left-panel {
        grid-row: auto;
        display: flex;
        flex-direction: column;
        align-items: center;

        img {
            padding-top: 2em;
            max-width: 100%;
        }
    }

    &amp; section {
        border-radius: 20px;
    }



    .grid-item,
    .grid-item&gt;form {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        gap: 1em;


        button {
            border-width: 3px;
            border-radius: 120px;
            align-self: flex-end;
            font-size: var(--veta-text-fs);
            font-weight: var(--veta-text-fw);
            padding: 1em;
            margin: 0;
        }
    }

    @media (min-width: 768px) {
        grid-template-columns: 1fr 2fr;

        &amp; .grid-left-panel {
            grid-row: 1 / span 3;
            flex-direction: column;
            justify-content: space-between;

            img {
                padding-top: 2em;
            }
        }
    }
}

#text-gdpr {
    text-align: justify;
}

.cont-gdpr {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 1em;

    input[type="checkbox"] {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
        white-space: nowrap;
        word-wrap: normal;
    }

    label {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
        font-size: var(--veta-fs-sm);
        color: var(--veta-color-brand-dark);
        position: relative;
        padding-left: 28px;
        user-select: none;


        &amp;::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            border: 2px solid var(--veta-color-brand-dark);
            border-radius: 4px;
            background-color: var(--veta-color-brand);
            transition: all 0.2s ease-in-out;
        }

        &amp;::after {
            content: '';
            position: absolute;
            left: 6px;
            top: 46%;
            transform: translateY(-50%) rotate(45deg);
            width: 8px;
            height: 14px;
            border: solid var(--veta-color-brand-dark);
            border-width: 0 3px 3px 0;
            opacity: 0;
            transition: opacity 0.2s ease-in-out;
        }
    }

    input[type="checkbox"]:checked+label::after {
        opacity: 1;
    }
}

.cont-contacto {
    display: flex;
    flex-wrap: nowrap;
    align-content: space-around;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;

    img {
        width: 90%;
        max-width: 960px;
        max-height: 500px;
        align-self: center;

        @media (min-width: 768px) {
            width: 35%;
        }
    }

    button,
    a.btn {
        display: block;
        align-self: center;
        margin-top: 2em;

    }

    a.linked {
        color: var(--veta-color-brand-light);

        &amp;:hover {
            color: var(--veta-color-brand-dark);
        }
    }

}

footer {
    width: 100%;
    height: 165px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-left: 1em;
    padding-right: 1em;

    img {
        width: auto;
        height: 70%;
        padding: 0%;
    }

    div {
        width: 100%;
        display: flex;
        justify-content: space-between;

    }

    @media (min-width: 768px) {
        flex-direction: row;
        padding: 2em;

        img {
            width: 190px;
            height: auto;
            padding: 2em;
        }

        div {
            width: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
    }

}

.cont-info {
    padding: 2.5em;

    h1 {
        padding-bottom: 30px;
    }

    p {
        font-size: var(--veta-fs-md);
    }
}

.cont-historia {
    background-image: var(--veta-url-quen-somos);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

    .cont-info {
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 800px;
        max-height: 90%;
        width: 85%;
        border-radius: 8px;

        @media (min-width: 768px) {
            transform: none;
            left: 50px;
        }
    }
}

.cont-imagenes {
    padding: 0;
    display: flex;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;

        @media (min-width: 768px) {
            width: 50%;
        }

    }
}

.cont-desarrollo {
    background-image: var(--veta-url-quen-somos);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

    .cont-info {
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 800px;
        max-height: 90%;
        width: 85%;
        border-radius: 8px;

        @media (min-width: 768px) {
            transform: none;
            left: auto;
            right: 50px;
        }
    }
}

.cont-traballa {

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

    img {
        width: auto;
        max-width: 90%;

        @media (min-width: 768px) {
            max-width: 600px;
            width: auto;
            height: fit-content;
        }

    }
}

.cont-traballa-info p {
    padding: 1em;
    font-size: xx-large;
    font-weight: bold;
    text-overflow: clip;
}

.cont-traballa-info {
    padding-top: 1em;
    overflow: hidden;
}

.cont-caracteristicas&gt;div&gt;* {
    width: 50%;
    height: 500px;
}

.cont-rede-monte {

    display: flex;
    flex-direction: column-reverse;
    height: auto;

    div {
        width: 100%;
        height: 50%;
        padding-top: 2em;

        display: flex;
        flex-direction: column;
        align-content: start;
        justify-content: space-between;
        align-items: flex-start;
        overflow: hidden;

        img {
            width: 90%;
            max-height: auto;
            align-self: center;
        }

        h1,
        p {
            padding-bottom: 0.5em;
        }

        u p {
            font-size: var(--veta-fs-h5);
        }
    }

    @media (min-width: 768px) {
        flex-direction: row;
        height: var(--height-container-header);

        div {
            width: 50%;
            height: 100%;
            padding: 2em;

            img {
                max-height: 100%;
                width: auto;
            }
        }
    }
}

.cont-industria {
    display: flex;
    flex-direction: column;
    gap: 2em;

    .veta-card {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1em;
        height: 55vh;

        img {
            max-width: 50%;
            height: 100%;
            border-radius: 6px;
            object-fit: cover;
        }

        div&gt;h2 {
            padding-bottom: 0.5em;
            padding-top: 0.5em;
            font-weight: bold;
            font-size: var(--veta-fs-h6);
        }

        div&gt;p {
            font-size: var(--veta-fs-sm);
        }
    }

    @media (min-width: 768px) {
        flex-direction: row;
        max-height: 80vh;

        .veta-card {
            flex-direction: column;
            height: auto;
            flex-grow: 1;
            flex-basis: 0;

            img {
                max-width: 100%;
                max-height: 50%;
            }
        }

    }
}

.veta-card-lg {
    display: flex;
    flex-direction: column;
    height: 150vh;


    div {
        width: 100%;
        height: 100%;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            display: block;

            object-fit: cover;
            object-position: center;
        }

        img.fit {
            padding: 5em;
            object-fit: contain;
        }

        &amp;.text-container {
            display: flex;
            flex-direction: column;
            gap: 1em;
            align-items: flex-start;
            justify-content: flex-end;
            flex-wrap: nowrap;

            h1 {
                padding-bottom: 0.3em;
            }

        }
    }

    @media (min-width: 768px) {
        flex-direction: row;
        height: 90vh;

        div {
            width: 50%;
            height: 100%;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                display: block;

                object-fit: cover;
                object-position: center;
            }

            img.fit {
                padding: 5em;
                object-fit: contain;
            }

            &amp;.text-container {
                display: flex;
                flex-direction: column;
                gap: 1em;
                align-items: flex-start;
                justify-content: flex-end;
                flex-wrap: nowrap;
            }
        }

    }

}

.veta-monte {
    display: flex;
    flex-direction: column;
    height: 190vh;

    div {
        width: 100%;
        height: 100%;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            display: block;

            object-fit: cover;
            object-position: center;
        }

        img.fit {
            padding: 5em;
            object-fit: contain;
        }

        &amp;.text-container {
            display: flex;
            flex-direction: column;
            gap: 1em;
            align-items: flex-start;
            justify-content: flex-end;
            flex-wrap: nowrap;
        }
    }

    @media (min-width: 768px) {
        flex-direction: row;
        height: 90vh;

        div {
            width: 50%;
            height: 100%;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                display: block;

                object-fit: cover;
                object-position: center;
            }

            img.fit {
                padding: 5em;
                object-fit: contain;
            }

            &amp;.text-container {
                display: flex;
                flex-direction: column;
                gap: 1em;
                align-items: flex-start;
                justify-content: flex-end;
                flex-wrap: nowrap;
            }
        }

    }
}

.cabecera-servicios {

    h1 {
        padding-bottom: 2em;
    }

    li {
        padding-bottom: 1em;
        font-size: larger;
    }

    a {
        color: inherit;
        text-decoration: underline !important;
    }

    i {
        padding-right: 1em;
    }
}


.cont-panda-da-da {
    margin: auto;
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);

    img {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    div {
        height: 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.btn-panda-salir {
    font-size: var(--veta-fs-h6);
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: bolder;
    width: 100px;
}


.veta-card-half {
    height: auto;
    display: flex;
    flex-wrap: wrap;

    div {
        width: 100%;
        height: 60vh;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            display: block;

            object-fit: cover;
            object-position: right;
        }

        &amp;.text-container {
            display: flex;
            flex-direction: column;
            gap: 2em;
            align-items: flex-start;
            justify-content: flex-end;
            flex-wrap: nowrap;
        }

        p {
            font-size: var(--veta-fs-base);
        }



    }

    @media (min-width: 768px) {
        height: 70vh;

        div {
            width: 50%;
            height: 100%;
        }


    }

}

input,
textarea {
    background-color: var(--veta-color-brand);
    padding: 1em;
    border-color: var(--veta-color-brand-dark);
    border-radius: 120px;
    border-width: 3px;

    color: var(--veta-color-brand-dark);
    font-size: var(--veta-txt-fs);
    font-weight: var(--veta-txt-fw);
    padding-left: 1em;
}

textarea {
    height: 11em;
    border-radius: 20px;
}

.cont-soon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2em;
    overflow: hidden;

    img {
        height: 70%;
        display: block;

        object-fit: cover;
        object-position: center;
    }
}

.cont-soon-texto {

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;

    h2 {
        display: block;
        width: 50%;
    }
}

.veta-detail {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    div {
        flex-basis: 1;
    }

    .detail-panel {
        flex-grow: 2;
        border-radius: 16px;

        img {
            max-width: 100%;

        }
    }

    .detail-back {
        flex-grow: 1;
        padding-top: 0;

        a {
            margin-top: 0;
        }
    }

    .detail-info {
        flex-grow: 3;
        display: flex;
        flex-direction: column;

        div {
            width: 100%;
            height: 100%;
            padding: 1em 0;



            img {
                width: 100%;
                border-radius: 6px;
                aspect-ratio: 5 / 4;
                object-fit: cover;

            }

            p {
                padding-top: 0.5em;
                padding-bottom: 0.5em;
            }

        }

        @media (min-width: 768px) {
            padding-right: 40%;

            div {
                padding: 0;
                height: auto;
            }
        }

    }


}</pre></body></html>