:root {
    --color-primary: #ff0099;
    --color-primary-rgb: 255, 0, 153;
    --color-primary-hover: #D80083;
    --color-secondary: #953adb;
    --color-secondary-rgb: 149, 58, 219;
    --color-secondary-hover: #2b1459;
    --color-secondary-hover-rgb: 43, 20, 89;
    --color-light: #f9f9f9;
    --color-light-rgb: 249, 249, 249;
    --color-dark: #1d1d1b;
    --color-dark-rgb: 29, 29, 27;
    --color-dark-hover: #031B17;
    --color-white: #ffffff;
    --color-white-rgb: 255, 255, 255;
    --color-black: #000000;
    --color-black-rgb: 0, 0, 0;
    --color-text: #1d1d1b;
    --color-text-rgb: 29, 29, 27;
    --font-body: "Montserrat";
    --font-heading: "Montserrat";
    --font-icons: "Font Awesome 6 Free";
}

body {
    font-family: var(--font-body), sans-serif;
    font-weight: 300;
    font-size: .925rem;
    color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #343a40;
}
@media (min-width: 768px) {
    .fs-7 {
        font-size: 0.85rem;
    }
    .fs-8 {
        font-size: 0.75rem;
    }
}

strong {
    font-weight: 600;
}

.ff-body {
    font-family: var(--font-body), sans-serif;
}
.ff-heading {
    font-family: var(--font-heading), sans-serif;
}

.text-primary {
    color: var(--color-primary) !important;
}
.text-secondary {
    color: var(--color-secondary) !important;
}
.text-light {
    color: var(--color-light) !important;
}
.text-dark {
    color: var(--color-dark) !important;
}

.text-justify {
    text-align: justify;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}
.bg-secondary {
    background-color: var(--color-secondary) !important;
}
.bg-light {
    background-color: rgba(var(--color-secondary-rgb), 0.1) !important;
}
.bg-dark {
    background-color: var(--color-dark) !important;
}

.border-primary {
    border-color: var(--color-primary) !important;
}
.border-secondary {
    border-color: var(--color-secondary) !important;
}
.border-light {
    border-color: var(--color-light) !important;
}
.border-dark {
    border-color: var(--color-dark) !important;
}

/********** ELEMENTS **********/
/******************************/
.preloader {
    position: fixed;
    z-index: 100;
    background: var(--bs-white);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.4s ease-out;
    padding: .5rem 2rem;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white !important;
}
.btn-primary:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}
.btn-secondary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: black !important;
}

label {
    color: var(--color-dark);
    margin-bottom: 5px;
}
label:has(+ .form-control) {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}
.form-control {
    background-color: transparent;
    border: 1px solid rgba(var(--color-secondary-rgb),0.4);
    border-radius: 0;
}
.form-control:active,
.form-control:focus {
    background-color: transparent;
}

.was-validated .form-control:valid {
    background-image: none;
    border-color: rgba(var(--color-secondary-rgb),0.4);
}

.invalid-phone {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .85em;
    color: var(--bs-form-invalid-color);
}

.subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4em;
    color: var(--color-primary);
    margin-bottom: .75rem;
    padding-left: .4em;
    text-align: center;
}

.separator img{
    max-width: 100px;
    display: block;
    margin: 0 auto 1.5rem;
}

.splide__arrow {
    background-color: transparent;
}
.splide__arrow--prev {
    left: -3rem;
}
.splide__arrow--next {
    right: -3rem;
}
.splide__arrow svg {
    fill: var(--color-primary);
    width: 3rem;
    height: 3rem;
}
.splide__arrow:focus {
    outline: none !important;
}

.socials {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-left: 0;
}
.socials a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin: 0 .5rem;
    text-decoration: none;
    transition: all .3s ease-out;
    font-size: 1.25rem;
}
.socials a:hover {
    background: var(--color-dark);
    border-color: var(--color-dark-hover);
}

