/**
* Template Name: Ecom Inteligente
** Updated: Aug 07 2024 with Bootstrap v5.3.3
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #555555; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0c2e8a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #06A3DA; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #555555;  /* The default color of the main navmenu links */
  --nav-hover-color: #06A3DA; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #50d8af#06A3DA; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #091e5b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0e2d89;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #091E3E;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
  display: none;
  list-style: none;
  position: absolute;

  /* 🔥 CORREÇÃO DO OVERFLOW */
  top: 60px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;

  padding: 10px 0;
  margin: 0;
  border-radius: 6px;
  background-color: var(--nav-mobile-background-color);
  overflow-y: auto;
  transition: 0.3s;
  z-index: 9998;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}


  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 118px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 72px;
  font-weight: 700;
  position: relative;
}

.hero .info h2 span {
  color: var(--accent-color);
  text-decoration: underline;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.hero .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
}

.hero .info .btn-get-started:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 90%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 15px;
}


.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
section.call-to-action {
  position: relative;
  padding: 60px 0;
  background: #06A3DA;
  color: #fff;
}


.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 20px;
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 40px;
  transition: 0.3s ease;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.call-to-action .cta-btn:hover {
  background: #fff;
  color: #06A3DA;
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.botao-orcamento {
    /* Cor de Fundo (o verde-água) */
    background-color: #58D68D; /* Este é um verde-água aproximado ao da imagem */
    
    /* Cor do Texto (branco) */
    color: white; 
    
    /* Remove a borda padrão do navegador */
    border: none;
    
    /* Deixa as bordas arredondadas (como na imagem) */
    border-radius: 4px;
    
    /* Espaçamento interno (padding) para dar altura e largura ao botão */
    padding: 12px 30px; 
    
    /* Fonte e tamanho do texto (ajuste conforme a fonte do seu site) */
    font-size: 16px; 
    font-weight: bold; /* Deixa o texto mais forte se necessário */
    
    /* Efeito ao passar o mouse (opcional, mas recomendado) */
    cursor: pointer; 
    transition: background-color 0.3s ease; /* Transição suave na cor */
}

/* Efeito ao passar o mouse por cima */
.botao-orcamento:hover {
    background-color: #46b777; /* Um tom um pouco mais escuro para o hover */
}

/* Estilo para o incentivo de Parcelamento */
.small-incentive {
    font-size: 1rem; /* Tamanho de fonte normal */
    color: #58D68D; /* Cor verde-água para destaque */
    font-weight: 500;
    margin-top: -15px; /* Puxa um pouco para perto do preço */
    margin-bottom: 25px; /* Adiciona espaço antes da lista de features */
}

/* Correção Final: Remove a linha lateral (verde ou azul) do cabeçalho/navbar */
#header, 
.header,
.header.sticky-top,
.topbar {
    /* Anula qualquer borda ou linha nas laterais */
    border-left: none !important;
    border-right: none !important;
    
    /* Remove a sombra que pode estar simulando a linha azul */
    box-shadow: none !important; 
}

/* Correção definitiva: Remove a linha lateral (azul) do cabeçalho */

/* 1. Remove a borda do Cabeçalho e do Branding em todos os estados */
#header, 
.header,
.header.sticky-top,
.header .branding,
.topbar {
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
}

/* 2. Remove qualquer linha gerada por pseudo-elementos (::before, ::after) */
/* Geralmente a fonte do problema em templates complexos */
#header::before, 
#header::after,
.header::before,
.header::after {
    display: none !important;
    border-left: none !important;
    content: none !important;
}

.topbar-link:hover {
  color: var(--accent-color) !important; /* verde do tema */
}

.hero-overlay {
  z-index: 25 !important; /* abaixo do texto */
  pointer-events: none;
}
#hero .info {
  z-index: 50 !important; /* fica acima do carrossel */
  pointer-events: none; /* não bloqueia clique */
}

#hero .info * {
  pointer-events: auto; /* reativa clique nos botões e links */
}

#hero-carousel .carousel-control-prev,
#hero-carousel .carousel-control-next {
  z-index: 99999 !important;
  pointer-events: auto !important;
}

/* CORREÇÃO FORÇADA DE COR PARA OS ÍCONES DE LISTA */
/* Aplica o azul (#06A3DA) de forma forçada ao ícone de check */

.service-details ul li i.bi-check-circle,
.service-details .bi-check-circle {
    /* Usando o código HEX literal em vez da variável para evitar falhas na resolução */
    color: #06A3DA !important; 
    /* Garante que o ícone se mantenha visível */
    display: inline-block !important; 
    /* Força o peso correto para que o ícone apareça corretamente */
    font-weight: 900 !important; 
}

/* CORREÇÃO FINAL PARA ARTIGOS DO BLOG */

