/* Slider pagination (extraído de theme.css) */
.u-slick__pagination {
    padding-left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: none;
}

.u-slick__pagination li {
    display: -ms-flexbox;
    display: flex;
    pointer-events: all;
    margin: 0 .25rem;
    cursor: pointer;
}

.u-slick__pagination li span {
    display: inline-block;
    width: 0.9375rem;
    height: 0.9375rem;
    box-sizing: border-box;
    background-color: #377dff;
    border: 3px solid transparent;
    border-radius: 50%;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    transition: 0.3s;
}

.u-slick__pagination li.slick-active span {
    background-color: transparent;
    border-color: #377dff;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

/* Long version (extraído de theme.css) */
.u-slick__pagination--long li {
    margin: 0 0.4375rem;
}

.u-slick__pagination--long li:first-child {
    margin-left: 0;
}

.u-slick__pagination--long li span {
    -webkit-transform: none;
    transform: none;
    border: 0;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #bcbcbc;
}

.u-slick__pagination--long li.slick-active span {
    -webkit-transform: none;
    transform: none;
    width: 1.87512rem;
    background-color: #ccc634;
    border-radius: 6.1875rem;
}

/* Typography (extraído de theme.css) */
.font-size-64 { font-size: 4rem !important; }
.font-size-55 { font-size: 3.4375rem !important; }
.font-size-50 { font-size: 3.125rem !important; }
.font-size-16 { font-size: 1rem !important; }
.font-size-15 { font-size: 0.9375rem !important; }
.font-size-13 { font-size: 0.8125rem !important; }

.text-lh-57 { line-height: 3.5625rem !important; }
.text-lh-45 { line-height: 2.8125rem !important; }

.font-weight-light { font-weight: 300 !important; }
.font-weight-bold { font-weight: 700 !important; }

/* Button (extraído de theme.css) */
.btn-primary {
    color: #1e2022;
    background-color: #ccc634;
    border-color: #ccc634;
}

.btn-primary:hover {
    color: #1e2022;
    background-color: #d8b700;
    border-color: #cbac00;
}

.transition-3d-hover {
    transition: all 0.3s ease-in-out;
}

.rounded-lg {
    border-radius: 0.5rem !important;
}

/* Layout helpers (extraído de theme.css) */
.min-height-420 { min-height: 26.25rem !important; }
.bg-img-hero { background-size: cover; background-position: center; }
.bg-img-hero-center { background-position: center center; }
.overflow-hidden { overflow: hidden !important; }
.d-flex { display: flex !important; }
.align-items-center { align-items: center !important; }
.d-block { display: block !important; }
.img-fluid { max-width: 100%; height: auto; }

/* Spacing (extraído de theme.css) */
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.py-7 { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-md-7 { padding-left: 4.5rem !important; padding-right: 4.5rem !important; }
.pl-2 { padding-left: 0.5rem !important; }
.pb-1 { padding-bottom: 0.25rem !important; }

/* Positioning (extraído de theme.css) */
.position-absolute { position: absolute !important; }
.text-center { text-align: center !important; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.justify-content-start { 
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; 
}

/* Font weights */
.font-weight-normal { font-weight: 400 !important; }

/* Slider específico */
.u-slick { position: relative; }

@media (min-width: 768px) {
    .py-md-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
    .mt-md-8 { margin-top: 5rem !important; }
    .mb-md-4 { margin-bottom: 1.5rem !important; }
    .px-md-7 { padding-left: 4.5rem !important; padding-right: 4.5rem !important; }
}

.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}