/* --------Font--------------- */

/* font 1 */

.lexend-<uniquifier> {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


/* font 2 */

.manrope-<uniquifier> {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/* ------Common-Css------------- */
.logo-header img{
    filter: brightness(0) invert(1);
    opacity: 0.8;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}
.hero-stats-item {
    text-align: center;
}
.hero-stats-item .number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.hero-stats-item .label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}
html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--body-text);
    background: var(--secondary) !important;
    font-variant-ligatures: none;
}

.row_am {
    padding: 50px 0;
}


.page_wrapper {
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primery);
    transition: .4s all;
}

ul,
li {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

button:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

.white_text p,
.white_text .section_title h2,
.white_text span,
.white_text h3,
.white_text h4 {
    color: var(--white);
}


.section_title {
    text-align: center;
}

.section_title p {
    padding: 0 250px;
    font-size: 18px;
}
.section_title.white_text h2{
    font-size: 44px;
}
.section_title.white_text h2 span{
    color: #FFF1C3
}
.section_title.white_text h2,
.section_title.white_text p {
    color: var(--white);
}
.bg-icon{
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.title_badge {
    display: inline-block;
    padding: 2px 18px;
    border-radius: 100px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
}


/* purple button */
.btn {
    font-weight: 700;
}


/* light button */

.btn_bottom {
    z-index: 1;
    border: 1px solid var(--primery);
    border-radius: 100px;
    position: absolute;
    top: -8px;
    left: 8px;
    right: -12px;
    transform: translate(-0.52em, 0.52em);
    width: 100%;
    height: 100%;
}


/* slider controls */
.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.owl-carousel .owl-dots button {
    display: block;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid var(--primery);
    border-radius: 15px;
    margin: 0 5px;
}

.owl-carousel .owl-dots button.active {
    background: var(--primery);
}

.container.container-sm {
    max-width: 900px;
}

@media screen and (min-width:1440px) {
    .container {
        max-width: 1320px;
    }
}

/* -------------Preloader-Css-Start-------------- */

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(2 17 39 / 90%);
    z-index: 999999;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #005af9;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #000;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FFF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.spin_text {
    transform-origin: 50% 50% 0;
    transform: rotate(0deg);
    -webkit-animation: spin 15s linear infinite;
    -moz-animation: spin 15s linear infinite;
    animation: spin 15s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* ------Round Animation------- */
@keyframes spin {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --------Object-Moving-Animation-Css-Start----- */
.moving_animation {
    animation: moving_object 6s infinite linear;
}

.moving_position_animatin {
    position: relative;
    animation: moving_position_animatin 6s infinite linear;
    z-index: -1;
}


@keyframes moving_object {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes moving_position_animatin {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}


.no_bottom_padding {
    padding-bottom: 0 !important;
}

/* -----------Header-Css-Start------------------- */
/* header wraper */
header {
    position: absolute;
    width: 100%;
    z-index: 99999;
    transition: .4s all;
}

header.fix_style {
    position: fixed;
    top: 0;
    backdrop-filter: blur(8px);
    background: rgb(255 241 195);
    padding: 0;
    transition: none;
    opacity: 0;
    pointer-events: none;
}

header.fixed {
   pointer-events: all;
   opacity: 1;
   transition: .4s all;
}

header.fixed .navbar {
    padding: 0;
}
.fix_style.fixed .navbar-brand img{
    width: 100px;
}
/* navigation bar */
.navbar {
    padding: 0;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 30px 12px;
    font-weight: 600;
    transition: .4s all;
    color: var(--black);
}


.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--primery);
}

.navbar-expand-lg .navbar-nav .nav-item .btn_block {
    margin-left: 150px;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn {
    color: var(--white);
    background: var(--primery-gradient);
    font-size: 16px;
    padding: 9px 40px;
    border-radius: 8px;
    position: relative;
    transition: .4s all;
    z-index: 2;
    overflow: hidden;
    border: solid 1px var(--primery);
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: var(--white);
    border-radius: 8px;
    transition: .6s all;
    z-index: -1;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn:hover::before {
    width: 100%;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn:hover {
    color: var(--dark);
    border: solid 1px var(--primery);
}

.navbar-brand img {
    width: 210px;
}

.navbar-brand h3 {
    color: var(--primery);
    font-weight: 800;
    font-size: 34px;
    margin: 0;
}

/* navigation bar dropdown */
.navbar-expand-lg .navbar-nav .has_dropdown {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 10px 10px 0 0;
    transition: .4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
    position: relative;
    right: 8px;
    top: 2px;
    color: var(--black);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
    position: absolute;
    top: 100%;
    background: var(--white);
    border-radius: 10px;
    min-width: 210px;
    max-width: 230px;
    margin-top: -10px;
    transition: .4s all;
    opacity: 0;
    pointer-events: none;
    border: 1px solid var(--border);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
    margin-left: 0;
    padding: 15px 20px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
    font-size: 15px;
    position: relative;
    transition: .4s all;
    line-height: 35px;
    font-weight: 600;
    color: var(--black);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover {
    color: var(--primery);
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover>a,
.navbar-expand-lg .navbar-nav .has_dropdown:hover>.drp_btn {
    color: var(--primery);
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
    opacity: 1;
    pointer-events: all;
    margin-top: 1px;
}

/* navigation toggle menu */
.toggle-wrap {
    padding: 10px;
    position: relative;
    cursor: pointer;

    /*disable selection*/
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.toggle-bar {
    width: 25px;
    margin: 10px 0;
    position: relative;
    border-top: 4px solid var(--black);
    display: block;
}

.toggle-bar::before,
.toggle-bar::after {
    content: "";
    display: block;
    background: var(--black);
    height: 4px;
    width: 30px;
    position: absolute;
    top: -12px;
    right: 0px;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -ms-transform-origin: 13%;
    -webkit-transform-origin: 13%;
    transform-origin: 13%;
}

.white_header .toggle-bar,
.white_header .toggle-bar::before,
.white_header .toggle-bar::after {
    border-top: 4px solid var(--white);
}

.toggle-bar::after {
    top: 4px;
}

.toggle-wrap.active .toggle-bar {
    border-top: 6px solid transparent;
}

.toggle-wrap.active .toggle-bar::before {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.toggle-wrap.active .toggle-bar::after {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/* ---------Hero-Slider-Css-Start------------------ */
/* hero slider wraper */
.banner_section {
    /*margin-top: 70px;*/
    padding-top: 100px;
    padding-bottom: 150px;
    position: relative;
    overflow: hidden;
}


.banner_section .container {
    position: relative;
}

.banner_section .row {
    align-items: center;
}


/* hero slider text */
.banner_section .banner_text {
    padding-right: 10px;
}

.banner_section .banner_text .type-wrap {
    padding: 0 0 10px 5px;
}

.banner_section .banner_text p {
    font-size: 18px;
    padding: 0;
}


.banner_section .banner_text .trial_txt {
    text-align: center;
    padding:0 0 10px 0;
    display: block;
    margin-top: 20px;
}
.hero-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    letter-spacing: 0.3px;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

/* hero slider users */
.banner_section .used_app {
    margin: 35px 0;
    display: flex;
    align-items: center;
}
.ms-0{
    margin-left: 0px !important;
}
.banner_section .used_app ul {
    display: flex;
    align-items: center;
    margin: 0 10px 0 0;
}

.banner_section .used_app ul li:not(:first-child) {
    margin-left: -20px;
}

.banner_section .used_app span {
    font-size: 14px;
    font-weight: normal;
    line-height: 19px;
    margin-bottom: 0;
}

.banner_section .used_app span .icofont-star{
    color: #fc9400;
}

/* hero slider images */
.banner_section .banner_slider {
    display: flex;
    position: relative;
}


.banner_section .banner_slider .left_icon {
    position: absolute;
    left: 70px;
    bottom: 150px;
    z-index: 9999;
}

.banner_section .banner_slider .right_icon {
    position: absolute;
    right: 60px;
    top: -10px;
}

/* hero slider mobile frame */
.banner_section .banner_slider .slider_frame {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 300px;
}

.banner_section .banner_slider #frmae_slider {
    width: 280px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 40px;
}

.banner_section .banner_slider #frmae_slider::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 5px;
    background: #fff;
    width: 100%;
    height: 90.5%;
    border-radius: 23px;
}


/* hero slider control dots */
.banner_section .owl-dots {
    margin-top: 40px;
}

.owl-carousel .owl-item img {
    max-width: 100%;
    width: auto;
}


/* hero static image */

.banner_section .hero_img {
    text-align: center;
    width: 100%;
}

.banner_section .hero_img img {
    max-width: 100%;
}

.hero_bg {
  position: absolute;
  right: 0;
  top: 0;
}


/* -----Typing Text------- */
.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* --------- USP section ---------- */
.usp_section{
    background: var(--black);
    padding: 70px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.usp_section .usp_box{
    display: flex; 
    align-content:center;
    color: #fff;
    position: relative;
    border: solid 1px rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
}

.usp_section .usp_box:hover{
    border-color: var(--white);
    transition: all ease-in-out .3s;
}


.usp_section .col-md-3:last-child .usp_box:after{
    display: none;
}

.usp_section .usp_box .usp_icon{
    position: absolute;
    right: 10px;
    top: 20px;
}

.usp_section .usp_box span{
    font-family: "Lexend", sans-serif;
    font-size: 35px;
    font-weight: 700;
}

.usp_section .usp_text{
    line-height: 1.4em;
    padding-top: 35px;
    text-align: left;
}

.usp_section .usp_text p {
    margin-bottom: 0;
}

.blure_shape {
    width: 350px;
    height: 350px;
    border-radius: 100%;
    filter: blur(180px);
    position: absolute;
}

.blure_shape.bs_1 {
    left: 250px;
    bottom: -200px;
}

.blure_shape.bs_2 {
    right: 250px;
    top: -250px;
}


/* how it works video model   */

/*video*/
.video-section {
  background: #0d0f12;
  font-family: 'Montserrat', sans-serif;
  padding-bottom: 70px;
}

.video-card-container {
  background: rgba(22, 27, 34, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  min-height: 520px;
}

/* --- LISTA DA ESQUERDA --- */
.video-sidebar {
  background: linear-gradient(180deg, rgba(15, 18, 24, 0.95) 0%, rgba(10, 12, 16, 0.98) 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  padding: 24px;
  height: 520px;
}

.video-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.video-sidebar-title {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin: 0;
}

.video-count-badge {
  background: linear-gradient(135deg, #ff0055, #ff5000);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.video-list {
  flex: 1;
  overflow-y: auto;
  padding-right: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Scrollbar Fina e Discreta */
.video-list::-webkit-scrollbar {
  width: 4px;
}
.video-list::-webkit-scrollbar-track {
  background: transparent;
}
.video-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}
.video-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* --- ITEM DA LISTA (CARDS) --- */
.video-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.video-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.video-item.active {
  background: linear-gradient(90deg, rgba(255, 0, 85, 0.15) 0%, rgba(255, 80, 0, 0.05) 100%);
  border-color: #ff0055;
  transform: translateX(6px);
}

/* Preview / Thumbnail com Overlay de Play */
.video-thumb-wrapper {
  position: relative;
  width: 70px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-item:hover .video-thumb-img,
.video-item.active .video-thumb-img {
  opacity: 1;
  transform: scale(1.08);
}

.play-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-item.active .play-icon-overlay {
  background: #ff0055;
  box-shadow: 0 0 12px rgba(255, 0, 85, 0.6);
}

.play-icon-overlay svg {
  width: 10px;
  height: 10px;
  fill: #fff;
  margin-left: 1px;
}

/* Título */
.video-title {
  color: #c5c8d0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.video-item:hover .video-title {
  color: #ffffff;
}

.video-item.active .video-title {
  color: #ffffff;
  font-weight: 700;
}

/* --- PLAYER DA DIREITA --- */
.video-player-wrapper {
  position: relative;
  height: 520px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-player-iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/*video*/


.modal {
    z-index: 999999;
}

.modal-backdrop.show {
    z-index: 99999;
    opacity: .7;
}

.youtube-video .modal-dialog {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    padding: 0 15px;
    height: 100%;
    max-width: 1240px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#video-container {
    position: relative;
    padding-bottom: 50%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

iframe#youtubevideo {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.youtube-video .modal-footer {
    border: none;
    text-align: center;
    display: block;
    padding: 0;
}

.youtube-video .modal-content {
    background: none !important;
    border: none;
}

#close-video {
    color: #fff;
    font-size: 30px;
}


/* ---------- text List Flow Css Start ------------- */

.text_list_section {
    margin-top: -40px;
    overflow: hidden;
}

.text_list_section .slider_block {
    background: var(--black);
    padding: 20px 0;
    transform: rotate(-1.5deg);
    /* pointer-events: none; */
    width: 100%;
    overflow-x: hidden;
}

.text_list_section .down_fix {
    transform: rotate(-5deg);
    position: relative;
    bottom: -30px;
    z-index: 9;
}


.text_list_section.rotet_down {
    transform: rotate(0.5deg);
}

.text_list_section .owl-stage,
.text_list_section .owl-stage-outer,
.textFlow_list .owl-stage,
.textFlow_list .owl-stage-outer {
    height: 55px;
}

.text_block {
    display: flex;
    align-items: center;
}

.text_block span {
    color: var(--white);
    font-size: 50px;
    font-family: var(--font-bebas);
    font-weight: 700;
    line-height: 1;
}

.text_block .mark_star {
    margin: 0 60px;
    font-family: 'Playball', cursive;
}



/* ---------- Why use New Section start------ */

/* why new section wraper */
.why_new_section .why_new_section_inner {
    max-width: 1370px;
    margin: 0 auto;
    border-radius: 40px;
    position: relative;
    padding: 40px 0 90px 0;
    align-items: center;
}

.why_new_section .why_new_section_inner .dtat_box {
    position: relative;
    display: flex;
    padding: 40px 0 0 0;
    align-items: center;
}

.why_new_section .why_new_section_inner .why_new_left_data {
    position: relative;
    padding: 0 40px 0 0;
}

.why_new_section .why_new_section_inner .why_new_left_data .why_data_block {
    border-radius: 20px;
    padding: 20px;
    display: flex;
    text-align: left;
    margin-bottom: 15px;
    gap: 15px;
}

.why_new_section .why_new_section_inner .why_new_left_data .why_data_block:hover {
    transition: all ease-in-out .3s;
}

.why_new_section .why_new_section_inner .why_new_left_data .why_data_block:last-child {
    margin-bottom: 0;
}

.why_new_section .why_new_section_inner .why_new_left_data .why_data_block .icon {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center
}
.why_new_section .why_new_section_inner .why_new_left_data .why_data_block .number{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 10px;
}
.why_new_section .why_new_section_inner .why_new_left_data .why_data_block .text p {
    margin-bottom: 0;
}
.why_new_section.bg-white::after{
    content: '';
    position: absolute;
    top: -135px;
    left: 0;
    background: #FFF;
    width: 100%;
    height: 150px;
    z-index: 0;
}

/* why new section image */
.why_us_new_img::before{
    content:'';
    background: #FFF;
    position: absolute;
    left: 0;
    top: 0;
    height: 95.8%;
    width: 52px;
}
.why_us_new_img::after{
    content:'';
    background: #FFF;
    position: absolute;
    right: 0;
    top: 0;
    height: 95.8%;
    width: 152px;
}
.why_new_section .why_new_section_inner .why_us_new_img {
    position: relative;
}

.why_new_section .why_new_section_inner .why_us_new_img img {
    max-width: 100%;
    max-width: 560px;
}

/* ------------Service App Section Css------------ */
.service_section {
    position: relative;
}

.service_section .service_blocks {
    padding: 50px 0;
    align-items: center;
}

.service_section .service_blocks .img img {
    max-width: 100%;
    border-radius: 20px;
}

.service_section .service_text {
    padding-right: 50px;
}

.service_section .service_text.right_side {
    padding-left: 50px;
    padding-right: 0;
}

.service_section .service_text h3 {
    margin: 15px 0 25px 0;
}

.service_section .service_text p {
    padding-right: 100px;
}

.service_section .service_text .text_badge {
    font-size: 14px;
    color: var(--primery);
    margin: 25px 0 0 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.service_section .service_text .listing_block li {
    display: flex;
    gap: 15px;
}

.service_section .service_text .listing_block li .icon span {
    display: block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    color: var(--white);
    background: var(--dark);
    border-radius: 100px;
    font-size: 8px;
    margin-top: 3px;
}

.service_section .service_text .listing_block li .text {
    width: calc(100% - 50px);
}

.service_section .service_text .feature_list li {
    display: flex;
    align-items: start;
    gap: 5px;
}

.service_section .service_text .feature_list li .icon span {
    color: var(--primery);
    font-size: 18px;
}

.service_section .service_text .feature_list li p {
    margin: 0;
    padding-top: 2px;
}

/* service section ui list */

.service_section .service_text .design_block li {
    position: relative;
    margin-bottom: 10px;
    color: #FFF;
}

.service_section .service_text .design_block li h6 {
    margin-bottom: 0px;
    font-size: 0.938rem;
}

.service_section .service_text .design_block li p {
    margin-bottom: 0;
}

.service_section .service_text .btn {
    text-transform: capitalize;
    font-weight: 700;
}

/* Service Images Css Start  */
.service_blocks .inner_block {
    position: relative;
    text-align: center;
}

.service_blocks .inner_block .img {
    position: relative;
}




/* -------------ctr Section Css Start------------- */

.ctr_app_btn_block {
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    text-align: center;
}
/* black version on hover */

.dishes_section .ctr_app_btn_block .app_btn li a:hover {
    background: var(--black);
    transition: .4s all;
}

/* --------- Advanced key features Section Css Start---------- */

.advance_feature_section .title_badge {
    color: var(--primery);
}

.advance_feature_section .af_innner {
    margin: 0 auto;
    padding: 100px 0 150px 0;
    position: relative;
}
.advance_feature_section .af_innner{
    padding: 0px 0 150px 0;
    position: relative;
}

.advance_feature_section .af_listing .row {
    align-items: flex-start;
}

.advance_feature_section .af_listing .listing_inner {
    position: relative;
    z-index: 100;
}

.advance_feature_section .af_listing .listing_inner .af_block:hover {
    border-color: var(--white);
    transition: .4s all;

}

.advance_feature_section .af_listing .listing_inner .af_block .text {
    text-align: center;
    padding: 15px;
    border-radius: 20px;
    border: solid 1px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    min-height: 120px;
}

.advance_feature_section .af_listing .af_block h5 {
    padding: 0;
    /* font-size: 18px; */
    text-align: start;
    margin: 0;
    color: var(--white);
}

.advance_feature_section .af_listing .af_block p {
    margin-bottom: 0px;
    text-align: start;
    font-size: 0.938rem;
}

.advance_feature_section .device {
    margin: 0 auto;
    text-align: center;
    margin-top: -100px;
    z-index: 1;
    position: relative;
}

.advance_feature_section .device img {
    max-width: 100%;
    filter: brightness(1.25) contrast(1.12) saturate(1.3);
}


.advance_feature_section .blure_shape.bs_1 {
    left: 0;
    bottom: 100px;
}

.advance_feature_section .blure_shape.bs_2 {
    right: -120px;
    top: 70px;
}



/* -------------Review Section Css Start-------------- */
.review_section {
    position: relative;
}

.review_section .positive_inner {
    padding: 50px 0 0 0;
    border-bottom: 1px solid var(--greay);
}

.review_section .positive_inner .row {
    align-items: flex-start;
}

.review_section .positive_inner .row .sticky-top {
    top: 30px;
}

.review_section .google_rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.review_section .google_rating .star {
    display: flex;
    align-items: center;
}

.review_section .google_rating .star span,
.review_section .review_side .review_block .coustomer_info .star span {
    color: #fc9400;
}

.review_section .google_rating p {
    margin: 0;
    font-weight: 700;
}

.review_section .google_rating p img {
    height: 16px;
    nav-left: 5px;
}

.review_section .user_review {
    margin-bottom: 60px;
}

.review_section .user_review p {
    font-weight: 700;
}

.review_section .user_review p a {
    color: var(--primery);
}

.review_section .review_side .review_block {
    background: var(--white);
    border: solid 1px var(--border);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 30px;
    box-shadow: 0px 8px 30px var(--shadow);
}

.review_section .review_side .review_block .coustomer_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 0 0;
}

.review_section .review_block .star {
    width: 100px;
    display: flex;
    justify-content: left;
    color: #fc9400;
    margin-bottom: 15px;
}

.review_section .coustomer_info .quote {
    width: 100px;
    display: flex;
    justify-content: end;
    color: var(--secondary);
    font-size: 40px;
}

.review_section .coustomer_info .avtar {
    display: flex;
    align-items: center;
    gap: 15px;
    width: calc(100% - 120px);
}

.review_section .coustomer_info .avtar img {
    width: 80px;
    aspect-ratio: 1/1;
    border-radius: 150px;
}

.review_section .coustomer_info .avtar .text {
    width: calc(100% - 100px);
    text-align: left;
}

.review_section .coustomer_info .avtar .text h6{
    margin-bottom: 0px;
}

.review_section .coustomer_info .avtar .text h3 {
    margin-bottom: 0;
}

.review_section .coustomer_info .avtar .text span {
    font-size: 14px;
}

.review_section .review_block p {
    margin: 0;
}

/* ------------inner page review Section Css Start---------- */

.review_section.page_ban {
    position: relative;
}

.review_section .review_side.innerpage_block {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}

.review_section .review_side.innerpage_block .review_block {
    width: 48%;
}

.review_section .positive_inner.in_page {
    border-bottom: none;
    padding-top: 30px;
}

.review_section.page_ban .google_rating {
    display: block;
}

.review_section.page_ban .google_rating .star {
    display: block;
}

.review_section.page_ban .google_rating .rate_link {
    color: var(--primery);
    font-weight: normal;
}


/* ------------- center button section ------------- */

.ctr_cta {
    margin: 0 auto;
    margin-top: 50px;
    text-align: center;
}




/* ------  CTA section ------------- */

/* ==========================================================
   SEÇÃO CTA / CONTATO - DARK PREMIUM (#005af9)
   ========================================================== */
.cta-pro-section {
    background-color: #080a0f;
    font-family: 'Montserrat', 'Inter', sans-serif;
    padding: 70px 0;
    color: #ffffff;
    position: relative;
    border-top: 1px solid rgb(255 255 255 / 10%);
}

/* Esferas de iluminação (Glows de Fundo) */
.cta-glow-1 {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 450px;
  height: 450px;
  background: #005af9;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.25;
  pointer-events: none;
}

.cta-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: #005af9;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  pointer-events: none;
}

/* Card Principal em Glassmorphism */
.cta-glass-card {
  background: linear-gradient(135deg, rgba(20, 24, 33, 0.85) 0%, rgba(12, 15, 22, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  border-radius: 32px;
  padding: 56px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Badge de Atendimento Online */
.cta-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(87, 63, 208, 0.12);
  border: 1px solid rgba(87, 63, 208, 0.3);
  color: #a393ff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-subtitle {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* Seletor de Assunto Rápido (Chips Interativos) */
.cta-topics-label {
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-topics-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.topic-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.topic-chip:hover {
  background: rgba(87, 63, 208, 0.2);
  border-color: rgba(87, 63, 208, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

.topic-chip.active {
  background: #005af9;
  border-color: #005af9;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(87, 63, 208, 0.4);
}

/* Cards de Canais de Contato */
.contact-channel-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-channel-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(87, 63, 208, 0.4);
  transform: translateY(-4px);
}

.channel-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(87, 63, 208, 0.15);
  border: 1px solid rgba(87, 63, 208, 0.3);
  color: #a393ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-details h4 {
  font-size: 14px;
  color: #94a3b8;
  margin: 0 0 4px 0;
  font-weight: 500;
}

.channel-details p {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* Botões de Ação */
.btn-channel-action {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-channel-action:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-channel-primary {
  background: #005af9;
  border-color: #005af9;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(87, 63, 208, 0.35);
}

.btn-channel-primary:hover {
  background: #452fb3;
  border-color: #452fb3;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(87, 63, 208, 0.5);
}

/* Notification Toast para Cópia Rápida */
.cta-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #005af9;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 9999;
  pointer-events: none;
}

.cta-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ------Footer-Css-Start-------------- */
/* footer wraper */
footer {
    position: relative;
}

footer .top_footer {
    background: var(--black);
    padding: 200px 0 00px 0;
    position: relative;
    overflow: hidden;
}


/* footer logo */
footer .top_footer .logo {
    margin-bottom: 40px;
}

footer .top_footer .logo img {
    width: 210PX;
    border-radius: 8px;
}

footer .top_footer .abt_side li {
    padding: 0 0 20px 0;
}

footer .top_footer .abt_side p {
    padding: 0 80px 20px 0;
}

footer .news_letter form .form-group {
    max-width: 430px;
    position: relative;
}

footer .news_letter form .form-group .form-control {
    width: 100%;
    background: transparent;
    border: 1px solid #005af9;
    border-radius: 10px;
    min-height: 60px;
    color: var(--white);
    font-weight: 500;
}

footer .news_letter form .form-group .form-control::placeholder {
    color: #005af9;
}

footer .news_letter form .form-group button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #005af9;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    font-size: 20px;
    transition: .4s all;
}

footer .news_letter form .form-group button:hover {
    background: var(--white);
    color: #005af9;
}

footer .news_letter form .note {
    font-size: 14px;
}


/* footer heading h3 */
footer h5 {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    padding-left: 10px;
    line-height: .8;
}

footer h5::before {
    content: "";
    width: 3px;
    height: 18px;
    background: #005af9;
    position: absolute;
    margin-left: -10px;
}

footer .links ul li a {
    display: block;
    margin-bottom: 16px;
    font-size: 16px;
}

footer .links ul li a:hover {
    color: var(--primery);
}

/* footer last */
footer .bottom_footer {
    background: rgba(255, 255, 255, 0.1);
    margin-top: 80px;
    padding: 30px 0 20px 0;
    position: relative;
}

footer .bottom_footer p {
    margin-bottom: 0;
    font-size: 14px;
}

footer .bottom_footer .developer_text {
    text-align: right;
}

footer .bottom_footer .developer_text a {
    text-decoration: underline;
}


/* footer elements animation */

.top_footer .element .element1, .element2 {
    position: absolute;
}

.top_footer .element .element1 {
    left: 120px;
    top: 200px;
    animation: mymove 15s infinite;
}

.top_footer .element .element2 {
    right: 70px;
    bottom: 200px;
    animation: mymove 10s infinite;
}

@keyframes mymove {
  50% {transform: rotate(180deg);}
}


/* footer bg color glow */

.top_footer .blure_shape.bs_1 {
    left: 250px;
    top: -200px;
}

.top_footer .blure_shape.bs_2 {
    right: 250px;
    bottom: -250px;
    top: inherit;
}



/* footer go top button */
.go_top {
    position: fixed;
    right: 30px;
    bottom: 110px;
    cursor: pointer;
    transition: .4s all;
    display: none;
    z-index: 100;
}

.go_top span {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primery);
    color: var(--white);
    border-radius: 150px;
    font-size: 25px;
}

.go_top:hover {
    bottom: 120px;
}




/* ===============About Page Css Start================== */


/* Page Banner Css Start */
.bred_crumb {
    background: var(--secondary-dark);
    min-height:400px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
    overflow: hidden;
}

.bred_crumb .bred_text {
    text-align: center;
    z-index: 1000;
    position: relative;
    padding-top: 25px;
}

.bred_crumb .bred_text h1 {
    color: var(--primery);
}

.bred_crumb .bred_text h1 + p {
    color: var(--secondary);
    margin-top: -5px;
}

.bred_crumb .bred_text ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bred_crumb .bred_text ul li {
    margin: 0 5px;
}

.bred_crumb .bred_text ul li a, .bred_crumb .bred_text ul li span {
    color: var(--black);
    font-size: 14px;
    transition: .4s all;
}

.bred_crumb .bred_text ul li a:hover {
    text-decoration: underline;
}



/* Inner Page banner shape animation */
.bred_crumb .banner_shape1, .banner_shape2, .banner_shape3 { 
    position: absolute; }

.bred_crumb .banner_shape1 {
    bottom: -20px;
    left: 0;
}

.bred_crumb .banner_shape2 {
    bottom: 10%;
    right: 0;
    /*animation: mymove 5s infinite;*/
}

.bred_crumb .banner_shape3 {
    top: 350px;
    right: 20%;
}


/* ===============About Page Css Start================== */
.about_us_section {
    padding-top: 50px;
    position: relative;
}

.about_us_section .section_title {
    text-align: left;
}

.about_us_section .section_title p {
    padding: 0 300px 0 0;
    margin-top: 20px;
}

.about_us_section #about_slider .abt_slides img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
}

.about_us_section .abt_text h2 {
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -1px;
    max-width: 375px;
}

.about_us_section .abt_text h2 span {
    color: var(--primery);
}



/* ===============Why Choose Us Section Css Start================== */
.why_choose {
    position: relative;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.why_choose .why_choose_inner {
    max-width: 1370px;
    margin: 0 auto;
    background:var(--black);
    padding: 100px 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.why_choose .why_choose_inner .title_badge {
    color: var(--primery);
}


.why_choose .why_choose_inner .company_statistics ul {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    margin: 30px auto 0 auto;
}

.why_choose .why_choose_inner .company_statistics ul li {
    width: 25%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 4;
    padding: 30px;
    border: solid 1px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
}

.why_choose .why_choose_inner .company_statistics ul li:hover {
    border: solid 1px var(--white);
    transition: all ease-in-out .3s;
}

.why_choose .why_choose_inner .company_statistics ul li:not(:last-child) {
    margin-left: 30px;
}

.why_choose .why_choose_inner .company_statistics ul li p span {
    font-size: 35px;
    font-weight: 700;
    color: var(--secondary);
}

.why_choose .why_choose_inner .company_statistics ul li p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.why_choose .why_choose_inner .company_statistics .usp_img {
    margin: 0 0 20px 0;
}


/* ==============About Service Section Css Start============== */
.about_service .video_player {
    position: relative;
}

.about_service .video_player .play_icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.about_service .video_player .play_icon img {
    width: 128px;
    aspect-ratio: 1/1;
    opacity: 0.9;
}

.service_section.about_service .service_blocks {
    padding-top: 0;
    padding-bottom: 0;
}

.service_section.about_service .service_blocks .inner_block {
    background: none;
    border: none;
}

.service_section.about_service .service_blocks .service_text h2 {
        margin: 0 0 20px 0;
}

/* -----------Meet Our Team Section Css---------- */
.experts_team_section {
    margin-top: 50px;
    position: relative;
}


.experts_team_section .section_title {
    margin-bottom: 40px;
}

.experts_team_section .col-md-4 {
    padding-left: 25px;
    padding-right: 25px;
}

.experts_team_section .experts_box {
    position: relative;
    text-align: center;
    padding: 10px 10px 30px 10px;
    border-radius: 20px;
    transition: .4s all;
    background: var(--white);
    border: solid 1px var(--border);
    box-shadow: 0px 8px 30px var(--shadow);
}

.experts_team_section .experts_box img {
    margin-bottom: 30px;
    max-width: 100%;
    border-radius: 20px;
    border: solid 1px var(--border);
}

.experts_team_section .experts_box .text h6 {
    color: var(--black);
    transition: .4s all;
    margin: 0;
}

.experts_team_section .experts_box .text span {
    color: var(--black);
}

.experts_team_section .experts_box:hover {
    background: var(--primery);
}

.experts_team_section .experts_box:hover h6 {
    color: var(--white);
}

.experts_team_section .experts_box:hover span {
    color: var(--white);
}




/* ===============FAQ Section Css Start============ */

.faq_section .section_title {
    margin-bottom: 50px;
}

.faq_section .nav-tabs {
    justify-content: center;
    margin-bottom: 30px;
    border: none;
}

.faq_section .nav-tabs .nav-item.show .nav-link,
.faq_section .nav-tabs .nav-link.active,
.faq_section .nav-tabs .nav-link:hover,
.faq_section .nav-tabs .nav-link {
    border: none;
    margin: 0;
}

.faq_section .nav-tabs .nav-item {
    position: relative;
}

.faq_section .nav-tabs .nav-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: -1;
}

.faq_section .nav-tabs .nav-item button {
    background: #fff;
    padding: 10px 36px;
    border-radius: 10px;
    font-weight: 500;
}

.faq_section .nav-tabs .nav-item:first-child:before {
    border-radius: 10px 0 0 10px;
}

.faq_section .nav-tabs .nav-item:last-child:before {
    border-radius: 0 10px 10px 0;
}

.faq_section .nav-tabs .nav-item.show .nav-link,
.faq_section .nav-tabs .nav-link.active {
    background: var(--secondary);
    color: #fff;
}

.faq_section .accordion {
    margin-bottom: -20px;
}

.faq_section .card {
    border: none;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    border: solid 1px var(--border);
}

.faq_section .card .card-header {
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    
}

.faq_section .card .card-header button {
    width: 100%;
    text-align: left;
    color: var(--primery);
    text-decoration: none;
    padding: 0;
    font-weight: 700;
    position: relative;
    padding-right: 72px;
    font-size: 20px;
}

.faq_section .card .card-header button.collapsed {
    color: #000;
}

.faq_section .card .card-header button:focus {
    outline: none;
    box-shadow: none;
}

.faq_section .card .card-header button .icons i {
    position: absolute;
    right: 0;
    top: 4px;
    color: var(--dark);
}

.faq_section .card .card-header button.collapsed .icons .icofont-minus,
.faq_section .card .card-header button .icons .icofont-plus {
    display: none;
}

.faq_section .card .card-header button .icons .icofont-minus,
.faq_section .card .card-header button.collapsed .icons .icofont-plus {
    display: block;
}

.faq_section .card .card-body {
    padding-top: 0;
}

/* =============Our Resource Section=============== */
.our_resource {
    position: relative;
    padding: 80px 0 40px 0;
}

.our_resource .section_title {
    text-align: left;
}

.our_resource .mail_block {
    margin: 0 auto;
    background: var(--black);
    padding: 70px 60px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}


.our_resource .mail_block .text {
    position: relative;
    z-index: 2;
    text-align: center
}

.our_resource .mail_block .icon {
    display: block;
    margin-bottom: 20px;
}

.our_resource .mail_block h3 {
    font-size: 26px;
}

.our_resource .mail_block form .form-group {
    max-width: 100%;
    position: relative;
    margin-bottom: 5px;
}

.our_resource .mail_block form .form-group .form-control {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 10px;
    min-height: 60px;
    color: var(--black);
    font-weight: 500;
}

.our_resource .mail_block form .form-group button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--primery);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    font-size: 20px;
    transition: .4s all;
}

.our_resource .mail_block form .form-group button:hover {
    background: var(--white);
    color: var(--primery);
    border-color: var(--primery);
}

.our_resource .mail_block form .note {
    color: #7a7a7a;
    text-align: left;
    margin: 0;
}

/* ===========Articles Section Start===================== */
.articles_section {
    position: relative;
}

.articles_section .section_title {
    text-align: left;
}

.articles_section .section_title h2 {
    font-size: 35px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #cfcbc4;
}

.articles_section .filter_tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0 50px 0;
}

.articles_section .filter_tags li a {
    display: block;
    padding: 10px 22px;
    background: var(--white);
    border-radius: 10px;
    color: var(--greay);
    transition: .4s all;
}

.articles_section .filter_tags li a:hover,
.articles_section .filter_tags li a.active {
    background: var(--primery);
    color: var(--white);
}

.blog_listings .listing_block {
    display: flex;
    padding: 30px;
    border-radius: 20px;
    background: var(--white);
}

.blog_listings .listing_block:not(:last-child) {
    margin-bottom: 40px;
}

.blog_listings .listing_block .img {
    width: 350px;
}

.blog_listings .listing_block .img img {
    width: 100%;
    border-radius: 20px;
}

.blog_listings .listing_block .blog_text {
    width: calc(100% - 600px);
    padding: 0 15px 0 60px;
}

.blog_listings .listing_block .blog_text .tag {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    background: var(--light-primery);
    padding: 2px 18px;
    border-radius: 100px;
}

.blog_listings .listing_block .blog_text h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 25px 0;
}

.blog_listings .listing_block .blog_text h2 a {
    color: var(--black);
}

.blog_listings .listing_block .blog_text h2 a:hover {
    color: var(--primery);
}

.blog_listings .listing_block .blog_text a {
    font-weight: 700;
    color: var(--primery);
    transition: .4s all;
}

.blog_listings .listing_block .blog_text a:hover {
    color: var(--primery);
    text-decoration: underline;
}

.blog_listings .listing_block .authore_info {
    width: 250px;
}

.blog_listings .listing_block .authore_info {
    width: 250px;
}

.blog_listings .listing_block .authore_info .blog_info {
    display: flex;
    flex-wrap: wrap;
}

.blog_listings .listing_block .authore_info .blog_info li {
    position: relative;
    padding: 0 10px 0 15px;
    font-size: 15px;
}

.blog_listings .listing_block .authore_info .blog_info li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--black);
    border-radius: 10px;
    left: 0;
    position: absolute;
    top: calc(50% - 2.5px);
}

.blog_listings .listing_block .authore_info .avtar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.blog_listings .listing_block .authore_info .avtar img {
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 100px;
}

.blog_listings .listing_block .authore_info .avtar .text {
    width: calc(100% - 60px);
}

.blog_listings .listing_block .authore_info .avtar .text h3 {
    margin-bottom: 0;
    font-size: 18px;
}


.blog_listings .listing_block .authore_info .avtar .text span {
    font-size: 14px;
}

.pagination_block {
    padding: 0 15px;
    margin: 50px 0 0 0;
}

.pagination_block ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pagination_block ul li a {
    display: block;
    padding: 10px 15px;
    background: var(--white);
    color: var(--black);
    border-radius: 5px;
    transition: .4s all;
    line-height: 1;
}

.pagination_block ul li .prev,
.pagination_block ul li .next {
    padding: 10px 20px;
}

.pagination_block ul li a:hover,
.pagination_block ul li a.active {
    background: var(--primery);
    color: var(--white);
}

/* =============Blog Single Css Start==================== */

.page_wrapper.blog_dt {
    overflow-x: visible;
}

.blog_detail_section {
    position: relative;
    padding: 80px 0 50px 0;
    margin-top: -200px;
    z-index: 100;
}

.blog_detail_section .blog_block {
    background: var(--white);
    border: solid 1px var(--border);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0px 8px 30px var(--shadow);
}

.blog_head {
    margin-bottom: 35px;
}

.blog_head .tags_info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog_body .tags_info .tag {
    font-size: 14px;
    font-weight: 500;
    padding: 4px 20px;
    border-radius: 100px;
    color: var(--black);
    background: var(--light-primery);
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.blog_head .tags_info ul {
    display: flex;
    align-items: center;
}

.blog_head .tags_info ul li {
    position: relative;
    padding: 0 10px 0 15px;
    font-size: 15px;
}

.blog_head .tags_info ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--black);
    border-radius: 10px;
    left: 0;
    position: absolute;
    top: calc(50% - 2.5px);
}

.blog_head .tags_info ul li:first-child::before {
    content: inherit;
}

.blog_head .tags_info ul li:first-child {
    padding-left: 0px;
}

.blog_head h2 {
    margin: 15px 0 15px 0;
}

.blog_body .img {
    margin-top: 40px;
    margin-bottom: 40px;
}

.blog_body .img img {
    width: 100%;
    border-radius: 20px;
}

.blog_body .listings {
    padding-left: 30px;
    margin: 30px 0;
}

.blog_body .listings li {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.blog_body .listings li .icon {
    color: var(--primery);
}

.blog_body .listings li p {
    margin: 0;
}

.blog_body h4 {
    margin-bottom: 10px;
    margin-top: 30px;
}

.blog_body .yt_video {
    margin: 30px 0;
}

.blog_body .yt_video iframe {
    width: 100%;
    aspect-ratio: 1/0.5;
    border-radius: 20px;
}

.blog_body .highlight_text {
    padding: 50px;
    border-left: 5px solid var(--black);
    margin: 30px 0;
    background: var(--primery);
    border-radius: 20px;
}

.blog_body .highlight_text h6 {
    line-height: 1.5;
    color: var(--white);
}

/* comment section Css Start */

.comment_section .comment_block {
    background: var(--white);
    border: solid 1px var(--border);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0px 8px 30px var(--shadow);
}

.comment_section .section_title h3 {
    text-align: left;
}

.comment_section ul {
    margin-top: 30px;
}

.comment_section ul li {
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid var(--border);
}

.comment_section ul li:last-child {
    border-bottom: 1px solid var(--border);
}

.comment_section ul li.replay_comment {
    margin-left: 110px;
}

.comment_section ul li .authore_info {
    display: flex;
    align-items: center;
    width: 260px;
}

.comment_section ul li .authore_info .avtar {
    width: 88px;
    margin-right: 20px;
}

.comment_section ul li .authore_info .avtar img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 100%;
    object-fit: cover;
}

.comment_section ul li .authore_info .text {
    width: calc(100% - 108px);
}

.comment_section ul li .authore_info .text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-purple);
}

.comment_section ul li .authore_info .text span {
    font-size: 14px;
}

.comment_section ul li .comment {
    width: calc(100% - 310px);
    margin-left: 50px;
}

.comment_section ul li .comment p {
    margin-bottom: 0;
}

.comment_form_section .section_title {
    text-align: left;
}

.comment_form_section .section_title p {
    padding: 0;
}

.comment_form_section .comment_form_block {
    background: var(--white);
    border: solid 1px var(--border);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0px 8px 30px var(--shadow);
}

.comment_form_section form .form-group {
    margin-bottom: 30px;
}

.comment_form_section form .form-group .form-control {
    border-radius: 10px;
    border: 1px solid var(--border);
    color: var(--black);
    height: 60px;
    padding: 10px 20px;
}

.comment_form_section form .form-group .form-control::placeholder {
    color: var(--black);
}

.comment_form_section form .form-group textarea.form-control {
    min-height: 135px;
}

/* ==============Contact Us page Css Start==================== */

.contact_page_section .contact_inner {
    position: relative;
}

.contact_page_section .contact_form {
    width: 100%;
    padding: 50px 60px;
    border-radius: 20px;
    background: var(--white);
    border: solid 1px var(--border);
    box-shadow: 0px 8px 30px var(--shadow);
}

.contact_page_section .contact_form h2 {
    margin-bottom: 0;
}

.contact_page_section .contact_form form {
    margin-top: 30px;
}

.contact_page_section .contact_form form .form-group {
    margin-bottom: 20px;
}

.contact_page_section .contact_form form .form-group .form-control {
    height: 60px;
    padding: 5px 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
}


.contact_page_section .contact_form form .form-group .form-control:focus {
    box-shadow: none;
    border-color: var(--primery);
}

.contact_page_section .contact_form form .form-group textarea.form-control {
    height: 140px;
    padding-top: 15px;
}

.contact_page_section .contact_form form .term_check {
    display: flex;
    align-items: center;
}

.contact_page_section .contact_form form .term_check input {
    width: 17px;
    height: 17px;
    accent-color: var(--purple);
}

.contact_page_section .contact_form form .term_check label {
    font-size: 13px;
    margin-bottom: 0;
    margin-left: 7px;
}

.contact_page_section .contact_form form .form-group button {
    width: 240px;
    margin: 0 auto;
    display: block;
    margin-top: 10px;
    margin-bottom: 0;
}

.contact_page_section .contact_info .ticket_box {
    position: relative;
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    overflow: hidden;
    background: var(--white);
    border: solid 1px var(--border);
    box-shadow: 0px 8px 30px var(--shadow);
}

.contact_page_section .contact_info .ticket_box .pattern-rotate {
    position: absolute;
    top: -65%;
    right: -50%;
    /*transform: translateX(-50%);*/
}

.contact_page_section .contact_info .ticket_box .icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 100;
}

.contact_page_section .contact_info .ticket_box .icon img{
    width: 70px;
}

.contact_page_section .contact_info {
    width: 90%;
}

.contact_page_section .contact_info .section_title {
    text-align: left;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.contact_page_section .section_title p {
    padding: 0px;
}

.contact_page_section .contact_info .btn {
    margin: 10px 0 0 0;
}

.contact_page_section .contact_info .contact_info_list li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact_page_section .contact_info .contact_info_list li:last-child {
    margin-bottom: 0;
}

.contact_page_section .contact_info .contact_info_list li .img {
    width: 70px;
    margin-right: 20px;
}

.contact_page_section .contact_info .contact_info_list li .img img {
    max-width: 70px;
}


.contact_page_section .contact_info .contact_info_list li .text {
    width: calc(100% - 85px);
}

.contact_page_section .contact_info .contact_info_list li .text a {
    color: var(--black);
}

.contact_page_section .contact_info .contact_info_list li .text span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-purple);
}

.contact_page_section .contact_info .contact_info_list li .text p , 
.contact_page_section .contact_info .contact_info_list li .text a {margin: 0;}

.contact_page_section .contact_info .contact_info_list li .text a:hover {
    color: var(--dark-purple);
}

/* ===========Plans Start=============== */
.pricing-section {
  background-color: #ffffff;
  padding: 100px 0;
  font-family: 'Montserrat', sans-serif;
  color: #000000;
  position: relative;
}

.pricing-badge {
  background-color: rgba(87, 63, 208, 0.08);
  color: #005af9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 16px;
}

.pricing-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.pricing-subtitle {
  color: #555555;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- TOGGLE DE COBRANÇA (MENSAL / ANUAL) --- */
.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.toggle-label {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
}

.toggle-label.active {
  color: #005af9;
}

.discount-badge {
  background-color: #005af9;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 6px;
  text-transform: uppercase;
}

/* Switch Customizado */
.form-check-input.pricing-switch {
  width: 50px;
  height: 20px;
  background-color: #e0e0e0;
  border-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%20000000'/%3e%3c/svg%3e");
  cursor: pointer;
  transition: background-color 0.3s ease, background-position 0.3s ease;
}
.form-switch .form-check-input{
    margin-left: 0 !important;
}
.form-check-input.pricing-switch:checked {
  background-color: #005af9;
  border-color: #005af9;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e");
}

.form-check-input.pricing-switch:focus {
  box-shadow: 0 0 0 0.25rem rgba(87, 63, 208, 0.2);
}

/* --- CARDS DE PLANOS --- */
.plan-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(87, 63, 208, 0.4);
}

/* Card PRO (Destaque) */
.plan-card.popular {
  background: linear-gradient(180deg, #ffffff 0%, rgba(87, 63, 208, 0.03) 100%);
  border: 2px solid #005af9;
  box-shadow: 0 20px 40px rgba(87, 63, 208, 0.12);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #005af9;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(87, 63, 208, 0.3);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 8px;
}

.plan-description {
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
  min-height: 42px;
}

/* Preço */
.plan-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
}

.currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: #000000;
  line-height: 1;
  transition: all 0.3s ease;
}

.period {
  font-size: 14px;
  color: #777777;
  font-weight: 500;
}

/* Lista de Recursos */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-features li {
  font-size: 14px;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(87, 63, 208, 0.1);
  color: #005af9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

.feature-disabled {
  color: #aaa;
  text-decoration: line-through;
}

.feature-disabled .feature-icon {
  background-color: #f0f0f0;
  color: #aaa;
}

/* Botões */
.btn-plan {
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Botão Secundário (Plano Start e Premium) */
.btn-plan-outline {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}

.btn-plan-outline:hover {
  background-color: #000000;
  color: #ffffff;
}

/* Botão Primário (Plano Pro) */
.btn-plan-primary {
  background-color: #005af9;
  color: #ffffff;
  border: 2px solid #005af9;
  box-shadow: 0 8px 20px rgba(87, 63, 208, 0.25);
}

.btn-plan-primary:hover {
  background-color: #452fb3;
  border-color: #452fb3;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(87, 63, 208, 0.35);
}

/* ===========Plans End=============== */

/* ==========================================================
   SEÇÃO DE FAQ - DARK GLASS (#005af9)
   ========================================================== */
.faq-section {
  background-color: #080a0f;
  padding: 70px 0;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Esfera Glow de fundo */
.faq-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: #005af9;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.2;
  pointer-events: none;
}

.faq-badge {
  background: rgba(87, 63, 208, 0.15);
  border: 1px solid rgba(87, 63, 208, 0.3);
  color: #a393ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 16px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.faq-subtitle {
  color: #94a3b8;
  font-size: 1rem;
}

/* Card Fixo de Suporte Rápido (Coluna da Esquerda) */
.support-card {
  background: rgba(18, 22, 31, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 32px;
  position: sticky;
  top: 40px;
}

.support-icon {
  width: 48px;
  height: 48px;
  background: #005af9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(87, 63, 208, 0.3);
}

.support-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.support-text {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Accordion Customizado */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: rgba(18, 22, 31, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-card:hover {
  border-color: rgba(87, 63, 208, 0.4);
  background: rgba(18, 22, 31, 0.7);
}

.faq-card.active {
  border-color: #005af9;
  background: rgba(87, 63, 208, 0.08);
}

.faq-header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-card.active .faq-header {
  color: #ffffff;
}

/* Ícone de Toggle + Rotativo */
.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card.active .faq-toggle-icon {
  background: #005af9;
  border-color: #005af9;
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 24px 20px 24px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
  display: none; /* Controlado via JS */
}

/* Botão CTA Principal */
.btn-faq-cta {
  background: #005af9;
  color: #ffffff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(87, 63, 208, 0.3);
  transition: all 0.3s ease;
}

.btn-faq-cta:hover {
  background: #452fb3;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(87, 63, 208, 0.5);
}

/* ===========Services End=============== */
.services .tag{
    font-size: 14px;
    font-weight: 800;
    color: var(--secondary);
    background: var(--light-primery);
    padding: 3px 10px;
    border-radius: 100px;
    max-width: 160px;
}
.services .box-service h5{
    font-size: 22px;
}
.services .box-service .price h6{
    font-size: 24px;
    gap: 0px;
    font-weight: bold;
}
.services .list li{
    border-color: rgb(255 255 255 / 10%);
    font-size: 0.938rem;
    padding-bottom: 6px;
    margin-bottom: 6px;
}

.services .box-service{
    background: #393939;
    border: 2px solid rgb(255 255 255 / 40%);
    border-radius: 20px;
    width: 97%;
    margin: 0 auto;
}
.services{
    border: 2px solid #202020;
    border-radius: 15px;
}
.services::before{
    content: '';
    height: 4px;
    background: #E3D3CF;
    position: absolute;
    top: 0;
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
}
/* ===========Services End=============== */

/* ===========SignUp Section Css Start=============== */

.signup_section {
    padding: 75px 0;
}

.signup_section .top_part {
    padding-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.signup_section .top_part .back_btn {
    position: absolute;
    left: 0;
}

.signup_section .form_block {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    border: solid 1px var(--border);
}

.signup_section .form_block .form_side {
    width: 50%;
    text-align: left;
    padding: 15px 100px;
}

.signup_section .form_block .form_side .section_title {
    text-align: left;
    margin-bottom: 30px;
}


.signup_section .form_block .form_side .section_title p {
    font-weight: 500;
    padding: 0;
}

.signup_section .form_block .form_side form .form-control {
    border: none;
    background: var(--whitish);
    border-radius: 8px;
    padding: 23px 16px;
    border: solid 1px var(--border);
}

.signup_section .form_block .form_side form .form-group {
    margin-bottom: 20px;
}

.signup_section .form_block .form_side form .form-control::placeholder {
    color: var(--black);
    font-weight: 500;
}

.signup_section .form_block .form_side form .form-control:focus {
    box-shadow: none;
    color: var(--black);
    border-color: var(--primery);
    font-weight: 500;
}

.signup_section .form_block .form_side form .forgate_check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 30px;
}

.signup_section .form_block .form_side form .forgate_check a {
    text-decoration: underline;
    font-weight: 500;
    font-size: 14px;
}

.signup_section .form_block .form_side form .forgate_check .coustome_checkbox {
    padding-top: 0;
}

.signup_section .form_block .form_side form .forgate_check .coustome_checkbox label {
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
}

.signup_section .form_block .form_side form .forgate_check .checkmark {
    top: 5px;
    border-radius: 4px;
}

.signup_section .form_block .coustome_checkbox input:checked~.checkmark {
    background: var(--primery);
    border-color: var(--primery);
}

.signup_section .form_block .form_side .btn_block {
    width: 100%;
}

.signup_section .form_block .form_side .google_btn {
    width: 100%;
    text-align: center;
    border-radius: 50px;
    color: var(--black);
    border: 1px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 20px 0 30px 0;
}

.signup_section .form_block .form_side .google_btn img {
    height: 20px;
    margin-right: 10px;
}

.signup_section .form_block .form_side .google_btn:hover {
    border-color: var(--primery);
}

.signup_section .form_side .sign_in_here p {
    margin: 0;
    color: #999ca6;
    font-weight: 500;
    font-size: 14px;
}

.signup_section .form_side .sign_in_here p a {
    color: var(--primery);
    text-decoration: underline;
}

.signup_section .form_side .sign_in_here p a:hover {
    color: var(--black);
}

.signup_section .form_block .side_screen {
    width: 50%;
    background: var(--black);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    border-radius: 0 22px 22px 0;
    overflow: hidden;
    position: relative;
}


.signup_section .form_block .side_screen .left_icon {
    position: absolute;
    left: 10px;
    bottom: 150px;
    z-index: 9999;
}

.signup_section .form_block .side_screen .right_icon {
    position: absolute;
    right: 50px;
    top: 120px;
    z-index: 10;
}

.signup_section .form_block .side_screen .left_icon img,
.signup_section .form_block .side_screen .right_icon img {
    /*filter: invert(1);*/
}

.signup_section .form_block .side_screen .scrren {
    text-align: center;
    position: relative;
    z-index: 9;
}

.signup_section .form_block .side_screen .scrren img {
    max-width: 100%;
}

      .tpl-modal-sec, .video-section, .testimonials-section{
        background-color: #080a0f !important;
      }
      .tpl-modal-sec {        
        padding: 70px 0 !important;
        color: #f3f4f6 !important;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
        width: 100% !important;
        position: relative !important;
        clear: both !important;
        line-height: 1.5 !important;
        display: block !important;
      }

      /* BLOCO DE TOPO (SUBSTITUTO DO HEADER PARA EVITAR CONFLITO GLOBAL) */
      .tpl-modal-sec .tpl-header-block {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-end !important;
        margin-bottom: 40px !important;
        gap: 32px !important;
        flex-wrap: wrap !important;
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
      }

      .tpl-modal-sec .tpl-header-left {
        max-width: 580px !important;
        flex: 1 1 300px !important;
      }

      .tpl-modal-sec .tpl-badge {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 6px 14px !important;
        border-radius: 100px !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        margin-bottom: 16px !important;
        width: fit-content !important;
      }

      .tpl-modal-sec .tpl-header-block h2 {
        font-size: 2.5rem !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        color: #ffffff !important;
        letter-spacing: -0.02em !important;
        text-transform: none !important;
      }

      .tpl-modal-sec .tpl-header-block h2 span {
        color: #9ca3af !important;
        display: inline !important;
      }

      .tpl-modal-sec .tpl-header-right {
        max-width: 400px !important;
        flex: 1 1 280px !important;
      }

      .tpl-modal-sec .tpl-header-block p {
        color: #9ca3af !important;
        font-size: 0.98rem !important;
        line-height: 1.6 !important;
        margin-bottom: 12px !important;
      }

      .tpl-modal-sec .tpl-scroll-hint {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
      }

      /* TRILHO DE SCROLL HORIZONTAL */
      .tpl-modal-sec .tpl-scroll-track {
        display: flex !important;
        gap: 24px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        padding: 12px 0 28px 0 !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: thin !important;
        scrollbar-color: rgba(255, 255, 255, 0.2) transparent !important;
        width: 100% !important;
      }

      .tpl-modal-sec .tpl-scroll-track::-webkit-scrollbar {
        height: 6px !important;
      }

      .tpl-modal-sec .tpl-scroll-track::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2) !important;
        border-radius: 10px !important;
      }

      /* CARD DO TEMPLATE */
      .tpl-modal-sec .tpl-card {
        flex: 0 0 340px !important;
        min-width: 340px !important;
        max-width: 340px !important;
        scroll-snap-align: start !important;
        background: #121417 !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 18px !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        position: relative !important;
        transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
      }

      .tpl-modal-sec .tpl-card:hover {
        /* transform: translateY(-6px) !important; */
        border-color: rgba(59, 130, 246, 0.5) !important;
        box-shadow: 0 20px 35px -10px rgba(0,0,0,0.8), 0 0 25px rgba(59, 130, 246, 0.2) !important;
      }

      /* NAVEGADOR FICTÍCIO */
      .tpl-modal-sec .tpl-card-topbar {
        background: rgba(255, 255, 255, 0.04) !important;
        padding: 10px 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 38px !important;
      }

      .tpl-modal-sec .tpl-dots {
        display: flex !important;
        gap: 6px !important;
      }

      .tpl-modal-sec .tpl-dots span {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.25) !important;
        display: inline-block !important;
      }

      .tpl-modal-sec .tpl-tag {
        font-size: 0.7rem !important;
        font-weight: 600 !important;
        color: #10b981 !important;
        background: rgba(16, 185, 129, 0.12) !important;
        padding: 2px 8px !important;
        border-radius: 4px !important;
        line-height: 1.2 !important;
      }

      /* AUTO-SCROLL DA IMAGEM NO HOVER */
      .tpl-modal-sec .tpl-preview {
        position: relative !important;
        height: 260px !important;
        overflow: hidden !important;
        background: #000000 !important;
        width: 100% !important;
      }

      .tpl-modal-sec .tpl-preview img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        transition: transform 3.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
      }

      .tpl-modal-sec .tpl-card:hover .tpl-preview img {
        transform: translateY(calc(-100% + 260px)) !important;
      }

      /* OVERLAY */
      .tpl-modal-sec .tpl-overlay {
        position: absolute !important;
        inset: 0 !important;
        background: rgba(8, 9, 10, 0.65) !important;
        backdrop-filter: blur(3px) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease !important;
        z-index: 5 !important;
      }

      .tpl-modal-sec .tpl-card:hover .tpl-overlay {
        opacity: 1 !important;
      }

      .tpl-modal-sec .tpl-btn-preview {
        color: #ffffff !important;
        padding: 10px 20px !important;
        border-radius: 100px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        font-size: 0.85rem !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        border: none !important;
        cursor: pointer !important;
      }

      /* RODAPÉ DO CARD */
      .tpl-modal-sec .tpl-card-body {
        padding: 18px 20px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        background: rgba(255, 255, 255, 0.01) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
      }

      .tpl-modal-sec .tpl-category {
        font-size: 0.75rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        display: block !important;
        margin-bottom: 2px !important;
      }

      .tpl-modal-sec .tpl-title {
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        color: #ffffff !important;
      }

      .tpl-modal-sec .tpl-arrow {
        width: 34px !important;
        height: 34px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.06) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #9ca3af !important;
        transition: all 0.3s ease !important;
      }

      .tpl-modal-sec .tpl-card:hover .tpl-arrow {
        color: #ffffff !important;
        transform: rotate(45deg) !important;
      }

      /* BANNER INFERIOR */
      .tpl-modal-sec .tpl-cta {
        margin-top: 36px !important;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(18, 20, 23, 0.9) 100%) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 20px !important;
        padding: 28px 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 20px !important;
        flex-wrap: wrap !important;
      }

      .tpl-modal-sec .tpl-cta-text h4 {
        color: #ffffff !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        margin-bottom: 4px !important;
      }

      .tpl-modal-sec .tpl-cta-text p {
        color: #9ca3af !important;
        font-size: 0.92rem !important;
      }

      .tpl-modal-sec .tpl-cta-btn {
        background: #ffffff !important;
        color: #000000 !important;
        padding: 12px 26px !important;
        border-radius: 100px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        font-size: 0.88rem !important;
        white-space: nowrap !important;
        transition: all 0.3s ease !important;
      }

      .tpl-modal-sec .tpl-cta-btn:hover {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3) !important;
        transform: scale(1.02) !important;
      }
/* SEÇÃO DE DEPOIMENTOS */
.testimonials-section {
  position: relative;
  padding: 100px 0;
  font-family: 'Montserrat', sans-serif;
}

/* Esferas de luz com brilho de fundo (Glow Effects) */
.testimonials-section::before,
.testimonials-section::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(180px);
  pointer-events: none;
}
.testimonials-section::before {
  background: var(--secondary-color);
  top: 10%;
  left: -5%;
}
.testimonials-section::after {
  background: var(--secondary-color);
  bottom: 10%;
  right: -5%;
}