/* 1. CORREÇÃO DE ESPAÇAMENTO APÓS O TEXTO EM NEGRITO (STRONG) */
/* Adiciona 5 pixels de espaço à direita do texto em negrito dentro da lista (ex: "Atendimento com IA:") */
.service-details ul li strong {
    padding-right: 5px !important; 
    margin-right: 0 !important; 
}

/* 2. CORREÇÃO DEFINITIVA DE COR PARA OS ÍCONES DE LISTA */
/* Força a cor azul (#06A3DA) diretamente no ícone com a máxima prioridade */
.service-details ul li i.bi-check-circle,
.service-details .bi-check-circle {
    color: #06A3DA !important; /* Azul Ecom Inteligente */
    font-weight: 900 !important; 
}



.whatsapp-click {
  text-decoration: none;
  color: inherit;
}

.whatsapp-click:hover {
  opacity: .85;
}

/* FOOTER — Ecom Inteligente (estilo EcommX aprimorado) */

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #ffffff !important;
}

.footer-links a {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #ddd;
    transition: 0.3s;
}

.footer-links a:hover {
    letter-spacing: 1px;
    color: #06A3DA;
}

.footer-news p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.footer-title {
    border-left: 3px solid #06A3DA;
    padding-left: 12px;
}

.btn-square {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}


/* Esconde as setas de navegação do carrossel em telas pequenas */
@media (max-width: 991.98px) {
    /* O valor 991.98px é o ponto de quebra padrão do Bootstrap para telas grandes/médias */

    .carousel-control-prev,
    .carousel-control-next {
        display: none !important; /* Força a remoção do elemento da tela */
    }
}

/* Correção FINAL: Define o estado Normal e Hover no CSS */

/* 1. ESTADO NORMAL: Fundo Branco, Texto Azul */
/* Usa o ID (#hero) para garantir a máxima especificidade */
#hero .hero-btn {
    background: #FFFFFF !important; 
    color: #06A3DA !important;
    border: 2px solid #06A3DA !important;
    
    /* A transição precisa estar no estado normal */
    transition: all 0.3s ease-in-out !important; 
    
    /* Garante que o padding e display sejam corretos */
    padding: 10px 30px !important;
    display: inline-block !important;
}

/* 2. ESTADO HOVER: Fundo Azul, Texto Branco */
#hero .hero-btn:hover {
    background: #06A3DA !important; 
    color: #ffffff !important;
    border-color: #06A3DA !important; 
}

/* ===== Footer Fix Mobile ===== */

@media (max-width: 768px) {

    /* Reduz o bloco azul (newsletter) */
    .footer-about .footer-news {
        padding: 25px 20px !important;
        margin-bottom: 20px;
    }

    .footer-about img {
        height: 38px !important;
    }

    .footer-about p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    /* Input + botão */
    .footer-about .input-group input {
        padding: 10px 12px !important;
    }

    .footer-about .input-group button {
        padding: 10px 18px !important;
    }

    /* Títulos menores */
    .footer-heading {
        font-size: 18px !important;
    }

    /* Linha azul do lado do título mais fina */
    .footer-title {
        border-left-width: 2px !important;
        padding-left: 10px !important;
    }

    /* Texto e ícones mais alinhados */
    .footer-links a {
        font-size: 15px !important;
    }

    /* Espaçamento geral menor */
    .footer-about,
    .footer-links,
    .footer-contact {
        margin-bottom: 25px !important;
    }

    /* Ícones sociais menores */
    .btn-square {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px;
    }

    /* Alinhar textos à esquerda (fica mais elegante) */
    .footer-about,
    .footer-contact,
    .footer-links {
        text-align: left !important;
    }

}

/* ================================
   FORÇAR TODO O AZUL PARA #06A3DA
   ================================ */

/* Bootstrap primary color override */
:root {
    --bs-primary: #ffffff !important;
    --primary: #ffffff !important;
}

/* Ícones (Bootstrap Icons) */
.bi,
.footer i,
.footer .bi {
    color: #ffffff !important;
}

/* Títulos com linha à esquerda */
.footer-title {
    border-left: 3px solid #ffffff !important;
}

/* Títulos principais */
.footer-heading {
    color: #06A3DA !important;
}

/* Links com seta azul */
.footer-links a i,
.footer-links i {
    color: #06A3DA !important;
}

/* Hover em links */
.footer-links a:hover {
    color: #06A3DA !important;
}

/* Ícones sociais */
.btn-primary,
.btn-square {
    background-color: #06A3DA !important;
    border-color: #06A3DA !important;
}

/* Botões do newsletter */
.footer-news .btn-dark {
    background-color: #06A3DA !important;
    border-color: #091E3E !important;
}

/* Bordas de inputs */
.footer-news input {
    border-color: #06A3DA !important;
}

