body { 
    background-color: #fff;
    color: #000;
    /*font-family: "Manrope", sans-serif;*/
    font-family: "Plus Jakarta Sans", sans-serif;
}


*{
	margin: 0;
	padding: 0;
}



p {
    font-style: normal;
    line-height: 1.6;
    letter-spacing: .01em;
    font-size: 1rem;
    font-weight: normal;
    color: rgb(112, 112, 112);
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-style: normal;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: -.01em;
}

h2 {
    font-size: 1.3rem;
    line-height: 24px;
    transition: 0.2s;
    color: #000;
}

h3 {
	font-weight: 800;
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: rgb(39 39 39);
    margin-bottom: 1rem;
}

a {
	color: rgb(32, 41, 82);
    transition: 0.2s;
    text-decoration: none;
}

a:hover {
    color: #6A02BB;
}

/******/



/* MENU TOPO */
.menu-topo {
    width: 100%;
    margin: 0 auto;
    padding: 10px 10%;
    background: #000000;
    overflow: hidden;
    font-size: 12px;
    letter-spacing: 0.1rem;
    text-align: center;
}

.menu-topo a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-right: 3px solid #4C4C4C;
    padding: 0 10px;
}

/* Menu */
#header {
    background: #fff;
    width: 100%;
    position: relative;
    height: 80px;
    z-index: 999;
	box-shadow: 0 2px 10px 3px rgb(20 36 21 / 7%);
	top: 0;
	position: fixed;
}
#header:after {
    content: "";
    clear: both;
    display: block;
}

#header a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#header-content {
    width: 90%;
    margin: 0 auto;
}

.logo {
    float: left;
    position: absolute;
    z-index: 999;
    padding: 20px 0;
}
.logo a {
    font-size: 28px;
    display: block;
}
.logo img {
    width: 160px;
}
nav {
    float: right;
}

nav > ul {
    float: left;
    position: relative;
}
nav li {
    list-style: none;
    float: left;
}
nav .dropdown {
    position: relative;
}

nav .dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 4px; /* espaço entre texto e seta */
    text-decoration: none;
    color: #333;
}


nav li a {
    float: left;
    padding: 28px 10px;
}

#header a:hover {
    color:#6378e5;
}
nav li ul {
    display: none;
}

nav li li {
    float: none;
}
nav .dropdown ul {
    position: absolute;
    left: 0;
    top: 100%;
    background:#fff;
    border-bottom: 3px solid #34495e;
}
nav .dropdown li {
    white-space: nowrap;
}

nav .dropdown li a {
    padding: 10px 35px;
    font-size: 13px;
    min-width: 200px;
    color: #000 !important;
}
nav .dropdown li a:hover {
    background: #f3f4f7;
}
nav .mega-dropdown {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background:#fff;
    overflow: hidden;
    padding: 20px 35px;
    border-bottom: 3px solid #34495e;
}
nav li li a {
    float: none;
    color:#333;
    display: block;
    padding: 8px 10px;
    border-radius: 3px;
    font-size: 13px;
}
nav li li a:hover {
    background:#bdc3c7;
    background:#FAFBFB;
}
.mega-col {
    width: 25%;
    float: left;
}
#menu-icon {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -12px;
    margin-right: 30px;
    display: none;
}
#menu-icon span {
    border: 2px solid #000;
    width: 30px;
    margin-bottom: 5px;
    display: block;
    -webkit-transition: all .2s;
    transition:all .1s;
    background: #000;
}

.arrow {
    border: solid #333;
    border-width: 0 1px 1px 0;
    padding: 4px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    display: inline-block;
	margin-left: 5px;
}

/* Quando o menu está aberto */
.dropdown.open > a .arrow {
    transform: rotate(-135deg); /* seta para cima */
}


@media only screen and (min-width: 1350px) {
    nav {
        display: block!important;
    }
}

