
/* Fonts */
:root {
  --default-font: "Quicksand",  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: "Marcellus",  sans-serif;
  --nav-font: "Quicksand",  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: #0d3035; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #fcbc1a; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #fcbc1a; /* 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: #3ec1d5; /* 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: #f8f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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: "Questrial", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* 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: #059652;
  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 {
  --background-color: rgba(0, 0, 0, 0.5);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  max-height: 50px;
  margin-right: auto;
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #000000;
}

/*--------------------------------------------------------------
# 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: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
    inset: 60px 20px 20px 20px;
    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);
  }

  .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;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

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

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

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

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# 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);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

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

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  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;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  max-width: 50%;
  margin-left: auto;    /* centraliza horizontalmente */
  margin-right: auto;
  text-align: center;   /* alinha o texto dentro do parágrafo */
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

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

.hero .carousel-item {
  position: relative;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

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

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 700;
  animation: fadeInDown 1s both;
  line-height: 2.1;
}

.hero h2 span {
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 500;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 22px !important;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2 {
    max-width: 60%;
  }

  .hero p {
    max-width: 45%;
    text-align: justify;
    margin: 0 auto;
  }
}

.hero .btn-get-started {
  color: #333333;
  background-color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.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;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

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

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 32px;
  color: #fff;
  background: var(--accent-color);
  margin-right: 15px;
  line-height: 0;
  border-radius: 5px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px !important;
  
  
}

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

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

.services .service-item .icon {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.services .service-item .read-more i {
  margin-left: 10px;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  border: 1px solid #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-teal .icon {
  color: #20c997;
  border: 1px solid #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-red .icon {
  color: #df1529;
  border: 1px solid #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  border: 1px solid #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  border: 1px solid #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item:hover {
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover h3 {
  color: var(--heading-color);
}

.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item+.features-item {
  margin-top: 60px;
}

.features .features-item .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 30px;
  border-radius: 10px;
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}

.features .features-item .more-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 30px;
  border-radius: 6px;
}

.features .features-item .more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.features .features-item img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
  cursor: default !important;
}

.why-us .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.why-us .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.why-us .card-item h4 a {
  color: var(--heading-color);
}

.why-us .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.why-us .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.why-us .card-item:hover span,
.why-us .card-item:hover h4 a,
.why-us .card-item:hover p {
  color: var(--contrast-color);
}

/* WHY US — desativa cliques e “mãozinha” */
.why-us .card-item{ cursor: default !important; }

.why-us .card-item a,
.why-us .card-item .stretched-link,
.why-us .card-item .stretched-link::after{
  pointer-events: none !important;   /* bloqueia cliques/toques */
  cursor: default !important;        /* seta normal */
}

/* opcional: tirar cara de link */
.why-us .card-item a{
  color: inherit !important;
  text-decoration: none !important;
}


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

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  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-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

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

.portfolio .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

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

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

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

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

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

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

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

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

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

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

.pricing ul li:last-child {
  padding-bottom: 0;
}

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

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

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

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

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# 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 {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

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

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  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] {
  background: var(--accent-color);
  color: var(--contrast-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 .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

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

.service-details h3 {
  font-size: 26px;
  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);
}



/* afastar arrows do centro */
#featuresCarousel .carousel-control-prev {
  left: -140px;   /* quanto mais negativo, mais para fora */
}

#featuresCarousel .carousel-control-next {
  right: -140px;
}

/* mudar cor das setas para preto */
#featuresCarousel .carousel-control-prev-icon,
#featuresCarousel .carousel-control-next-icon {
  filter: invert(1) grayscale(100%) brightness(0);
}


.services .service-item .icon {
  color: #fcbc1a !important;
  border: 1px solid #fcbc1a !important;
  background: rgba(252, 188, 26, 0.1) !important; /* dourado translúcido */
}

/* Contador redes sociais */
#social-stats .stat-box{
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: transform .25s ease, box-shadow .25s ease;
}
#social-stats .stat-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

#social-stats .stat-icon{
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 8px;
  display: inline-block;
}

#social-stats .stat-number{
  font: 700 34px/1 var(--heading-font);
  color: var(--contrast-color);
}

#social-stats .stat-label{
  margin-top: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
}

.sitename img {
  max-height: 41px;
  margin-right: auto;
}

/* Ícones simples ao lado do menu (sem borda) */
.nav-social-plain a{
  display:inline-flex; align-items:center; line-height:0;
  font-size: .7rem;                              /* tamanho do ícone */
  color: var(--nav-color);                     /* segue a cor do seu header */
  transition: color .2s ease, transform .2s ease;
}
.nav-social-plain a:hover{
  color: var(--nav-hover-color);               /* usa seu --nav-hover-color / accent */
  transform: translateY(-1px);
}