/* Divisores de sessão */
hr,
.footer-divider {
    border-color: #06A3DA !important;
}

/* Botão Flutuante "voltar ao topo" */
.back-to-top {
    background: #06A3DA !important;
    border-color: #06A3DA !important;
}

/* Ícones do contato */
.footer-contact i {
    color: #06A3DA !important;
}

/* Qualquer elemento com .text-primary */
.text-primary {
    color: #06A3DA !important;
}

/* Qualquer elemento com bg-primary */
.bg-primary {
    background-color: #06A3DA !important;
}

/* Links com borda azul */
.footer a.border-bottom {
    border-color: #06A3DA !important;
}

/* ============================
   PALETA CORRIGIDA E AJUSTADA
   ============================ */

/* Cor principal */
:root {
    --ecom-blue: #06A3DA;
    --ecom-blue-dark: #0489ba;
    --ecom-dark: #0C2E8A;
    --ecom-light: #ffffff;
    --ecom-whatsapp: #25D366;
}

/* --------------------------
   TITULOS DO FOOTER
----------------------------*/
.footer-heading {
    font-size: 22px !important;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #fff !important; /* branco */
}

.footer-title {
    border-left: 3px solid var(--ecom-blue) !important;
    padding-left: 12px;
    margin-bottom: 12px;
}


/* --------------------------
   LINKS DO FOOTER
----------------------------*/
.footer-links a {
    display: block;
    color: #dcdcdc !important;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--ecom-blue) !important;
    margin-left: 4px;
}

/* Ícones das setas */
.footer-links i {
    color: var(--ecom-blue) !important;
}

/* --------------------------
   ÍCONES REDES SOCIAIS
----------------------------*/
.btn-square {
    width: 40px;
    height: 40px;
    background: var(--ecom-blue) !important;
    border: none !important;
    color: #fff !important;
    transition: 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-square:hover {
    background: var(--ecom-blue-dark) !important;
    transform: translateY(-3px);
}

/* --------------------------
   CONTATO / ÍCONES
----------------------------*/
.footer-contact i {
    color: var(--ecom-blue) !important;
}


/* --------------------------
   NEWSLETTER / INSCRIÇÃO
----------------------------*/
.footer-news input {
    border: none !important;
}

/* Botão Inscreva-se */
.footer-news button {
    background: var(--ecom-dark) !important;
    border: none !important;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.footer-news button:hover {
    background: var(--ecom-blue-dark) !important;
}

/* --------------------------
   ICONES DO RODAPE INFERIOR
----------------------------*/
.footer a.border-bottom {
    border-color: var(--ecom-blue) !important;
}


/* ============================
   MOBILE AJUSTADO
============================*/
@media (max-width: 768px) {

    .footer-news {
        padding: 25px !important;
    }

    .footer-heading {
        font-size: 20px !important;
    }

    .footer-links a {
        font-size: 15px !important;
    }

    .btn-square {
        width: 36px !important;
        height: 36px !important;
    }
}

/* Forçar fundo do botão Inscreva-se (newsletter) */
.footer-news .btn-dark {
    background-color: #0C2E8A !important; /* azul escuro / quase preto */
    border: none !important;
    color: #fff !important;
    z-index: 10;
}

/* Hover */
.footer-news .btn-dark:hover {
    background-color: #064b61 !important; /* tom azul escuro mais claro */
}

/* Ícone do WhatsApp BRANCO dentro do footer */
.footer-contact .bi-whatsapp,
.footer-contact i.bi-whatsapp {
    color: #ffffff !important;
}

/* Ícone do WhatsApp apenas na SESSÃO CONTATO (fora do footer) */
#contact .bi-whatsapp,
.contact-section .bi-whatsapp,
.contact-info .bi-whatsapp {
    color: #ffffff !important;
}

/* WhatsApp VERDE EXCLUSIVO do footer */
.container-fluid.bg-dark .bi-whatsapp {
    color: #25D366 !important;
}

/* =========================
   HERO – Anti CLS (FINAL)
   ========================= */

/* Altura base (antes de qualquer media query) */
#hero {
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

/* Carousel acompanha o hero */
#hero-carousel,
#hero-carousel .carousel-inner,
#hero-carousel .carousel-item {
  height: 100%;
}

/* Imagens se adaptam ao container */
#hero-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Mobile */
@media (max-width: 768px) {
  #hero {
    min-height: 380px;
  }
}

/* Desktop */
@media (min-width: 769px) {
  #hero {
    min-height: 720px;
    height: 75vh;
  }
}



  /* --- Reposicionamento correto do texto --- */
  #hero .info {
    position: absolute;
    top: 50%;               /* leva ao meio do banner */
    left: 50%;
    transform: translate(-50%, -50%);   /* centraliza */
    width: 100%;
    padding: 0 20px;
    text-align: center;
    z-index: 5;
  }

  /* Ajustes de tamanho do texto */
  #hero h2 {
    font-size: 30px !important;
    line-height: 36px !important;
  }

  #hero p {
    font-size: 20px !important;
    margin-bottom: 15px;
  }

  /* Botão proporcional */
  #hero .hero-btn {
    padding: 10px 24px !important;
    font-size: 15px !important;
  }
}

