:root {
    --primary-color: #00082D; /* Azul */
    --secondary-color: #FF7300; /* Laranja */
    --tertiary-color: #FF358D; /* Rosa */
    --white-color: #FFFFFF;
    --black-color: #000000;
    --gray-color: #797979;
    --ice-color: #F8F7FE;
}
* {
    font-family: 'Livvic', sans-serif !important;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.button-cta {
    font-size: 18px;
    font-weight: 500;
    padding: 10px 30px;
    display: inline-block;
    border-radius: 8px;
    box-shadow: 4px 6px 18px 0px rgb(0, 0, 0, 0.10);
}

.navbar-breathing-space {
    margin-top: 80px;
}

.transition-300 {
    transition: all 300ms;
}

.transition-200 {
    transition: all 200ms;
}

.cursor-pointer {
    cursor: pointer;
}


/* Custom colors */

.text-primary {
    color: var(--primary-color) !important;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}
.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.text-tertiary {
    color: var(--tertiary-color) !important;
}
.bg-tertiary {
    background-color: var(--tertiary-color) !important;
}

.bg-ice {
    background-color: var(--ice-color) !important;
}

/* Hover Custom colors */

.hover-text-primary:hover {
    color: var(--primary-color) !important;
}

.hover-bg-primary:hover {
    background-color: var(--primary-color) !important;
}

.hover-text-secondary:hover {
    color: var(--secondary-color) !important;
}

.hover-bg-secondary:hover {
    background-color: var(--secondary-color) !important;
}

.hover-text-tertiary:hover {
    color: var(--tertiary-color) !important;
}

.hover-bg-tertiary:hover {
    background-color: var(--tertiary-color) !important;
}

.hover-text-white:hover {
    color: var(--white-color) !important;
}


@media (min-width: 992px) {

    .button-cta {
        font-size: 20px;
    }

}

/* Responsive XL */
@media (min-width: 1200px) {
    .navbar-breathing-space {
        margin-top: 175px;
    }
}



/* Animations 404 */

.car {
    width: 400px;
    bottom: 0px;
    position: absolute;
    animation: run 8000ms linear infinite;
}

@keyframes run {

    0% {
        right: -400px;
    }

    100% {
        right: 100%;
    }
}


/* Swiper Global Style */

.swiper-pagination-bullet {
    background-color: var(--primary-color) !important;
    opacity: 1;
}

    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: var(--secondary-color) !important;
    }
