
:root{
	/* Fonts Family */
	--font-family-01: "Nunito Sans", sans-serif;

	--font-family-02: "Quicksand", sans-serif;
}
html{
    font-size: 16px;
}
@media screen and (max-width: 768px) {
    html{
        font-size: 15px;
    }
}
@media screen and (max-width: 576px) {
    html{
        font-size: 14px;
    }
}
body{
    font-size: 1.1rem;
    font-family: var(--font-family-01);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 500;
    line-height: 1.4;
}
select{
    appearance: none !important;
    -webkit-appearance: none !important;
    background: transparent url(./assets/img/default-dropdown.svg) no-repeat right 1rem center;
    background-size: .6rem; /* Tamanho da imagem */
}
/*********** Start Fonts ***********/
.font-family-01{
    font-family: var(--font-family-01);
}
.font-family-02{
    font-family: var(--font-family-02);
}
/*********** End Fonts ***********/

/*********** Start Background ***********/
.bg-color-neutral-100{
	background-color: var(--color-neutral-100);
}
.bg-color-neutral-200{
	background-color: var(--color-neutral-200);
}
.bg-color-neutral-300{
	background-color: var(--color-neutral-300);
}
.bg-color-neutral-400{
	background-color: var(--color-neutral-400);
}
.bg-color-neutral-500{
	background-color: var(--color-neutral-500);
}
.bg-color-neutral-600{
	background-color: var(--color-neutral-600);
}
.bg-color-neutral-700{
	background-color: var(--color-neutral-700);
}
.bg-color-neutral-800{
	background-color: var(--color-neutral-800);
} 
.bg-color-neutral-900{
	background-color: var(--color-neutral-900);
}
.bg-color-primary{
	background-color: var(--color-primary);
}
.bg-color-secondary{
    background-color: var(--color-secondary);
}
.bg-color-tertiary{
    background-color: var(--color-tertiary);
}

/*********** End Background ***********/

/*********** Start Colors ***********/
.text-color-neutral-100{
	color: var(--color-neutral-100);
}
.text-color-neutral-200{
	color: var(--color-neutral-200);
}
.text-color-neutral-300{
	color: var(--color-neutral-300);
}
.text-color-neutral-400{
	color: var(--color-neutral-400);
}
.text-color-neutral-500{
	color: var(--color-neutral-500);
}
.text-color-neutral-600{
	color: var(--color-neutral-600);
}
.text-color-neutral-700{
	color: var(--color-neutral-700);
}
.text-color-neutral-800{
	color: var(--color-neutral-800);    
} 
.text-color-neutral-900{
	color: var(--color-neutral-900);
}
.text-color-primary{
	color: var(--color-primary);
}
.text-color-secondary{
	color: var(--color-secondary);    
}
.text-color-tertiary{
	color: var(--color-tertiary);    
}
/*********** End Colors ***********/

/*********** Start Text sizes ***********/
.heading-size-xs {
	font-size: 1.25rem; /* 20px */
}
.heading-size-sm {
	font-size: 1.5rem; /* 24px */
}
.heading-size-md {
	font-size: 2.188rem; /* 35px */
}
.heading-size-lg {
	font-size: 2.5rem; /* 40px */
}
.heading-size-xl {
	font-size: 3.25rem; /* 52px */
}
.heading-size-xxl {
	font-size: 3.875rem; /* 62px */
}

.text-size-xs {
	font-size: 0.625rem;  /* 10px */
}
.text-size-sm {
	font-size: 0.75rem; /* 12px */
}
.text-size-md {
	font-size: 0.875rem; /* 14px */
}
.text-size-lg {
	font-size: 1rem !important; /* 16px */
}
.text-size-xl {
	font-size: 1.125rem; /* 18px */    
}
.text-size-xxl {
	font-size: 1.25rem; /* 20px */
}

@media screen and (max-width: 576px) {
    .heading-size-lg {
        font-size: 2.1rem; /* 40px */
    }
    .heading-size-xl {
        font-size: 2.5rem; /* 52px */
    }
    .heading-size-xxl {
        font-size: 2.6rem; /* 62px */
    }
}
/*********** End Text sizes ***********/

/*********** Start Font Weight ***********/
.font-weight-300{
    font-weight: 300;
}
.font-weight-400{
    font-weight: 400;
}
.font-weight-500{
    font-weight: 500;
}
.font-weight-600{
    font-weight: 600;
}
.font-weight-700{
    font-weight: 700;
}
.font-weight-800{
    font-weight: 800;
}
/*********** End Font Weight ***********/

/*********** Start Button ***********/
.at-btn-style-01{
    text-transform: uppercase;
    line-height: 19px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-neutral-900);
    padding: 1.3rem 1.7rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: none;
    border-radius: 20px 0 20px 0;
    background-color: var(--color-neutral-100);
    transition: .5s ease-in-out
}
.at-btn-style-01:hover {
    background-color: var(--color-secondary);
    border-radius: 0 20px 0 0
}
.at-btn-style-02{
    display: inline-flex;
    border: 1px solid var(--color-neutral-100);
    color: var(--color-neutral-100);
    padding: 0.938rem 1.563rem;
    font-size: 1.125rem;
    font-weight: 700;
    transition: .3s ease-out;
}
.at-btn-style-02:hover{
    background-color: var(--color-neutral-100);
    border: 1px solid var(--color-neutral-100);
    color: var(--color-neutral-900);
}
/*********** End Button ***********/

/********* Start Swiper Config *********/
.swiper-pagination-bullet{
    width: 11px;
    height: 3px;
    border-radius: 10px;
}
.blog-pagination .swiper-pagination-bullet{
    background-color: var(--color-neutral-900);
    opacity: 1;
}
.swiper-pagination-bullet-active{
    width: 41px;
    background: linear-gradient(85.4deg, var(--color-tertiary) 8.98%, var(--color-fifth) 92.88%);
}
.swiper-button-next, .swiper-button-prev {
    top: inherit;
    width: 35px;
    height: 35px;
    margin-top: inherit;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--color-neutral-900);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
}
.swiper-button-prev {
    background-image: url('assets/img/arrow-left.svg');
}
.swiper-button-next {
    background-image: url('assets/img/arrow-right.svg');
}
.swiper-button-next:after, 
.swiper-button-prev:after {
    content: '';
}
/********* End Swiper Config *********/

/********* Gallery Lightbox Styles *********/
#gallery-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

#gallery-lightbox-modal.show {
    display: flex !important;
}

.gallery-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gallery-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    padding: 10px;
    line-height: 1;
}

#gallery-lightbox-close:hover {
    color: var(--color-neutral-900);
}

.gallery-lightbox-swiper {
    width: 100%;
    height: 100%;
}

.gallery-lightbox-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-swiper .swiper-slide img,
.gallery-lightbox-swiper .swiper-slide video {
    width: auto;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-lightbox-modal .gallery-lightbox-prev,
.gallery-lightbox-modal .gallery-lightbox-next {
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .gallery-lightbox-content {
        width: 95%;
        height: 85%;
    }

    #gallery-lightbox-close {
        top: -35px;
        font-size: 1.5rem;
    }
}

.gallery-lightbox-trigger {
    cursor: pointer;
    transition: transform 0.3s ease;
}

/********* End Gallery Lightbox Styles *********/

@media screen and (max-width: 576px) {
    .container{
        padding: 0 30px;
    }
}