/* Texto mais aceso no HERO */
#hero h2 {
    color: #fff !important;
    text-shadow: 
        0px 0px 6px rgba(255, 255, 255, 0.8),   /* brilho suave */
        0px 0px 14px rgba(0, 0, 0, 0.6);        /* contraste contra a imagem */
}

#hero p {
    color: #fff !important;
    text-shadow: 
        0px 0px 4px rgba(255, 255, 255, 0.7),
        0px 0px 10px rgba(0, 0, 0, 0.6);
}

/* Botão com mais contraste */
#hero .hero-btn {
    box-shadow: 0px 0px 10px rgba(255,255,255,0.4);
}

#servicos i {
    color: #06A3DA !important;
    font-size: 40px !important;
}

/* ===== Centralizar texto do rodapé inferior (fix específico) ===== */

/* Seleciona exatamente o container inferior com fundo #061429 */
div.container-fluid.text-white[style*="#061429"] .row {
  justify-content: center !important;   /* força centralização das colunas */
}

/* Faz a coluna ocupar 100% e centraliza seu conteúdo */
div.container-fluid.text-white[style*="#061429"] .col-lg-8 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

/* Garante que o wrapper interno esteja centralizado */
div.container-fluid.text-white[style*="#061429"] .d-flex {
  justify-content: center !important;
  align-items: center !important;
}

/* Força centralização do parágrafo */
div.container-fluid.text-white[style*="#061429"] p.mb-0 {
  text-align: center !important;
  margin: 0 auto !important;
}

/* Estilo de Card para a seção Sobre Nós */
.about-card {
    background: #ffffff; /* Fundo do card */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Sombra sutil */
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Ajustes responsivos para que a imagem não estoure no mobile */
.about-styled-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px; /* Espaço entre o texto e a imagem no mobile */
}

/* Garante que o texto tenha alinhamento consistente no mobile */
@media (max-width: 991px) {
    .about-card .content {
        text-align: center; /* Centraliza o texto no celular */
        padding-bottom: 0 !important;
    }
    .about-card ul {
        text-align: left; /* Mantém a lista alinhada à esquerda para leitura */
        display: inline-block;
    }
    /* Remove a margem superior da imagem no desktop */
    .about-styled-img {
        margin-top: 25px; 
    }
}

/* Estilo do Subtítulo/Chamada na Seção Sobre Nós */
.about-card .about-subtitle {
    /* Cor de título, mas com peso de fonte normal */
    color: var(--heading-color); 
    font-size: 20px; /* Tamanho ligeiramente maior que o parágrafo normal */
    font-weight: 400; /* Remove o negrito forte */
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Opcional: Garante que os títulos de lista fiquem bem formatados */
.about-card ul {
    margin-top: 20px;
}

/* Correção de Estilo: Garante que o Título "Sobre Nós" se pareça com o Título "Serviços" */
/* Força o alinhamento à ESQUERDA e mantém a formatação do título */
#about .section-header h2 {
    /* Alinha o título principal à ESQUERDA */
    text-align: left !important; 
    
    /* Garante que ele use a cor e o peso de fonte padrão dos títulos do site */
    color: var(--heading-color) !important; 
    font-weight: 700 !important; /* Exemplo de negrito forte */
    font-size: 32px !important; /* Exemplo de tamanho grande */
    
    /* Zera as margens laterais que podem ter sido herdadas de regras de centralização */
    margin-left: 0 !important;
    margin-right: auto !important;
    
    /* Garante que a linha inferior (se houver) esteja correta */
    margin-bottom: 5px !important; 
    padding-bottom: 5px !important;
}

/* Remove totalmente a área de Newsletter do Rodapé */
.footer-news,
.footer-about .footer-news,
.footer-news .input-group,
.footer-news form {
    display: none !important;
}

/* Reajusta espaçamentos depois de remover a newsletter */
.footer-about,
.footer-contact,
.footer-links {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

/* Alinhamento dos blocos restantes */
.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between !important;
    gap: 20px;
}

/* Garante alinhamento no mobile */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        text-align: left !important;
    }
}

/* ============================
   RODAPÉ — ALINHAMENTO PERFEITO
=============================== */

/* Remove newsletter */
.footer-news,
.footer-about .footer-news {
    display: none !important;
}

/* Contêiner do rodapé */
footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Cada coluna */
footer .col-footer {
    flex: 1;
    min-width: 200px;
}