@media only screen and (max-width: 1350px) {
    
    nav {
        display: none;
        width: 100%;
        clear: both;
        float: none;
        max-height: 400px;
        overflow-y: scroll;
        background: #1E262D;
        position: absolute;
        z-index: 99;
        left: 0;
        top: 60px;
        padding: 20px 10%;
    }
    nav .dropdown li a {
        color: #fff !important;
    }
    nav .dropdown li a:hover {
        color: #000 !important;
    }
    #menu-icon {
        display: inline;
        top: 45px;
        cursor: pointer;
    }
    #menu-icon.active .first {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        margin-top:10px;
    }
    #menu-icon.active .second {
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        position: relative;
        top:-9px;
    }
    #menu-icon.active .third {
        display: none;
    }
    nav ul {
        float: none;
    }
    nav li {
        float: none;
    }
    nav ul li a {
        float: none;
        padding: 8px;
        display: block;
    }
    #header nav ul ul {
        position: static;
        background: none;
        border: none;
        padding: 0;
    }
    #header nav a {
        color:#fff;
        padding: 8px;
    }
    #header nav a:hover {
        background: #fff;
        color:#333;
        border-radius: 3px;
    }
    #header nav ul li li a:before {
        content: "- ";
    }
    .mega-col {
        width: 100%;
    }
}


/* home-dest */
.home-dest {
    width: 100%;
    overflow: hidden;
    margin-top: 53px;
    background: linear-gradient(92deg, #fffdfc -2%, #E2DBF6 116%);
    padding: 80px 0;
}

.dest-content {
	width: 90%;
	margin: 0 auto;
}

.dest-content {

}

.home-dest-text {
	text-align: center;
}

.home-dest-text h1 {
	font-size: 3rem;
    line-height: 1;
    letter-spacing: -.025em;
    font-weight: 500;
    margin-bottom: 20px;
}

.home-dest-text h1 span {
	display: block;
	color: #2489EE;
}

.home-dest-text h1 span:nth-child(2) {
    color: #282876;
    margin-top: 20px;
    font-size: 2rem;
}

.home-dest-text p {
	color: #282876;
	font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 20px;
}


.home-bullets {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
	margin-top: 30px;
}

.home-bullets .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
    text-decoration: none;
    transition: box-shadow .2s, background-color .2s, transform .2s;
}

.home-bullets .btn-primary {
    background-color: #2688E9;
    color: #fff;
}

.home-bullets .btn-primary:hover {
	background-color: #282876;	
}

.home-bullets .btn-secundary {
	background-color: #072670;
	color: #fff;
}

.home-bullets .btn-secundary:hover {
	background-color: #6a02bb;
}


/* section-content */
.section-content {
	width: 90%;
	margin: 0 auto;
	padding: 80px 0;
}


/* content-title */
.content-title {
	text-align: center;
}

.content-title h3 {
	font-weight: 800;
	font-size: 1.875rem;
    line-height: 2.25rem;
	color: rgb(39 39 39);
	margin-bottom: 1rem;
}

.content-title p {
	font-size: 1.25rem;
    line-height: 1.75rem;
	color: rgb(75 85 99);
	margin-bottom: 20px;
}

/* btn-action */
.btn-action {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
    text-decoration: none;
    transition: box-shadow .2s, background-color .2s, transform .2s;

	background-color: #6a02bb;
    color: #fff;
}

.btn-action svg {
    margin-left: .5rem;
    transition: transform .2s;
}

.btn-action:hover,
.btn-api:hover {
	background-color: #836AE4;
	color: #fff;
}

.btn-action:hover svg,
.btn-api:hover svg {
    transform: translateX(4px);
}

/* section-comm */
.comm-inform {
	width: 100%;
	overflow: hidden;
}

.comm-text {
	width: 100%;
	overflow: hidden;
	margin-bottom: 20px;
	text-align: center;
}

.comm-text ul {
	margin-bottom: 20px;
}

.comm-text ul li {
	align-items: flex-start;
	display: flex;
	line-height: 30pt;
}