.whatsapp {
    background: #25D366 !important;
    border: 1px solid #ffffff !important;
    font-size: 1.75rem;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    text-align: center;
    box-shadow: -3px 3px 0 #00000030;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
.whatsapp i {
    color: #ffffff;
}
.whatsapp:hover {
    background: #ffffff !important;
    border-color: #25D366 !important;
}
.whatsapp:hover i {
    color: #25D366;
}
@media (min-width: 768px) {
    .whatsapp {
        bottom: 50px;
        right: 30px;
    }
}

.scrollBottom {
    padding-top: 70px;
    position: absolute;
    bottom: 1rem;
    left: 50%;
}
.scrollBottom span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-left: -12px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb05 1.5s infinite;
    animation: sdb05 1.5s infinite;
    box-sizing: border-box;
}
@-webkit-keyframes sdb05 {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}
@keyframes sdb05 {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

hr {
    border-color: #ededed;
    opacity: 1;
}

.modal {
    --bs-modal-border-radius: 0;
}

/********** SECTIONS **********/
/******************************/
header {
    position: fixed;
    height: 70px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transition: all 0.4s ease-in-out;
}

.navbar-brand img {
    height: 36px;
}

.navbar .nav-link {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body), sans-serif;
    position: relative;
    margin: 0 .75rem;
    text-transform: uppercase;
    color: var(--color-primary)
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--color-secondary);
}
.navbar .nav-link span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease-in-out;
    background-color: var(--color-primary);
}
.navbar .nav-link:hover span::after {
    width: 100%;
}
.navbar .socials a {
    margin-left: 0;
    width: 35px;
    height: 35px;
    font-size: .85rem;
}

.carousel-caption {
    background-color: rgba(var(--color-secondary-hover-rgb),0.8);
    width: 1000%;
    height: 100%;
    left: 0;
    right: auto;
    bottom: 0;
}

@media (min-width: 992px) {
    .navbar-brand img {
        height: 50px;
    }
    .carousel-caption {
        width: 50%;
    }
}

.card-package {
    --bs-card-border-color: none;
    --bs-card-border-radius: 4px;
    background: repeating-linear-gradient(
            135deg,
            var(--color-light),
            var(--color-light) 2px,
            transparent 4px,
            transparent 8px
    );
    padding-bottom: 35px;
    transition: all ease-in-out 0.4s;
    position: relative;
}
.card-package:before {
    content: '';
    transition: all ease-in-out 0.4s;
    background-color: rgba(var(--color-secondary-hover-rgb),0);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
}
.card-package:hover:before {
    background: repeating-linear-gradient(
            135deg,
            var(--color-secondary-hover),
            var(--color-secondary-hover) 4px,
            rgba(var(--color-secondary-hover-rgb),0.98) 4px,
            rgba(var(--color-secondary-hover-rgb),0.98) 8px
    );
    height: 100%;
}
.card-package .card-body {
    position: relative;
}
.card-package:hover {
    color: var(--bs-white);
}
.card-package .card-icon {
    width: 70px;
    height: 70px;
    padding: 1rem;
    background-color: var(--bs-white);
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgb(217 217 219);
    margin-top: -35px;
    transition: background-color ease-in-out 0.4s;
    z-index: 1;
}
.card-package:hover .card-icon {
    background-color: var(--color-secondary);
    box-shadow: none;
}
.card-package .price {
    color: var(--color-secondary);
}
.card-package:hover .price {
    color: var(--bs-white);
}
.card-package ul li {
    line-height: 2;
}
.card-package:hover ul li {
    opacity: 0.9;
}
.card-package .card-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--color-secondary);
}
.card-package:hover .card-icon svg {
    fill: var(--bs-white);
}

.terms-bg {
    border: 1px solid rgba(var(--color-secondary-rgb),0.1);
    background-color: rgba(var(--color-secondary-rgb),0.05);
}

.list-style {
    list-style: none;
    padding: 0;
}
.list-style li {
    padding-left: 1em;
    line-height: 2;
}
.list-style li:before {
    content: "\f560"; /* FontAwesome Unicode */
    font-family: var(--font-icons), serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    margin-left: -1.3em; /* same as padding-left set on li */
    width: 1.5em; /* same as padding-left set on li */
    color: var(--color-secondary);
}

.contact {
    border-top: 1px solid var(--color-light);
    background: repeating-linear-gradient(
            135deg,
            var(--color-light),
            var(--color-light) 2px,
            var(--bs-white) 2px,
            var(--bs-white) 10px
    );
}

footer {
    color: white;
}

footer .parallax__container::after {
    background-image: linear-gradient(to bottom, rgba(var(--color-black-rgb), 0.5) 0%, rgba(var(--color-black-rgb), 0.7) 100%);

}

.contact {
    border-bottom: 1px solid rgba(255,255,225,0.2);
}
.contact form {
    background-color: rgba(var(--color-white-rgb), 0.9);
    box-shadow: 0 0 0 4px rgba(var(--color-white-rgb), 0.2);
    backdrop-filter: blur(2px);
}