/* Títulos */
.footer-heading {
    font-size: 20px !important;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff !important;
}

.footer-title {
    border-left: 3px solid #06A3DA !important;
    padding-left: 12px;
    margin-bottom: 20px;
}

/* Links */
.footer-links a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #dcdcdc !important;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #06A3DA !important;
    margin-left: 3px;
}

/* Ícones */
.btn-square {
    background: #06A3DA !important;
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

/* Força alinhamento dos ícones sociais */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Responsivo */
@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
        gap: 30px;
        text-align: left !important;
    }
}

/* Títulos das Seções - Padrão Geral */
.section-title {
    text-align: left;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #012970;
    margin-bottom: 10px;
    position: relative;
}

.section-title p {
    margin: 0;
    color: #444;
}

/* Linha azul abaixo do título */
.section-title h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #0d6efd;
    display: block;
    margin-top: 8px;
}

/* Reduzir espaço entre Sobre Nós e Serviços — versão forte */
#sobre-nos {
    margin-bottom: 0 !important;
    padding-bottom: 20px !important;
}

#servicos {
    margin-top: 0 !important;
    padding-top: 20px !important;
}

/* Remove espaçamentos herdados */
#sobre-nos.section,
#servicos.section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Ícones verdes apenas nos itens da lista */
.pricing ul li i.bi-check {
    color: #28a745 !important;
}

/* Ícones brancos dentro das bolinhas */
.pricing .icon i,
.icon i {
    color: #fff !important;
}


/* ===================================================================
// CORREÇÃO GLOBAL: VISIBILIDADE DO ÍCONE HAMBÚRGUER (MOBILE)
// Garante que o ícone apareça em dispositivos móveis, com cor e z-index altos.
// =================================================================== */
.mobile-nav-toggle {
    /* Força a exibição caso esteja sendo ocultado */
    display: block !important;
    /* Cor branca para contraste no cabeçalho */
    color: white !important; 
    /* Tamanho para ser facilmente clicável */
    font-size: 28px !important; 
    cursor: pointer;
    /* Garante que ele esteja sempre na camada superior */
    z-index: 99999 !important; 
    line-height: 0; 
}

/* ===================================================================
// CORREÇÃO GLOBAL: VISIBILIDADE DOS ÍCONES DA BARRA SUPERIOR (TOPBAR)
// Garante que os ícones de contato e redes sociais sejam visíveis.
// =================================================================== */
.topbar .contact-info i {
    /* Força a cor verde-água para os ícones de email e WhatsApp */
    color: #06A3DA !important; 
    font-size: 14px; 
}

.topbar .social-links a i {
    /* Força a cor verde-água para os ícones de redes sociais */
    color: #06A3DA !important; 
    font-size: 14px;
    margin-right: 5px; 
}

/* Opcional: Garante que o toggle não apareça em telas grandes, se o seu tema não fizer isso */
@media (min-width: 1200px) {
    .mobile-nav-toggle {
        display: none !important;
    }
}

/* ======== MOBILE NAV (só aparece no mobile) ======== */
.mobile-nav-toggle {
  color: #0C2E8A !important;
  font-size: 34px !important;
  line-height: 1 !important;
  background: transparent !important;
  border: none;
  display: none; /* padrão: escondido */
}

/* ======== Mostrar SOMENTE no mobile ======== */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }

  /* esconder o menu horizontal no mobile */
  #navbar {
    display: none;
  }
}

/* ======== Desktop: esconder o hambúrguer ======== */
@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none !important;
  }
}

/* ======== Ajuste dos títulos para MOBILE ======== */
@media (max-width: 768px) {

  .section-header h2,
  .about .content h3,
  h2.section-title,
  h2 {
    font-size: 28px !important;
    line-height: 1.3;
  }

}

/* Ícones dentro das bolinhas da seção de planos */
.pricing .icon-box .icon i,
.pricing .icon i,
.icon-box .icon i {
  color: #ffffff !important;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ================================
   TÍTULOS – DESKTOP (padrão)
================================ */
h1,
.page-title h1 {
  font-size: 32px;
}

/* ================================
   TÍTULOS – MOBILE
================================ */
@media (max-width: 768px) {
  h1,
  .page-title h1 {
    font-size: 28px;
  }
}

/* Desktop */
.section-title h2,
.section-header h2,
h2 {
  font-size: 32px;
}

/* Mobile */
@media (max-width: 768px) {
  .section-title h2,
  .section-header h2,
  h2 {
    font-size: 28px;
  }
}

/* ===== AJUSTE DE TIPOGRAFIA DOS ARTIGOS ===== */

/* Título principal da página */
.service-details-page .page-title h1 {
  font-size: 32px;
  line-height: 1.2;
}

/* Subtítulo abaixo do H1 */
.service-details-page .page-title p {
  font-size: 16px;
}

/* Títulos das seções do artigo (h3) */
.service-details-page .service-details h3 {
  font-size: 22px;
  line-height: 1.4;
  margin-top: 30px;
}

/* Texto normal do artigo */
.service-details-page .service-details p,
.service-details-page .service-details li {
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 768px) {

  .service-details-page .page-title h1 {
    font-size: 26px;
  }

  .service-details-page .service-details h3 {
    font-size: 20px;
  }

  .service-details-page .service-details p,
  .service-details-page .service-details li {
    font-size: 15px;
  }
}

/* ===== AJUSTE DE TIPOGRAFIA DO FAQ ===== */

/* Títulos das perguntas */
#faq .faq-item h3 {
  font-size: calc(1em - 1px);
}