.comm-text ul li svg {
	color: #072670;
    width: 1.5rem;
    height: 2.5rem;
    margin-right: .5rem;
}

.comm-text ul li span {
    opacity: .8;
    --tw-text-opacity: 1;
    color: rgb(39 39 39);
	text-align: left;
	line-height: 20pt;
}

.comm-img {
	width: 100%;
	overflow: hidden;
	text-align: center;
}

.comm-img-content {

}

.comm-img-content img {

}

.comm-img-content {
    background-color: #ffffff;
    /* padding: 12px; */
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 287px;
    display: inline-block;
    position: relative;
	margin-bottom: 50px;
}

.comm-img-content img {
	border-radius: 12px;
	display: block;
	width: 300px;
	height: auto;
	max-width: 0 auto;
}

.comm-text .btn-action {
	margin-bottom: 40px;
}



/* section-funil */
.section-funil {

}

.funil-home {
	text-align: left;
	margin-top: 5px;
}

.funil-home span {
	display: block;
}

.funil-home span:nth-child(1) {
	font-weight: bold;
}

.funil-inform ul li:nth-child(1) {
	margin-bottom: 10px;
}


/* section-video */
.section-video {

}

.section-video .section-content .content-title {
	text-align: center;
	margin-bottom: 40px;
}

.home-video {

}

.home-video {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000;
}

.home-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}


/* home-api */

.home-api {

}

.home-api .section-content .content-title {
	text-align: center;
	margin-bottom: 40px;
}

.home-api .section-content .content-title .btn-action {

}

.home-api-img img {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* sombra suave */
	border-radius: 8px; /* opcional: cantos arredondados */
	display: block;
	max-width: 100%;
	height: auto;
}

.btn-api {
    align-items: center;
    justify-content: center;
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
    text-decoration: none;
    transition: box-shadow .2s, background-color .2s, transform .2s;
    background-color: #6a02bb;
    color: #fff;
    margin-top: 10px;
    display: inline-block;
}


/* section-contact */
.section-contact {
	background-color: #07368D;
}

.home-contact {
	text-align: center;
	padding: 80px 0;
}

.home-contact h3 {
	font-size: 3rem;
    line-height: 2.25rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 500;
}

.home-contact p {
	font-size: 1.25rem;
    line-height: 1.75rem;
    color: #fff;
    margin-bottom: 20px;
}

/* section-faq */
.section-faq {
  padding: 2rem 1rem;
}

.section-faq .section-content .content-title {
	text-align: center;
}

.section-faq .section-content .content-title p {
	margin-bottom: 40px;
}


.faq-question {
    width: 100%;
    text-align: left;
    color: #fff;
    background-color: #07368D;
    padding: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 0.3s;
}

.faq-question h2 {
    color: #fff;
    font-weight: 200;
}

.faq-question:hover {
    background: #836AE4;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 15px;
    background: #f9f9f9;
    border-left: 3px solid #6a02bb;
    border-radius: 0 0 10px 10px;
    margin-bottom: 20px;
}

.faq-answer p {
  margin: 15px 0;
}

/* footer */
footer {
	background-color: #EDF2FF;
}

.footer-content {
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
	padding: 80px 0;
	color: #333;
}

.footer-content a {
	color: #333;
}

.footer-menu ul {
    width: 100%;
	overflow: hidden;

}


.footer-menu ul li {
	width: 100%;
	overflow: hidden;
	margin-bottom: 30px;
}

.footer-menu ul li h2 {
	color: #6801B8;
	margin-bottom: 20px;
}


.footer-logo {
	
}

.footer-logo img {
	width: 120px;
	margin-bottom: 20px;
}

.footer-logo p {
	color: #333;
	margin-bottom: 20px;
	font-size: 0.9rem;
}

.footer-menu ul li a {
	display: block;
    line-height: 25pt;
	font-size: 0.9rem;
}

.footer-menu ul li a:hover {
	color: #8181ac;
}


.footer-dev {
	width: 100%;
	overflow: hidden;
	margin-top: 20px;
}

