
/* Cores customizadas */
:root {
    --color-neutral-100: #2c2e35;
    --color-neutral-700: #d2d3d4;
    --color-neutral-800: #eaebea;
    --color-neutral-900: #FFFFFF;
    --color-primary: #3bc6ec;
    --color-secondary: #ec1f47;
    --color-tertiary: #237985;

    /* Fonts Family */
    --font-family-01: "Lato", sans-serif;
}
html{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .02rem;
}

@media screen and (max-width: 999px) {
    html{
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    html{
        font-size: 14px;
    }
}

@media screen and (max-width: 576px) {
    html{
        font-size: 13px;
    }
}
body{
    font-family: var(--font-family-01);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
form{
    touch-action: manipulation;
    display: flex;
    flex-direction: column;
    row-gap: 1.2rem;
}
input,
textarea,
select{
    width: 100%;
    background-color: var(--color-neutral-900);
	font-size: 1.125rem; /* 18px */
    touch-action: manipulation;
    font-weight: 500;
    color: var(--color-neutral-100);
    border: 0;
    padding: 1.2rem;
    border-radius: 15px;
}
textarea{
    min-height: 1rem;
    max-height: 10rem;
}
select{
    appearance: none !important;
    -webkit-appearance: none !important;
    background: transparent url(./assets/img/arrow-black-bottom.svg) no-repeat right 1rem center;
    background-size: 2rem; /* Tamanho da imagem */
    background-color: var(--color-neutral-800);
}
/*********** Start Fonts ***********/
.font-family-01{
    font-family: var(--font-family-01);
}
/*********** End Fonts ***********/

/*********** Start Background ***********/
.bg-color-neutral-100{
	background-color: var(--color-neutral-100);
}
.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);
}
.bg-color-green{
    background-color: var(--color-green);
}
/*********** End Background ***********/

/*********** Start Colors ***********/
.text-color-neutral-100{
	color: var(--color-neutral-100);
}
.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: 1rem; /* 16px */
}
.heading-size-sm {
	font-size: 1.125rem; /* 18px */
}
.heading-size-md {
	font-size: 1.375rem; /* 22px */
}
.heading-size-lg {
	font-size: 1.563rem; /* 25px */
}
.heading-size-xl {
	font-size: 1.875rem; /* 30px */
}
.heading-size-xxl {
	font-size: 2.5rem; /* 40px */
}

@media screen and (max-width: 576px) {
    .heading-size-xl {
        font-size: 1.675rem;
    }
}
.text-size-xs {
	font-size: 0.656rem;  /* 10.5px */
}
.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) {

}
/*********** 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;
}
.font-weight-900{
    font-weight: 900;
}
/*********** End Font Weight ***********/

/*********** Start Button ***********/
.btn-style-01{
    background-color: var(--color-secondary);
    color: var(--color-neutral-900);
    padding: 1.4rem;
    border-radius: 50px;
    border: 0;
	font-size: 1.875rem; /* 30px */
    font-weight: 900;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .6rem;
}
/*********** End Button ***********/

/********* Start Swiper Config *********/
.swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #fff;
    opacity: 0.5;
    background-color: transparent;
}

.swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1; 
}
.swiper-button-next, .swiper-button-prev {
    background: none;
}
.swiper-button-prev {
    left: -3rem;
}
.swiper-button-next {
    right: -3rem;
}
.swiper-button-next:after, 
.swiper-button-prev:after {
    font-size: 20px;
    content: '';
}
/********* End Swiper Config *********/

.border-top-left-radius{
    border-top-left-radius: 12px;
}
.border-bottom-right-radius{
    border-bottom-right-radius: 12px;
}


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