/* Texto das respostas */
#faq .faq-content p {
  font-size: calc(1em - 1px);
}

@media (max-width: 768px) {
  #faq .faq-item h3 {
    font-size: calc(1em - 1px);
  }

  #faq .faq-content p {
    font-size: calc(1em - 1px);
  }
}

@media (max-width: 768px) {

  /* Título da seção (h2) */
  #blog .section-title h2 {
    font-size: 28px;
  }

  /* Subtítulo da seção (p) */
  #blog .section-title p {
    font-size: 14px;
  }

  /* Títulos das postagens (h5) */
  #blog .card-body h5 {
    font-size: 18px;
  }

  /* Texto da descrição das postagens (p) */
  #blog .card-body p {
    font-size: 13px;
  }
}

/* Remove completamente a seção do carrossel de marcas */
#clients,
.clients,
.logos,
.partners {
  display: none !important;
}

/* Limpeza completa dos containers para evitar brigas de especificidade */
#sobre-nos .section-title {
    padding: 0 !important;
    margin: 0 !important;
}

/* Aumenta o PADDING INFERIOR no H2 para criar mais espaço */
#sobre-nos .section-title h2 {
    /* Margens zeradas para evitar conflitos */
    margin: 0 !important; 
    
    /* AUMENTA o PADDING INFERIOR para 15px */
    padding-bottom: 15px !important; 
}

/* Garante que o primeiro parágrafo não tenha margem/padding superior */
#sobre-nos .content > p.mb-2 {
    margin-top: 0 !important; 
    padding-top: 0 !important; 
    /* Margem inferior pequena para afastar da lista */
    margin-bottom: 5px !important; 
}

/* ==================================================
   AJUSTES DE ESPAÇAMENTO — SEÇÃO SOBRE NÓS
   Seguro | Não altera outras seções
================================================== */

#sobre-nos {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Título da seção */
#sobre-nos .section-title {
  margin-bottom: 8px;
  padding-bottom: 0;
}

#sobre-nos .section-title h2 {
  margin-bottom: 4px;
}

/* Parágrafo logo abaixo do título */
#sobre-nos p {
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Lista */
#sobre-nos ul {
  margin-top: 4px;
  margin-bottom: 8px;
  padding-left: 0;
}

#sobre-nos ul li {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

#sobre-nos ul li i {
  margin-top: 4px;
  color: var(--accent-color);
}

/* Texto em itálico final */
#sobre-nos .fst-italic {
  margin-top: 8px;
}

/* ==================================================
   MOBILE
================================================== */
@media (max-width: 768px) {
  #sobre-nos {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  #sobre-nos p {
    margin-bottom: 6px;
  }

  #sobre-nos ul {
    margin-top: 6px;
  }

  #sobre-nos ul li {
    margin-bottom: 6px;
  }
}

.botao-orcamento {
  color: #ffffff;
  text-decoration: none;
}