/* Desktop: mais respiro entre linhas + texto justificado */
@media (min-width: 992px){
  .about .about-content p{
    line-height: 2.2;          /* espaçamento entre linhas */
    text-align: justify;        /* alinha nos dois lados */
    text-justify: inter-word;   /* distribui melhor os espaços */
    hyphens: auto;              /* hifeniza palavras longas (pt-br) */
    margin-bottom: .9rem;
    font-size: 1.0rem;       /* espaço entre parágrafos (opcional) */
  }
}

/* Mobile: evite buracos de espaço no texto justificado */
@media (max-width: 991.98px){
  .about .about-content p{
    text-align: left;
    line-height: 1.7;           /* um pouco menor no mobile */
  }
}


/* cursor followe */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2147483647;
}

/* Bolinha grande */
.cursor-outline {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2147483646;
}

/* Botão WhatsApp flutuante (canto inferior esquerdo) */
.wa-float{
  position: fixed;
  left: 18px; bottom: 48px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;                  /* cor oficial do WhatsApp */
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;                       /* tamanho do ícone */
  z-index: 99998;                        /* abaixo do seu scroll-top (99999) */
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  transition: transform .2s ease, box-shadow .2s ease;
  overflow: visible;
}

/* Efeito pulsante */
.wa-float::before,
.wa-float::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .5;
  animation: wa-pulse 1.8s ease-out infinite;
}
.wa-float::after{ animation-delay: .6s; }  /* segundo pulso defasado */
.wa-float i{ position: relative; z-index: 1; }  /* mantém o ícone por cima */

@keyframes wa-pulse{
  0%   { transform: scale(1);   opacity: .45; }
  70%  { transform: scale(1.8); opacity: 0;   }
  100% { opacity: 0; }
}

.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,211,102,.5);
}

/* Ajuste leve no mobile */
@media (max-width: 576px){
  .wa-float{ left: 14px; bottom: 14px; width: 52px; height: 52px; font-size: 22px; }
}

/* Acessibilidade: reduz animação para quem prefere */
@media (prefers-reduced-motion: reduce){
  .wa-float::before,
  .wa-float::after{ display: none; }
}
/* botao de vendas */
/* BOTÃO DO HEADER — versão responsiva */
.btn-header{
  font-size: 15px;
  font-weight: 500;
  padding: 10px 26px;
  border-radius: 15px;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: visible;
  transition: all .3s ease;

  white-space: nowrap;   /* não quebra em 2 linhas */
  line-height: 1.2;      /* evita sobreposição */
  display: inline-block;
}

/* Desktop */
@media (min-width:1200px){
  .btn-header{ margin: 0 80px; }
}

/* Tablet */
@media (max-width:1199px){
  .btn-header{ margin: 0 24px; padding: 8px 22px; font-size: 14px; }
}

/* Celular */
@media (max-width:576px){
  .btn-header{ margin: 0 10px; padding: 6px 16px; font-size: 13px; border-width: 1.5px; }
  /* opcional: desativar o pulso no mobile
  .btn-header::before, .btn-header::after{ display:none; }
  */
}

/* Mobile: logo à esquerda, botão CENTRADO, menu à direita */
@media (max-width: 576px){
  /* o wrapper do header precisa ser flex e relativo */
  .header .container,
  .header .container-fluid,
  .header .container-xl{
    display: flex;
    align-items: center;
    position: relative;   /* permite centralizar absoluto o botão */
  }

  /* 1) logo vai à esquerda */
  .header .logo{ order: 1; margin: 0; }

  /* 2) botão vai para o MEIO absoluto */
  .header .btn-header{
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;                 /* não deixa margem empurrar */
    white-space: nowrap;       /* não quebra no mobile */
    max-width: 70vw;           /* segurança se o texto crescer */
  }

  /* 3) ícone do menu/hamburger à direita */
  .header .navmenu{ order: 3; margin-left: auto; }
  .header .mobile-nav-toggle{ order: 3; margin-left: 12px; }
}




/* Hover normal */
.btn-header:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 18px rgba(252,188,26,.35);
}

/* Pulso 1 */
.btn-header::before,
.btn-header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  border: 2px solid var(--accent-color);
  opacity: 0;
  animation: pulseBtn 2s ease-out infinite;
}

/* Segundo pulso com delay p/ intercalar */
.btn-header::after {
  animation-delay: 1s;
}