.footer-dev ul li {
	width: 100%;
	list-style: none;
}

.footer-dev ul li p,
.footer-dev ul li a {
	color: #333;
	font-size: 0.9rem;
	line-height: 27pt;
}

.footer-dev ul li a:hover {
	color: #8181ac;
}

/* bachground padrão */
.background-one {
	/*background: #fff;*/
	background-image: linear-gradient(180deg, #e4ecfa 0%, #fbfbfc 20%);
}

.background-two {
	background: #F9F9F9;
}

.background-three {
	background: #F3F5FC;
}


/* page-title-center */
.page-title-center {
	display: block;
	text-align: center;
	margin-bottom: 60px;
}

.page-title-center h3 {
	font-size: 2.3rem;
    line-height: 2.8rem;
}

.page-title-center p {

}


/* p-title */
.p-title {
	font-size: 1.1rem;
    line-height: 1.75rem;
    color: rgb(75 85 99);
    margin-bottom: 20px;
}


/* PAGE PADRAO - CSS */
.page-one-text,
.page-two-text,
.page-category-text {
	width: 100%;
	overflow: hidden;
	text-align: center;
}

.page-one-text h1,
.page-two-text h1,
.page-three-text h1,
.page-category-text h1 {
	font-size: 2.8rem;
    line-height: 0.9rem;
    letter-spacing: -.025em;
    font-weight: 500;
    margin-bottom: 20px;
	line-height: 1.1;
}

.page-one-text .page-color-one {

}

.page-one-text p,
.page-two-text p,
.page-three-text p,
.page-category-text p {
    color: #282876;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 20px;
}

.page-one-text .description-bold,
.page-two-text .description-bold {
	font-weight: bold;
}


/* bullets-list */
.bullets-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 1rem;
	margin-top: 30px;
	width: 100%;
	padding: 0 1rem;
	margin-bottom: 30px;
}

.bullets-list-left,
.bullets-list-right {
	display: flex;
	align-items: center;
	font-size: 1rem;
	line-height: 1.5rem;
	text-decoration: none;
	gap: 0.75rem;
}

.bullets-list-left i,
.bullets-list-right i {
	height: 30px;
    width: 30px;
	background-color: #DFE2F9;
	color: #1e40af;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	flex-shrink: 0;
}



	/**/
.page-color-one {
	color: #6378e5;
}

.page-color-two {
	color: #282876;
}


	/**/

.btn-page-chat {
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-page-chat a {
    align-items: center;
    justify-content: center;
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
    text-decoration: none;
    transition: box-shadow .2s, background-color .2s, transform .2s;
    background-color: #6a02bb;
    color: #fff;
	display: inline-block;
}

	/**/
.page-one-figure,
.page-two-figure {
	width: 100%;
	overflow: hidden;
	margin-top: 40px;
	text-align: center;
}

.page-one-figure img,
.page-two-figure img {
	width: 250px;
	max-width: 0 auto;
}


/* PAGE FUNCIONALIDADES - LAYOUT 01 */
.page-model-one {

}

.page-model-one .page-one-text {

}

/* grid-left */
.section-grid-left,
.section-grid-right {
    flex-direction: column;
    display: flex;
    margin-bottom: -40px;
}

.grid-left-text,
.grid-right-text {
    margin-bottom: 40px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.grid-left-text h3,
.grid-right-text h3 {
	font-weight: 800;
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: rgb(39 39 39);
    margin-bottom: 1rem;
}

.grid-left-text p,
.grid-right-text p {
	font-size: 1.25rem;
    line-height: 1.75rem;
    color: rgb(75 85 99);
    margin-bottom: 20px;
}

.grid-left-img,
.grid-right-img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
}


.grid-left-img img,
.grid-right-img img {
    width: 400px;
    
}




/* grid-right */



/* grid-list-one */
.grid-list-one {
	padding: 30px 0 20px 0;
}

.grid-list-one ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 0;
	margin: 0;
}