/* Badge e Cabeçalho */
.testimonials-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.testimonials-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Banner de Métricas / Métricas de Sucesso */
.metrics-banner {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 24px;
}

.metric-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #a0a5b5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  color: #8a8f9d;
  font-size: 13px;
  margin: 0;
}

/* Cards de Depoimento */
.testimonial-card {
  background: rgba(18, 22, 31, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  opacity: 0.1;
  width: 40px;
  height: 40px;
  fill: #ffffff;
}

.rating-stars {
  color: #ffb800;
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  font-size: 14px;
}

.testimonial-text {
  color: #c5c9d3;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-text strong {
  color: #ffffff;
}

/* Autor */
.author-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;  
}

.author-name {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

.author-role {
  color: #727785;
  font-size: 12px;
  margin: 0;
}
        /* ==========================================================
   SEÇÃO REDES SOCIAIS - LIGHT ELEGANT PREMIUM (#005af9)
   ========================================================== */
.social-section-light {
  background-color: #ffffff;
  padding: 60px 0;
  font-family: 'Montserrat', 'Inter', sans-serif;
  position: relative;
}

/* Card Container com Sombra Suave */
.social-wrapper-card {
  background: #ffffff;
  border: 1px solid rgba(87, 63, 208, 0.12);
  border-radius: 24px;
  padding: 32px 40px;
  box-shadow: 0 15px 35px rgba(87, 63, 208, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.social-wrapper-card:hover {
  box-shadow: 0 20px 45px rgba(87, 63, 208, 0.08);
  border-color: rgba(87, 63, 208, 0.25);
}

/* Badge Decorativo */
.social-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #005af9;
  background: rgba(87, 63, 208, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.social-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.3px;
}

/* Botões de Redes Sociais Elegantes */
.social-links-container {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.social-pill-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Efeito Hover Genérico */
.social-pill-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.social-pill-btn:hover i {
  transform: scale(1.15) rotate(-5deg);
}

/* Temas Dinâmicos por Rede Social */
/* Instagram */
.social-pill-btn.insta:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(253, 29, 29, 0.3);
}

/* Facebook */
.social-pill-btn.face:hover {
  background: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

/* TikTok / LinkedIn */
.social-pill-btn.tiktok:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* gsap */
.hero_bg,
.hero-badge,
.type-wrap,
.hero-title,
.description,
.hero_img,
.hero-stats-item {
    will-change: transform, opacity;
}
/* Previne piscadas de tela antes da animação iniciar */
#how_sec .af_block,
#how_sec .device img,
#how_sec .blure_shape {
    will-change: transform, opacity;
}

/* Transição suave ao passar o mouse sobre os cards */
#how_sec .af_block .text {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#how_sec .af_block:hover .text {
    transform: translateY(-6px);
}
/* Otimização de renderização e prevenção de piscadas */
#why_sec .why_data_block,
#why_sec .why_us_new_img,
#why_sec .section_title,
#why_sec img[src*='tablet.png'],
#why_sec img[src*='phone-login.png'] {
  will-change: transform, opacity;
}
/* gsap */