@keyframes pulseBtn {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Hero alinhado à direita (desktop) */
/* Desktop: bloco do hero encostado à direita,
   porém TÍTULO / TEXTO / BOTÃO centralizados entre si */
@media (min-width: 1024px){
  .hero .carousel-container{
    /* troca o flex por grid */
    display: grid;

    /* coluna 1 = espaço vazio; coluna 2 = seu conteúdo */
    grid-template-columns: 0.7fr minmax(0, clamp(420px, 45vw, 720px));

    /* centraliza verticalmente o conjunto na área do hero */
    align-content: center;

    /* centraliza cada item dentro da coluna de conteúdo */
    justify-items: center;

    row-gap: 12px; /* espaçamento entre título, texto e botão */
  }

  /* todos os filhos (h2, p, botão) vão para a coluna de conteúdo (direita) */
  .hero .carousel-container > *{
    grid-column: 2;
    margin: 0;
    text-align: center;
    width: 100%;          /* ocupam a largura da coluna de conteúdo */
  }

  .hero h2{
    /* se quiser limitar um pouco mais a largura do título, ajuste aqui */
    max-width: 60rem;
  }

  .hero p{
    font-size: 0.9rem;
    max-width: 35rem;
  }

  .hero .btn-get-started{
    width: auto;              /* volta a largura natural do botão */
    padding: 12px 28px;       /* ajusta o tamanho interno */
    margin-top: 20px;
    text-align: center;
    justify-self: center; 
  }
}

.hero .carousel-item:first-child::before{
  background-color: color-mix(in srgb, var(--background-color), transparent 85%) !important;
}

/* 1) Sem overlay só no 1º slide */
.hero #hero-carousel .carousel-item:nth-child(1)::before{
  background: transparent;
}

/* 2) 1º slide centralizado e botão no rodapé do hero */
@media (min-width:1024px){
  .hero #hero-carousel .carousel-item:nth-child(1) .carousel-container{
    position: absolute !important;
    inset: 0 !important;                    /* ocupa 100% do hero */
    display: flex !important;
    flex-direction: column;
    align-items: center;                    /* centraliza horizontal */
    justify-content: center;                /* centraliza vertical o bloco */
    gap: 12px;
    text-align: center;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;             /* garante que não ficou o translate de antes */
  }

  .hero #hero-carousel .carousel-item:nth-child(1) .carousel-container > *{
    width: auto !important;
    max-width: 70vw;                        /* limite opcional */
    margin: 0 auto !important;
    text-align: center !important;
  }

  /* Botão com mesmo tamanho dos outros e “colado” mais embaixo */
  .hero #hero-carousel .carousel-item:nth-child(1) .btn-get-started{
    position: static !important;            /* participa do flex (não some) */
    align-self: center !important;
    margin-top: auto !important;            /* empurra para baixo */
    margin-bottom: 20vh !important;          /* ajuste: 6vh, 10vh, 120px... */
    width: auto !important;
    padding: 8px 32px !important;           /* igual aos demais */
  }
}

/* MOBILE — reduzir logo (coloque no FINAL do CSS) */
@media (max-width: 576px){
  /* cobre os dois jeitos que vi no seu código: .logo e .sitename */
  .header .logo img,
  .sitename img{
    max-height: 32px !important; /* ajuste o número ao gosto */
    height: auto !important;
    width: auto !important;
    max-width: 100%;
  }

  /* se for logo em texto em vez de imagem */
  .header .logo h1,
  .sitename h1{
    font-size: 22px !important;
    line-height: 1.1;
  }
}

/* CSS BLOG */

/* ========== BLOG BASE ========== */
.blog-container{
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}

.blog-title{
  font: 700 43px/1.25 "Lato", sans-serif;
  margin: -20px 0 30px 0;
  color: #1f1f1f;
  font-family: var(--heading-font);
  text-align: center;
}

/* ========== GRID 1/2/3 COLUNAS ========== */
.blog-grid{
  display: grid;
  grid-template-columns: 1fr;      /* mobile */
  gap: 28px;
}
@media (min-width: 768px){
  .blog-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1200px){
  .blog-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}

/* ========== CARD ========== */
.blog-card{
  background: #fff;
  border: 1px solid rgba(90,13,173,.09);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.blog-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  border-color: rgba(90,13,173,.16);
}

/* estrutura interna p/ altura igual */
.blog-card .card-inner{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 22px 20px;
}