.botao-orcamento:hover,
.botao-orcamento:focus {
  color: #ffffff;
  text-decoration: none;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.btn-get-started {
  background-color: #198754; /* azul forte */
  color: #ffffff !important;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: 6px;
  font-weight: 600;
}


.read-more {
  display: inline-block;
  background-color: #0d6efd;
  color: #ffffff !important;
  padding: 10px 16px;
  min-height: 48px;
  border-radius: 4px;
  font-size: 14px;
}

/* ===========================
   TOPBAR – ACESSIBILIDADE
=========================== */

.topbar {
  background-color: #0b0f19; /* mais contraste */
  font-size: 14px;
}

.topbar .contact-info a {
  color: #ffffff;
  font-weight: 600; /* MAIS PESO */
  letter-spacing: 0.2px;
  text-decoration: none;
}

.topbar .contact-info i {
  color: #06A3DA; /* azul destaque */
  font-size: 14px;
}

.topbar .contact-info a:hover {
  text-decoration: underline;
}

.topbar .social-links a {
  color: #ffffff;
  font-size: 15px;
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.3s ease;
}


/* ===========================
   MENU PRINCIPAL
=========================== */

.navmenu ul li a {
  font-weight: 600; /* antes parecia 400 */
  font-size: 15px;
  color: #000000;
  letter-spacing: 0.3px;
  padding: 10px 14px;
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
  color: #06A3DA;
}

a:focus-visible {
  outline: 2px solid #06A3DA;
  outline-offset: 3px;
  border-radius: 4px;
}

.blog-card .card-title {
  font-size: 1.05rem;
  font-weight: 600;
}

@font-face {
  font-family: 'bootstrap-icons';
  src: url('../vendor/bootstrap-icons/fonts/bootstrap-icons.woff2') format('woff2'),
       url('../vendor/bootstrap-icons/fonts/bootstrap-icons.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



@font-face {
  font-family: 'Open Sans';
  src: url('open-sans.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Inter', sans-serif;
}


/* ===============================
   SERVICE CARDS – AJUSTE FINAL
================================ */

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* Linha decorativa lateral */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--bs-primary);
  opacity: 0.9;
}

/* Títulos */
.service-card h3,
.service-card h4 {
  font-weight: 700;
  color: #0b2c5f;
  margin-bottom: 12px;
}

/* Texto */
.service-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* LISTA – correção do corte */
.service-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-left: 34px; /* ESPAÇO REAL */
  margin-bottom: 14px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Ícone perfeitamente alinhado */
.service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  color: var(--bs-primary);
}

/* Card destaque (CTA) */
.service-card.highlight {
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #fff;
  text-align: center;
}

.service-card.highlight::before {
  display: none;
}

.service-card.highlight h4 {
  color: #fff;
}

.service-card.highlight p {
  color: #e9f2ff;
}

/* Espaçamento entre cards */
.service-card + .service-card {
  margin-top: 48px;
}

/* ===== FIX DEFINITIVO LISTAS SERVICE ===== */

.service-card ul.service-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.service-card ul.service-list li {
  position: relative !important;
  padding-left: 36px !important;
  margin-bottom: 14px !important;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.service-card ul.service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  color: var(--bs-primary);
}

/* ===== CHECK ICON FIX (DEFINITIVO) ===== */

.service-card ul.service-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.service-card ul.service-list li {
  position: relative !important;
  padding-left: 40px !important;
  margin-bottom: 14px !important;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* ÍCONE VISÍVEL GARANTIDO */
.service-card ul.service-list li::before {
  content: "✔" !important;
  position: absolute !important;
  left: 0 !important;
  top: 2px !important;
  font-size: 18px !important;
  font-weight: 700;
  color: #0d6efd !important;
  display: inline-block !important;
}

/* ==================================================
   ARTIGOS – CSS 100% ISOLADO (SEM VAZAMENTO)
   Escopo REAL: .service-details
================================================== */

.service-details {
  background: #f5f7fb;
}

/* TÍTULO DA PÁGINA */
.service-details .page-title {
  padding: 80px 0 50px;
  background: linear-gradient(135deg, #0c2e8a, #123db8);
  color: #fff;
}

/* CARD DO ARTIGO */
.service-details .article-content {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* IMAGEM */
.service-details .article-content img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
}

/* TEXTO */
.service-details .article-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

/* TÍTULOS */
.service-details .article-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0c2e8a;
  margin: 40px 0 16px;
  position: relative;
}

.service-details .article-content h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #0c2e8a;
  margin-top: 8px;
  border-radius: 4px;
}

/* LISTAS */
.service-details .article-content ul {
  padding-left: 0;
  margin-bottom: 30px;
}

.service-details .article-content ul li {
  list-style: none;
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  line-height: 1.6;
  color: #555;
}

.service-details .article-content ul li i {
  color: #0c2e8a;
  font-size: 18px;
  margin-top: 4px;
}

/* TEXTO DESTACADO */
.service-details .article-highlight {
  font-weight: 700;
  color: #0c2e8a;
  font-size: 18px;
}

/* SIDEBAR */
.service-details .article-sidebar {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-details .article-sidebar a {
  display: block;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #444;
  text-decoration: none;
}

.service-details .article-sidebar a:hover,
.service-details .article-sidebar a.active {
  background: #0c2e8a;
  color: #fff;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .service-details .article-content {
    padding: 24px;
  }
}

.menu-item.active {
  font-weight: bold;
}

.consultoria.section {
  background: linear-gradient(135deg, #f0f4f8, #e6f7f1);
  padding: 60px 20px;
}

.consultoria .container {
  max-width: 700px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 40px;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #2c3e50;
}

.section-header p {
  color: #555;
  margin-bottom: 30px;
}

.form-label {
  font-weight: 500;
  color: #333;
}

.form-control, .form-select {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px 12px;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: #06A3DA;
  box-shadow: 0 0 6px #06A3DA;
}

.btn-success {
  background: linear-gradient(135deg, #06A3DA, #06A3DA);
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background: linear-gradient(135deg, #06A3DA, #06A3DA);
  transform: translateY(-2px);
}

/* Estilo para radios e checkboxes */
.form-check-input {
  width: 18px;
  height: 18px;
  border: 2px solid #06A3DA;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-check-input:checked {
  background-color: #06A3DA;
  border-color: #06A3DA;
  box-shadow: 0 0 6px #06A3DA;
}

.form-check-label {
  margin-left: 8px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
}

/* Efeito hover */
.form-check-input:hover {
  border-color: #06A3DA;
}


/* FORÇAR FUNDO BRANCO NO BOTÃO HERO */
body #hero .hero-btn, 
body .hero .hero-btn {
    background-color: #FFFFFF !important; 
    color: #06A3DA !important; 
    border: 2px solid #FFFFFF !important;
    padding: 14px 40px !important;
    font-weight: 800 !important; /* Texto bem negrito para ler no branco */
    text-transform: uppercase !important;
    display: inline-block !important;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.6) !important; /* Sombra forte */
    opacity: 1 !important;
    visibility: visible !important;
}

/* Hover: Fica azul com borda branca */
body #hero .hero-btn:hover,
body .hero .hero-btn:hover {
    background-color: #06A3DA !important;
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
    transform: scale(1.05) !important;
}

/* ===== CONSULTORIA GRATUITA (INDEX) – PADRONIZADO ===== */
.consultoria-index {
  /* Gradiente idêntico ao service-card highlight */
  background: linear-gradient(135deg, #0d6efd, #084298); 
  color: #fff;
  text-align: center;
  padding: 60px 40px;
  /* Bordas arredondadas padrão do site */
  border-radius: 18px; 
  /* Sombra suave e profunda dos cards */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.consultoria-index h2 {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff; /* Branco para contraste no gradiente */
  margin-bottom: 15px;
  /* Removido o text-shadow para um visual mais limpo e moderno */
}

.consultoria-index p {
  font-size: 17px;
  color: #e9f2ff; /* Azul clarinho para legibilidade (igual ao card destaque) */
  margin-bottom: 30px;
  line-height: 1.7;
}

.consultoria-index .btn-cta {
  background: #ffffff;
  color: #0d6efd; /* Azul principal no texto do botão */
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  text-transform: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.consultoria-index .btn-cta:hover {
  background: #f8f9fa;
  color: #084298;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.pricing-card-link {
  text-decoration: none;
  color: inherit;
  display: block; /* ocupa toda a área do card */
}

.pricing-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.pricing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

header {
  min-height: 64px; /* ajuste à altura real do seu header */
}

@media (min-width: 992px) {
  #hero h2 {
    font-size: 56px !important;
  }
}

/* HERO – TEXTO (MOBILE PRIMEIRO) */
#hero .info h2 {
  font-size: 28px;
  line-height: 1.2;
}

#hero .info p {
  font-size: 16px;
}

/* HERO – TEXTO (DESKTOP) */
@media (min-width: 992px) {
  #hero .info h2 {
    font-size: 52px;
  }

  #hero .info p {
    font-size: 22px;
  }
}


.logo-img {
  height: 60px;   /* tamanho que você quer ver */
  width: auto;    /* mantém proporção */
}

/* ===============================
   CONSULTORIA – AJUSTES MOBILE
   Espaçamento e leitura
   =============================== */

@media (max-width: 768px) {

  /* Container da seção */
  .consultoria .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  /* Títulos das seções */
  .consultoria h5 {
    text-align: center;
    margin-bottom: 1rem;
    word-break: normal;
    white-space: normal;
  }

  /* Labels dos campos */
  .consultoria .form-label {
    margin-bottom: 0.5rem;
    word-break: normal;
    white-space: normal;
  }

  /* Espaçamento entre campos */
  .consultoria .mb-3 {
    margin-bottom: 1.5rem;
  }

  /* Selects mais confortáveis no toque */
  .consultoria .form-select {
    padding: 14px 16px;
  }

  /* Evita quebra estranha de palavras */
  .consultoria p,
  .consultoria label {
    hyphens: none;
  }
}

/* Ajuste do botão dentro da consultoria mobile */
@media (max-width: 768px) {
  .consultoria-index .btn-cta, 
  .hero-btn {
    padding: 12px 15px !important; /* Diminui o recuo lateral para o texto caber */
    font-size: 15px !important;    /* Ajuste fino na fonte */
    display: block;                /* Ocupa a largura necessária */
    width: fit-content;            /* Ajusta ao tamanho do texto */
    margin: 0 auto;                /* Centraliza */
    white-space: nowrap;           /* Impede que o texto quebre em 2 linhas */
  }
}