.grid-list-one ul li {
	list-style: none;
	flex: 0 0 100%; /* 1 por linha - mobile */
	max-width: 100%;
	padding: 0;
	display: flex;
	justify-content: center;
}

.grid-list-one .list-one-content {
	padding: 18px;
	background-color: white;
	border-radius: 5px;
	width: 100%;
	max-width: 231px;
	height: 205px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.grid-list-one .list-one-top {
	font-size: 17px;
	font-weight: 500;
	align-items: center;
	display: flex;
}

.grid-list-one .list-one-top i {
	height: 40px;
	width: 40px;
	margin-right: 15px;
	background-color: #DFE2F9;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.grid-list-one .list-one-top span {
	font-weight: bold;
	font-size: 0.9rem;
}

.grid-list-one .list-one-description {
	font-weight: 300;
	line-height: 21px;
	padding: 0 7px;
	font-size: 14px;
	margin: 15px 0 10px;
	color: #03091a;
	opacity: 0.8;
}

/* cta-footer */
.cta-footer {
	width: 100%;
	background-color: #1E5BFA;
	overflow: hidden;
}

.cta-footer-content {
	width: 90%;
	margin: 0 auto;
	padding: 50px 0;
}

.cta-footer-text {

}

.cta-footer-text h3 {
	color: #fff;
	font-weight: 100;
	font-size: 1.25rem;
}

.cta-footer-text h3 span {

}

.cta-footer-content .cta-footer-action {

}

.cta-footer-content .cta-footer-action a {
	background: #ffffff;
    border-radius: 7px;
    border: none;
    padding: 16px 50px;
    text-decoration: none;
    color: #1e5bfa;
    font-weight: 500;
    text-align: center;
    font-size: 15px;
	display: inline-block;
}


/* checklist-left */
.checklist-left {
	margin-top: 20px;
}

.checklist-left ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px; /* espaço entre os itens */
}

.checklist-left ul li {
	list-style: none;
	display: flex;
	align-items: flex-start; /* ícone alinhado ao topo do texto */
	gap: 15px;
	font-size: 15px;
	line-height: 1.5;
	color: #1e293b; /* cinza escuro */
	background: #fff;
	border-radius: 8px;
	padding: 8px;
	transition: background-color 0.2s ease;
}

.checklist-left ul li:hover {
	background-color: #f3f4f6; /* leve destaque ao passar o mouse */
}

.checklist-left ul li i {
	height: 40px;
	width: 40px;
	background-color: #DFE2F9;
	color: #1e40af; /* azul escuro, ou o que combinar com seu site */
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	flex-shrink: 0;
}

.checklist-left ul li span {
	display: block;
	font-weight: 400;
}


/* grid-list-two */
.grid-list-two {
	padding: 30px 0 20px 0;
}

.grid-list-two ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 0;
	margin: 0;
}

.grid-list-two ul li {
	list-style: none;
	flex: 0 0 100%; /* 1 item por linha no mobile */
	max-width: 100%;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: stretch; /* Altura igual */
}

.list-two-content {
	padding: 18px;
	background-color: #0b192d;
	border-radius: 24px;
	width: 100%;
	max-width: 231px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);

	display: flex;
	flex-direction: column;
	justify-content: flex-start;

}

.list-two-top {
	font-size: 17px;
	font-weight: 500;
	align-items: center;
	display: flex;
}

.list-two-top i {
	height: 40px;
	width: 40px;
	margin-right: 15px;
	background-color: #DFE2F9;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.list-two-description {
	font-weight: 300;
	line-height: 21px;
	padding: 0 7px;
	font-size: 14px;
	margin: 15px 0 10px;
	color: #fff;
	opacity: 0.8;
}

.list-two-description span {
	font-weight: bold;
	font-size: 1rem;
	display: block;
	margin-bottom: 10px;
}

/* grid-list-three */
.grid-list-three {

}

.list-three-content {
	
}


/* home-category */
.home-category {
    width: 100%;
    overflow: hidden;
    padding-top: 130px;
}