/* topo: título + data */
.card-header{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.card-title{
  font: 700 18px/1.3 "Lato", sans-serif;
  margin: 0;
}
.card-title a{
  color: #1f1f1f;
  text-decoration: none;
}
.card-title a:hover{ color: #5a0dad; }

.card-date{
  color: #6f6f6f;
  font: 500 12.5px/1 "Lato", sans-serif;
  white-space: nowrap;
}

/* excerpt truncado em 3 linhas (altura uniforme) */
.card-excerpt{
  color: #343434;
  margin: 8px 0 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;post
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1em * 1.55 * 3);
}

/* footer gruda embaixo */
.card-footer{
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
}

/* botão */


/* ========== POST ÚNICO (post.php) ========== */
.post-hero{
  max-width: 920px;
  margin: 50px auto 20px;
  padding: 0 18px;
}
.post-title-lg{
  font: 700 2rem/1.25 "Questrial", sans-serif;
  color: #222;
  margin: 6px 0 6px;
}
.post-meta-lg{
  font-size: 0.9rem;
  color: #737373;
  margin-bottom: 18px;
}

.post-content h2,
.post-content h3{
  margin: 22px 0 10px;
  line-height: 1.3;
  font-weight: 600;
}
.post-content blockquote{
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 4px solid #f0a500;
  background: #faf7ea;
  border-radius: 10px;
  color: #4a3f1e;
  font-style: italic;
}
.btn-back{
  font-size: 17px;
  display: inline-block;
  padding: 9px 16px;
  border-radius: 10px;
  border: 2px solid #5a0dad;
  color: #5a0dad;
  text-decoration: none;
  font-weight: 600;
  transition: .15s ease;
}
.btn-back:hover{
  background: #5a0dad;
  color: #fff;
}


/* POST */

/* POST ÚNICO – HERO + CARD */

.post-hero{
  background: #fff;
  padding: 42px 0 8px;
}

.post-hero .post-title-lg{
  max-width: 920px;
  margin: 0 auto 6px;
  padding: 0 18px;
  font: 800 2.2rem/1.22 "Questrial", sans-serif;
  color: #1f1f1f;
  letter-spacing: .2px;
}

/* linha de acento debaixo do título 
.post-hero .post-title-lg::after{
  content:"";
  display:block;
  height:4px;
  width: 86px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg,#fcbc1a 0%,#f9f91b 60%,#eef2f7 100%);
  opacity:.9;
}*/

.post-meta-lg{
  max-width: 920px;
  margin: 10px auto 22px;
  padding: 0 18px;
  color: #6f6f6f;
  font: 500 .95rem/1 "Questrial", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* pontinho roxo antes da data */
.post-meta-lg::before{
  content:"";
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #fcbc1a 65%);
  box-shadow: 0 0 0 3px #efe7ff;
  display:inline-block;
}

/* Card do corpo do post */
.post-content{
  max-width: 920px;
  margin: 0 auto 28px;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid rgba(90,13,173,.10);
  border-radius: 16px;
  box-shadow:
    0 16px 36px rgba(13, 2, 45, .08),
    0 1px 0 rgba(90,13,173,.05) inset;
  color: #222;
  font: 400 1.1rem/1.75 "Quicksand", sans-serif;
}

/* tipografia interna */
.post-content p{ margin: 0 0 16px; }
.post-content h2{ font: 700 1.6rem/1.25 "Lato",sans-serif; margin: 22px 0 10px; }
.post-content h3{ font: 700 1.3rem/1.25 "Lato",sans-serif; margin: 18px 0 8px; }

.post-content img{
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 18px 0;
  display:block;
}

.post-content ul,
.post-content ol{
  padding-left: 22px;
  margin: 12px 0 18px;
}
.post-content li{ margin-bottom: 6px; }

.post-content a{
  color:#5a0dad;
  text-decoration: underline;
}
.post-content a:hover{
  color:#3b038e;
  text-decoration: none;
}

/* citação */
.post-content blockquote{
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 4px solid #f0a500;
  background: #faf7ea;
  border-radius: 10px;
  color: #4a3f1e;
  font-style: italic;
}

/* tabelas e códigos, se usar */
.post-content table{
  width:100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
  font-size: .98rem;
}
.post-content table th,
.post-content table td{
  border: 1px solid #e9e9ee;
  padding: 10px;
}
.post-content pre,
.post-content code{
  background: #f6f4ff;
  border: 1px solid #eadfff;
  border-radius: 8px;
  color: #3e2d6b;
}
.post-content pre{
  padding: 12px 14px;
  overflow: auto;
}

/* Ações / botão voltar */
.post-actions{
  max-width: 920px;
  margin: 0 auto 52px;
  padding: 0 18px;
}

.btn-back{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 10px;
  border: 2px solid #fcbc1a;
  color: #fcbc1a;
  font: 700 18px/1 "Questrial", sans-serif;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s, transform .12s;
}
.btn-back:hover{
  background:#fcbc1a;
  color:#fff;
  border-color:#fcbc1a;
  transform: translateY(-1px);
}


.card-thumb {
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  max-height: 180px;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* imagem do card */
.card-thumb {
  width: 100%;
  height: 180px;              /* altura fixa */
  overflow: hidden;           /* corta o excesso */
  border-radius: 12px 12px 0 0; /* arredonda só em cima */
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* cobre o espaço sem distorcer */
  display: block;
}

/* Card com imagem no topo e botão sempre no rodapé */
.blog-card{
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;                 /* imagem herda o arredondado */
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

/* Thumb no topo */
.card-thumb{
  width: 100%;
  aspect-ratio: 16/9;               /* altura consistente (troque se quiser) */
  overflow: hidden;
  background: #f4f5f8;              /* cor de fundo enquanto carrega */
}

.card-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;                 /* preenche mantendo o recorte bonito */
  display: block;
}

/* Conteúdo do card */
.card-inner{
  flex: 1;                           /* ocupa o que sobrar de altura */
  display: flex;
  flex-direction: column;            /* empilha título, excerpt e footer */
  padding: 16px;
}

.card-header{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.card-title{
  font: 700 22px/1.3 "Questrial", sans-serif;
  margin: 0;
}

.card-title a{
  color: #1f1f1f;
  text-decoration: none;
}

.card-title a:hover{
  color: #fcbc1a;
}

.card-date{
  color: #6f6f6f;
  font: 500 14.5px/1 "Questrial", sans-serif;
  white-space: nowrap;
}

.card-excerpt{
  color: #3a3a3a;
  margin: 6px 0 14px;
  line-height: 1.55;
}

/* Rodapé do card (botão) */
.card-footer{
  margin-top: auto;                  /* empurra o botão para o final do card */
  display: flex;
  justify-content: flex-start;
}

.card-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 2px solid #fcbc1a;
  color: #fcbc1a;
  font: 700 18px/1 "Questrial", sans-serif;
  letter-spacing: .2px;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
}

.card-btn:hover{
  background: #fcbc1a;
  color: #fff;
  border-color: #fcbc1a;
  transform: translateY(-1px);
}

/* Excerpt dos cards do blog */
.blog-card .card-excerpt{
  font-size: 16px;        
  line-height: 1.6;       
  color: #3a3a3a;

  /* mantém o “3 linhas” alinhado ao novo tamanho */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1em * 1.6 * 3);  /* 3 linhas com line-height 1.6 */
  margin: 6px 0 14px;
}

/* 
   STEPS – MOBILE STACKED VIEW
   (não altera desktop)
    */
@media (max-width: 768px){
  /* mantém os steps dentro do banner e puxa a lista pra parte de baixo */
  .steps{
    position: absolute; inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    gap: 10px;
    z-index: 4;
    pointer-events: none; /* o clique vai ficar nos <a> */
  }

  /* cada <a.step> deixa de ser “bolinha absoluta” e vira pílula de largura total */
  .step{
    position: static;              
    transform: none;
    width: 100%;
    height: auto;
    margin: 0;
    background: transparent;       
    border: 0;
    box-shadow: none;
    pointer-events: auto;          
  }

  /* sem bolinha mobile */
  .step::before{ display: none; }

  /* o rótulo vira o próprio botão(usa o data-label como texto) */
  .step::after{
    content: attr(data-label);
    position: static;              
    transform: none;
    display: block;
    white-space: normal;
    text-align: center;

    font: 600 14px/1.2 "Poppins", system-ui, sans-serif;
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(75, 0, 154, 0.95);  
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    opacity: 1;                   
  }
}

/* CENTRALIZA OS STEPS NO MEIO DO BANNER  MOBILE */
@media (max-width: 768px){
  .steps{
    justify-content: center;   
    align-items: center;       
  }

  /* opcional: limitar largura das pílulas e centralizar melhor */
  .step::after{
    width: min(92%, 560px);
    margin: 0 auto;
  }
}


@media (max-width: 768px){
  
  .step,
  .step:hover,
  .step:focus,
  .step:active,
  .step:focus-visible{
    transform: none !important;
    outline: none;
  }

  
  .step::after,
  .step:hover::after,
  .step:focus::after,
  .step:active::after,
  .step:focus-visible::after{
    transform: none !important;
    opacity: 1 !important;      
    transition: none !important; 
  }

  
  .step { -webkit-tap-highlight-color: transparent; }
}

/*estilo "contador antigo" */
.visit-counter{
  display:flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 0; font-family: "Lato", Arial, sans-serif;
}

.vc-label{ font-weight:700; color:#eaeff5; opacity:.9; }
.vc-sep{ color:#eaeff5; opacity:.5; }

.odometer{
  display:inline-flex; gap:2px; padding:4px; border-radius:4px;
  background:#2b2b2b;             
}

.odometer .od-digit{
  display:inline-flex; align-items:center; justify-content:center;
  width:22px; height:24px; border-radius:2px;

  /* plaquinha branca com leve relevo */
  background: linear-gradient(#ffffff, #f2f2f2);
  border:1px solid #bfbfbf;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -1px 0 rgba(0,0,0,.08);

  font: 700 16px/1 "Roboto Mono", ui-monospace, "Courier New", monospace;
  color:#111; letter-spacing:.5px;
}

/* versão menor (paraHoje) */
.odometer.od-small .od-digit{
  width:18px; height:20px; font-size:14px;
}

/* responsivo: deixa tudo um pouco menor em telas estreitas */
@media (max-width: 480px){
  .visit-counter{ gap:8px; padding:10px 0; }
  .odometer .od-digit{ width:19px; height:22px; font-size:15px; }
  .odometer.od-small .od-digit{ width:16px; height:18px; font-size:13px; }
  .vc-label{ font-size:14px; }
}

/* DENTRO DO POST*/


.post-content figure{ margin:18px 0; }
.post-content figure img{ display:block; margin:0 auto; }
.post-content figcaption{
  margin-top:8px;
  font: 600 0.95rem/1.35 "Lato", sans-serif;
  color:#6b6b6b;
  text-align:center;
}


.post-content .aligncenter{ display:block; margin:14px auto; text-align:center; }
.post-content .alignleft,
.post-content .alignright{ display:block; margin:14px 0; }

@media (min-width:768px){
  .post-content .alignleft{
    float:left;
    margin:6px 18px 12px 0;
    max-width:48%;
  }
  .post-content .alignright{
    float:right;
    margin:6px 0 12px 18px;
    max-width:48%;
  }
}


.post-content .size-thumbnail{ max-width:150px; }
.post-content .size-medium   { max-width:300px; }
.post-content .size-large    { max-width:1024px; }
.post-content .size-full     { max-width:100%; }

/* vídeos responsivos ( em <div class="embed">) */
.post-content .embed{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:#000;
  border-radius:12px;
  overflow:hidden;
  margin:18px 0;
}
.post-content .embed iframe,
.post-content .embed video{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}


.post-content::after{ content:""; display:block; clear:both; }

/* IMAGEM DESTACAA (capa do post) */
.post-cover img {
  width: 100%;              
  height: auto;             
  border-radius: 14px;      
  margin: 0 auto 28px;      
  display: block;           
  object-fit: cover;        
  max-height: 420px;        
}

/* IMAGENS DENTRO */
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 18px auto;        
  display: block;
}

/*  RESPONSIVO imagem destacada no mobil */
@media (max-width: 768px) {
  .post-cover img {
    max-height: 260px;   
    object-fit: cover;   
    border-radius: 10px; 
  }
}

/* Blog: header sólido e espaço abaixo do menu fixo */
.blog-page .header{ background:#060606 !important; }
.blog-page main.blog-container{ padding-top: 96px; } /* ajuste fino */
.blog-page main.post-container { padding-top: 96px; }


/* Estilização específica para MOBILE (até 575px) */
@media (max-width: 575.98px) {

  /* Centraliza todo o conteúdo do slide */
  #hero .carousel-container {
    text-align: center;
    padding: 0 1rem;
    position: absolute;
    bottom: 0.2rem;           /* empurra para mais baixo */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

  /* Títulos menores no mobile */
  #hero .carousel-container h2 {
    font-size: 1.4rem;      /* diminui título */
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  /* Subtítulo/parágrafo menor */
  #hero .carousel-container p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }

  /* Botão menor e mais ajustado */
  #hero .btn-get-started {
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 25px;
    display: inline-block;
  }
}


/* Dê altura aos slides */
.hero .carousel-inner,
.hero .carousel-item{
  min-height: 100vh;       /* ou height:100vh */
}

/* Mostra só o slide ativo (Bootstrap) */
.hero .carousel .carousel-item { display: none; }
.hero .carousel .carousel-item.active { display: block; }

/* Mantém camadas corretas */
.hero img{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero .carousel-item::before{
  content:"";
  position:absolute; inset:0;
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  z-index: 2;
}
.hero .carousel-container{
  position: absolute;
  inset: 90px 64px 64px 64px;
  z-index: 3;
}

/* Hero – descer conteúdo no mobile */
@media (max-width: 575.98px){
  #hero .carousel-container{
    bottom: 5vh;            /* ajuste fino: 8–16vh conforme gostar */
    left: 50%;
    transform: translateX(-50%);
  }

  /* opcional: dar um respiro entre os elementos */
  #hero .carousel-container h2{ margin-bottom: .8rem; }
  #hero .carousel-container p { margin-bottom: 1rem; }
  #hero .btn-get-started       { margin-top: .6rem; }
}

/* Hero – descer conteúdo no mobile (sobrescreve o inset) */
@media (max-width: 575.98px){
  #hero .carousel-container{
    /* anula o top e redefine as bordas */
    top: auto !important;
    right: 0 !important;
    left: 0 !important;
    bottom: 16vh !important;            /* ajuste: 8–16vh conforme quiser */
    inset: auto 0 16vh 0 !important;    /* opcional: mesma coisa em 1 linha */
    
    transform: none !important;
    text-align: center;
    padding: 0 1rem !important;
  }

  /* respirinho entre os elementos */
  #hero .carousel-container h2{ margin-bottom: .8rem; }
  #hero .carousel-container p { margin-bottom: 1rem; }
  #hero .btn-get-started       { margin-top: .6rem; }
}


@media (max-width: 575.98px){
  /* Slide 2: puxa ~10–20% para a direita */
  #hero-carousel .carousel-item:nth-child(2) img.hero-img{
    object-position: 31% center; /* ajuste fino: 60–70% */
  }

  /* Slide 3: idem */
  #hero-carousel .carousel-item:nth-child(3) img.hero-img{
    object-position: 23% center;
  }
}





  /* === Ajustes do carrossel de features – apenas no MOBILE/TABLET === */
@media (max-width: 991.98px) {
  #features .carousel-item .row {
    flex-direction: column;
    text-align: center;
  }

  #features .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 1rem;
  }

  #features .carousel-item .content {
    padding: 0 1rem;
  }

  #features .carousel-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  #features .carousel-item p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  #features .carousel-item .btn {
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 25px;
  }
}


/* Mobile: aumentar e subir o botão SÓ no 1º slide */
@media (max-width: 575.98px){
  /* aumenta o botão */
  #hero-carousel .carousel-item:nth-child(1) .btn-get-started{
    font-size: 0.90rem;         /* ↑ tamanho do texto */
    padding: 8px 24px;         /* ↑ “gordura” do botão */
    border-radius: 28px;
  }

  /* sobe o bloco do slide OU só o botão (use 1 dos dois jeitos abaixo) */
  /* JEITO A – sobe todo o conteúdo do slide */
  #hero-carousel .carousel-item:nth-child(1) .carousel-container{
    bottom: 24vh !important;    /* ajuste fino: 18–28vh */
  }

  
  } 


/* Ajuste global dos subtítulos das seções - MOBILE */
@media (max-width: 575.98px) {
  :where(.section-title, .container.section-title) > p,
  :where(.section-title, .container.section-title) > p.lead {
    max-width: 95% !important;       /* ocupa quase toda a largura */
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    font-size: 0.95rem !important;   /* fonte um pouco menor */
    line-height: 1.5 !important;
    text-wrap: balance;
  }
}

@media (max-width: 575.98px) {
  .about-content h3 {
    font-size: 1.2rem !important;   /* diminui a fonte */
    text-align: center !important;  /* centraliza */
    line-height: 1.4;               /* melhora a leitura */
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .about-content p {
    font-size: 0.9rem !important;    /* diminui a fonte */
    text-align: center !important;   /* centraliza no mobile */
    line-height: 1.5;                /* melhora a leitura */
    max-width: 90%;                  /* evita quebrar demais nas bordas */
    margin-left: auto;
    margin-right: auto;
  }
}



@media (max-width: 575.98px) {
  .about-content ul li {
    flex-direction: column;       /* Ícone em cima, texto embaixo */
    align-items: center;          /* Centraliza horizontalmente */
    text-align: center;          /* Centraliza o texto */
    gap: 8px;                     /* Espaço entre ícone e texto */
  }

  .about-content ul li i {
    font-size: 2rem;              /* Ícone maior, se quiser destaque */
    margin-bottom: 0;
  }

  .about-content ul li h4 {
    font-size: 1rem;              /* Ajusta tamanho do nome */
    margin: 0;
  }

  .about-content ul li p {
    font-size: 0.85rem;           /* Texto menor */
    margin: 0;
  }
}

/* MOBILE — centralizar o ícone e empilhar com o texto */
@media (max-width: 575.98px){
  .about .about-content ul li{
    flex-direction: column !important;   /* ícone em cima, texto embaixo */
    align-items: center !important;      /* centraliza o conteúdo */
    text-align: center;
    gap: 8px;
  }

  /* o ícone em si */
  .about .about-content ul li > i{
    margin-right: 0 !important;          /* remove o empurrão pra direita */
    margin-left: 0 !important;
    margin-bottom: 8px;                  
    align-self: center !important;        /* garante centro mesmo se algo sobrescrever */
    display: inline-flex;                 /* mantém o quadradinho */
  }
}

/* 3º slide do banner — ajustes de tipografia no DESKTOP */
@media (min-width: 1024px){
  #hero-carousel .carousel-item:nth-child(3) .carousel-container p{
    font-size: 1.2rem;   /* ↑ tamanho do subtítulo */
    line-height: 1.8;     /* ↑ respiro entre linhas */
    max-width: 48rem;     /* controla a largura do parágrafo */
    margin: 0 auto;       /* centraliza caso esteja com largura limitada */
  }

  /* opcional: se quiser crescer o título também */
  #hero-carousel .carousel-item:nth-child(3) .carousel-container h2{
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: .75rem;
  }
}