.category-content {
	width: 90%;
	margin: 0 auto;
	padding-bottom: 40px;
}

.category-list {

}

.category-list ul {
	display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.category-list ul li {
	background-color: #F9F9F9;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.category-list ul li img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.category-list ul li h2 {
    margin-top: 20px;
	margin-bottom: 10px;
}

.read-more-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #3c97ff;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	transition: color 0.3s ease;
}

.read-more-link span {
	position: relative;
}

.read-more-link span::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0%;
	height: 2px;
	background-color: currentColor;
	transition: width 0.3s ease;
}

.read-more-link .arrow-icon {
	width: 12px;
	height: 12px;
	transform: rotate(-90deg);
	transition: transform 0.3s ease, fill 0.3s ease;
	fill: currentColor;
	vertical-align: middle; /* Alinha verticalmente ao texto */
}

.read-more-link:hover {
	color: #1c5fa3; /* cor no hover */
}

.read-more-link:hover .arrow-icon {
	transform: rotate(-90deg) translateX(3px); /* move para a direita */
}

.read-more-link:hover span::after {
	width: 100%;
}


.pagination-wrapper {
    text-align: center;
    margin-top: 30px;
}

.pagination-wrapper ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    gap: 6px;
}

.pagination-wrapper li a, .pagination-wrapper li span {
    padding: 8px 12px;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}


/* page-single */
.home-single {
	width: 100%;
    overflow: hidden;
    padding-top: 130px;
}

.page-single-text {
	width: 100%;
	text-align: left;
}

.page-single-text h1 {
    font-size: 2.5rem;
    letter-spacing: -.025em;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-single-text p {
	color: #282876;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 20px;
}

.single-thumbnail {
	width: 90%;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 40px;
    text-align: center;
}

.single-thumbnail img {
    width: 300px;
    border-radius: 30px;
}

.single-thumbnail em {
	display: block;
}




.post-content {
    font-size: 1.1rem;
    line-height: 1.7;
}

.post-content a {
    color: #c94418;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content a:hover,
.post-content a:focus {
    color: #001446;
    text-decoration: none;
}

.post-content p {
    margin-bottom: 20px;
    line-height: 30px;
    color: #222222;
    font-size: 1.1rem;
}

.post-content ol {
    margin-left: 15%;
}

.post-content ol li {
    color: #666;
    text-decoration: none;
    text-align: justify;
    line-height: 20pt;
    padding: 5px 0;
}

.post-content ol li a {
    color: #666;
    text-decoration: underline;
    text-align: justify;
    line-height: 20pt;
}

.post-content ol a:active {
    text-decoration: none;
}

.post-content ol a:hover {
    text-decoration: underline;
    color: #185a5e;
}

.post-content ul li {
    margin-left: 10%;
    margin-bottom: 20px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.post-content table th,
.post-content table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.post-content table th {
    background-color: #f5f5f5;
}


.post-content pre {
    background: #f4f4f4;
    padding: 15px;
    overflow-x: auto;
    font-size: 0.95rem;
    border-radius: 4px;
    margin-bottom: 20px;
}

.post-content code {
    background: #eee;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin: 30px 0 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

blockquote {
    border-left: 5px solid #B7926A;
    padding-left: 20px;
    margin: 30px 0;
    background: #fef5f5;
    color: #333;
}

blockquote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

blockquote p a {
    color: #fff;
}

blockquote:after {
    content: "";
    display: block;
    position: relative;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(344deg, #F0790B 0px, #dc2430 70%, #F0790B 85%);
}

blockquote p {
    margin-bottom: -6px !important;
}

blockquote ul {
    margin-top: 20px;
    color: #fff;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    white-space: nowrap;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #c94418;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

.aligncenter, div.aligncenter {
    margin-bottom: 20px;
}




/* planos */
.plan-section {
padding: 2rem 1rem;
text-align: center;
background-color: #f9f9f9;
}

.list-plan .plan-list {
display: flex;
flex-direction: column;
gap: 2rem;
padding: 0;
list-style: none;
}

.plan-item {
background-color: #fff;
border-radius: 16px;
padding: 2rem;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
text-align: left;
transition: transform 0.3s ease;
}

.plan-item:hover {
transform: translateY(-5px);
}

.plan-top {
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 1rem;
}

.plan-val-price {
font-size: 2rem;
font-weight: bold;
color: #007bff;
}

.plan-val-price span {
font-size: 0.9rem;
color: #777;
}

.plan-duration {
margin: 1rem 0;
color: #444;
font-weight: 500;
}

.plan-description-package {
font-size: 1.1rem;
font-weight: bold;
margin: 1.5rem 0 0.5rem;
}

.plan-description-sub {
font-size: 1rem;
font-weight: 600;
margin-top: 1rem;
color: #555;
}

.feature-list {
margin: 0;
padding: 0;
list-style: none;
}

.feature-list li {
display: flex;
align-items: center;
font-size: 0.95rem;
margin: 0.5rem 0;
color: #333;
}

.feature-list i {
color: #28a745;
margin-right: 0.5rem;
font-size: 1.2rem;
}

/* Responsivo: 3 colunas a partir de 990px */
@media (min-width: 990px) {
	.list-plan .plan-list {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .plan-item {
    width: calc(33.333% - 1rem);
  }
}




.comparison-section {
	padding: 2rem 1rem;
	color: #333;
}



.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.plan-table th,
.plan-table td {
  padding: 1rem;
  text-align: center;
  border: 1px solid #e0e0e0;
  min-width: 150px;
}

.plan-table th {
  background: #f0f0f0;
  font-weight: bold;
}

.plan-table td:first-child,
.plan-table th:first-child {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 1;
  text-align: left;
  font-weight: 500;
  color: #111;
}

.plan-table td:first-child {
  background: #fafafa;
}

.plan-table td:empty {
  background-color: #fff;
}

.plan-table td:contains("✔") {
  color: green;
  font-weight: bold;
}

/* Responsivo para desktop */
@media (min-width: 768px) {
  .tabela-comparativa {
    min-width: 100%;
  }
}




/* Responsivo */
@media only screen and (min-width: 768px){

	/* padrao */
	.dest-content,
	.section-content,
	.nav-container,
	.footer-content,
	#header-content,
	.category-content {
		width: 688px;
	}

	/* footer */
	.footer {
		
	}

	.footer-menu ul li {
		width: 23%;
        float: left;
        margin-right: 5%;
	}

	.footer-menu ul li:last-child {
		width: 40%;
		margin-right: 0;
	}

	.footer-dev ul li {
		width: 48%;
		float: left;
	}

	.footer-dev ul li:nth-child(2) {
		float: right;
		text-align: right;
	}

	/* grid-list-one */
	.grid-list-one ul li {
		flex: 0 0 50%;
		max-width: 50%;
	}

	/* cta-footer */
	.cta-footer-content {
	    display: flex;
		justify-content: center;
    	align-items: center;
    	gap: 155px;

	}
	.cta-footer-text h3 {
		font-size: 1.75rem;
		text-align: center;
	}

	.cta-footer-text h3 span {
		display: block;
	}


	/* grid-list-two */
	.grid-list-two ul li {
		flex: 0 0 50%;
		max-width: 40%;
	}

	/* page-model-three */
	.page-model-three {
		margin: 0 auto;
		text-align: center;
	}

	.page-model-three .btn-page-chat {
		flex-direction: row;
        justify-content: center;
	}

	/* bullets-list */
	.bullets-list {
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}

	.bullets-list-left,
	.bullets-list-right {
		width: auto;
	}

	/* list-three-content */
	.list-three-content {
		max-width: 100%;
	}

	/* home-category */
	.home-category {
		padding-top: 80px;
	}
	.category-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .page-category-text {
        width: 50%;
        text-align: left;
    }

    .page-category-figure {
        width: 50%;
        text-align: right;
    }

    .page-category-figure img {
        max-width: 100%;
		width: 550px !important;
        height: auto;
    }

	/* page-single */
	.single-thumbnail img {
		width: 500px;
	}


}

@media only screen and (min-width: 990px){

	/* padrao */
	.dest-content,
	.nav-container,
	.section-content,
	.footer-content,
	.cta-footer-content,
	#header-content,
	.category-content {
		width: 940px;
	}

	/* home-dest */
	.home-bullets {
        flex-direction: row;
        justify-content: center;
    }

	.home-dest-text h1 {
		font-size: 3.5rem;
	}

	.home-dest-text h1 span:nth-child(2) {
		margin-top: 25px;
		font-size: 2.5rem;
	}

	.home-dest-text p {
		width: 890px;
    	margin: 0 auto;
	}

	/* section-comm */

	.section-comm {

	}

	.comm-text {
		width: 50%;
		float: right;
	}

	.comm-img {
		width: 46%;
		float: left;
	}

	.content-title {
		text-align: left;
	}

	.btn-action {
		position: absolute;
		display: flex;
	}

	.comm-img-content,
	.comm-img-content img {
		width: 370px;
	}

	/* section-funil */
	.funil-inform .comm-text {
		float: left;
	}

	.funil-inform .comm-img {
		float: right;
	}

	/* section-contact */
	.home-contact p {
		width: 890px;
		margin: 0 auto;
		margin-bottom: 60px;
	}

	/* section-faq */
	.section-faq .section-content .content-title p {
		width: 890px;
        margin: 0 auto;
        margin-bottom: 40px;
	}

	/* PAGE PADRAO - CSS */

	/* grid-left */
	.section-grid-left,
	.section-grid-right {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        display: flex;
        gap: 40px;
    }

    .grid-left-text,
	.grid-right-img {
        flex: 1;
        max-width: 50%;
        padding-left: 60px;
    }


    .grid-left-img,
	.grid-right-text {
        flex: 1;
        max-width: 50%;
        justify-content: flex-end;
        padding-left: 0;
    }

    .grid-left-img img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

	.grid-left-img-500 img {
		max-width: 500px;
	}

	/* section-grid-right */
	.grid-right-text {
		order: 1;
	}

	/* page-title-center */

	.page-title-center {
		width: 700px;
		margin: 0 auto;
		margin-bottom: 40px;
	}

	/* grid-list-one */
	.grid-list-one ul li {
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
	}


	/* page-model-one */
	.page-model-one {
		flex-direction: row;
        justify-content: space-between;
        align-items: center;
        display: flex;
        gap: 40px;
		text-align: left;
	}

	.page-one-text h1,
	.page-two-text h1 {
		text-align: left;
	}

	.page-one-text p,
	.page-two-text p {
		text-align: left;	
	}

	.btn-page-chat {
    	flex-direction: row;
	}

	.page-one-figure img,
	.page-two-figure img {
		width: 440px;
	}

	/* page-two-text */
	.page-two-figure {
		order: 1;
	}

	.page-two-text {
		order: 2;
	}


	/* grid-list-two */
	.grid-list-two ul li {
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
	}

	/* home-category */
	.category-list ul {
        grid-template-columns: repeat(3, 1fr);
    }

	/* page-single */
	.page-single-text {
		width: 800px;
	}

	.single-thumbnail img {
		width: 730px;
	}

}

@media only screen and (min-width: 1199px){

	/* padrao */
	.dest-content,
	.nav-container,
	.section-content,
	.footer-content,
	.cta-footer-content,
	#header-content,
	.category-content {
		width: 1170px;
	}

	/* grid-list-one */
	.grid-list-one ul li {
		flex: 0 0 25%;
		max-width: 23%;
	}

	/* grid-list-two */
	.grid-list-two ul li {
        flex: 0 0 24.3333%;
	}

	/* list-three-content */
	.grid-list-three ul li {
        flex: 0 0 36.3333%;
    }

}