.post-share{
  max-width: 920px;
  margin: 0 auto 18px;
  padding: 0 18px;
}

.btn-whatsapp{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 1.8px solid #25D366;
  color: #25D366;
  background: #fff;
  padding: .55rem .9rem;
  border-radius: 999px;
  font-weight: 700;
  font-family: "Questrial", sans-serif;
  letter-spacing: .2px;
  transition: .18s ease-in-out;
}
.btn-whatsapp:hover{
  background: #25D366;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-whatsapp .bi{ font-size: 1.1rem; line-height: 1; }

/* ===============================
   AÇÕES DO POST (voltar + compartilhar)
   =============================== */

.post-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 920px;
  margin: 22px auto;
  padding: 0 18px;
  flex-wrap: wrap;
  gap: 10px;
}

/* Botão Voltar ao Blog */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1.8px solid #ffb400;
  color: #ffb400;
  background: #fff;
  padding: .55rem .9rem;
  border-radius: 999px;
  font-weight: 700;
  font-family: "Questrial", sans-serif;
  letter-spacing: .2px;
  transition: .18s ease-in-out;
  text-decoration: none;
}

.btn-back:hover {
  background: #ffb400;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Botão Compartilhar no WhatsApp */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1.8px solid #25D366;
  color: #222;
  background: #fff;
  padding: .55rem .9rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: "Questrial", sans-serif;
  letter-spacing: .2px;
  transition: .18s ease-in-out;
  text-decoration: none;
}

.btn-whatsapp .bi {
  font-size: 1.1rem;
  line-height: 1;
  color: #25D366; /* Ícone verde fixo */
}

.btn-whatsapp:hover {
  background: #25D366;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-whatsapp:hover .bi {
  color: #fff; /* Ícone fica branco no hover */
}

/* Responsividade */
@media (max-width: 600px) {
  .post-actions-row {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .btn-back,
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* adicionando o + em Nossos números */
/* só adiciona o + onde tiver a classe with-plus */
.stat-number.with-plus::before {
  content: "+";
  font-weight: 700;
  margin-right: 2px;
  display: inline-block;
}


/* === AJUSTES PARA O SEGUNDO SLIDE === */

/* 1. Clareia o overlay (mantém um leve escurecimento) */
#hero-carousel .carousel-item:nth-child(2)::before {
  background: rgba(0, 0, 0, 0.10) !important; /* 0.25 = 25% de escurecimento */
}


/* === BOTÃO DOURADO COM BORDA PRETA E PULSAÇÃO AMPLA === */
.section-cta {
  text-align: center;
  margin-top: 50px;
}

.section-cta a {
  display: inline-block;
  background: #f9b300;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 38px;
  border-radius: 50px;
  border: 1px solid #000; /* borda preta fina */
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 0 0 rgba(249, 179, 0, 0.6);
  animation: pulseGoldBig 2.8s infinite ease-in-out;
}

/* Animação de pulsação dourada mais ampla */
@keyframes pulseGoldBig {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 179, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 25px 20px rgba(249, 179, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 179, 0, 0);
  }
}

/* Efeito hover invertido e elegante */
.section-cta a:hover {
  background: #000;
  color: #f9b300;
  border-color: #f9b300;
  box-shadow: 0 0 30px rgba(249, 179, 0, 0.8);
}


/* === AJUSTE: mover imagem MOBILE do segundo slide para a esquerda === */
@media (max-width: 575.98px) {
  /* se a imagem estiver dentro de <picture> */
  #hero-carousel .carousel-item:nth-child(3) picture source,
  #hero-carousel .carousel-item:nth-child(3) picture img {
    object-position: 35% center !important; /* menor = mais para esquerda */
  }

  /* fallback se for <img> direto */
  #hero-carousel .carousel-item:nth-child(3) img {
    object-position: 45% center !important;
  }
}


/* === AJUSTE DO OVERLAY DAS IMAGENS DO SLIDE === */

/* --- DESKTOP --- */
#hero-carousel .carousel-item:nth-child(3)::before {
  background: rgba(0, 0, 0, 0.20) !important; /* leve escurecimento */
}

#hero-carousel .carousel-item:nth-child(2)::before {
  background: rgba(0, 0, 0, 0.15) !important; /* um pouco mais escuro */
}

/* --- MOBILE --- */
@media (max-width: 575.98px) {
  #hero-carousel .carousel-item:nth-child(3)::before {
    background: rgba(0, 0, 0, 0.10) !important; /* overlay mais claro no mobile */
  }

  #hero-carousel .carousel-item:nth-child(2)::before {
    background: rgba(0, 0, 0, 0.10) !important; /* overlay um pouco mais forte */
  }
}

/* === ESPAÇAMENTO PADRÃO DOS BOTÕES CTA EM TODAS AS SEÇÕES === */
.section-cta {
  text-align: center;
  margin-top: 60px;   /* distância de cima */
  margin-bottom: 60px; /* distância de baixo */
}

/* versão mobile — espaço um pouco menor */
@media (max-width: 575.98px) {
  .section-cta {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

/* === AJUSTE DE PADDING DAS SEÇÕES: Serviços, Serviços Relacionados, Por que Nós e Contato === */
#services.section,
#features.section,
#why-us.section,
#contact.section {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

/* 🔹 Versão mobile – mais enxuta */
@media (max-width: 575.98px) {
  #services.section,
  #features.section,
  #why-us.section,
  #contact.section {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
}

/* === AJUSTE DO TERCEIRO SLIDE: espaçamento entre título e texto === */
#hero .carousel-item:nth-child(3) h2 {
  margin-bottom: 5px !important; /* valor reduzido do espaçamento */
}

/* 🔹 Versão mobile (ainda mais ajustado) */
@media (max-width: 575.98px) {
  #hero .carousel-item:nth-child(3) h2 {
    margin-bottom: 4px !important;
  }
}

/* === CORREÇÃO DE FAIXA PRETA NO SEGUNDO SLIDE MOBILE === */
@media (max-width: 575.98px) {
  #hero .carousel-item:nth-child(2) picture img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* faz a imagem preencher todo o espaço */
    object-position: 60% center; /* puxa um pouco para a direita */
    transform: none; /* remove o translate anterior */
    background-color: #000; /* evita transparência nas bordas */
  }
}
