@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  font-family: "Inter", sans-serif;
  color: #333333;
  background: #ffffff;
  overflow-x: hidden;
}

p {
  font-family: "Inter", sans-serif;
  color: #6c757d;
}

.text-green {
  color: #c9ff4c;
}

.wow {
  visibility: visible !important;
}

.animate__animated {
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  will-change: transform, opacity;
}

.hero {
  min-height: 70vh;
  margin-top: 75px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff !important;
}
.hero__overlay {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 70vh;
  padding: 5rem 1rem;
  display: flex;
  align-items: center;
}
.hero__title {
  font-family: "Inter", sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
}
.hero__lead {
  color: #ffffff !important;
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.35);
}
.hero__button .hero-cta {
  background: #84BD00;
  color: #ffffff;
  border-radius: 5rem;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 2rem;
  transition: all 0.3s ease;
}
.hero__button .hero-cta:hover {
  transform: translateY(-2px) !important;
  background: #97ca20;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .hero__title {
    font-size: 2.25rem;
  }
  .hero__lead {
    font-size: 1rem;
  }
  .hero__overlay {
    padding: 3rem 0;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
  }
  .hero__overlay {
    height: 50vh;
    padding: 2rem 0;
  }
  .hero__title {
    font-size: 1.7rem;
    line-height: 1.4;
  }
  .hero__lead {
    margin-bottom: 2.5rem;
  }
}
.btn-cta-1 {
  background-color: #ffffff;
  color: #84BD00;
  font-weight: 600;
  padding: 8px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-cta-1:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
}

.btn-cta-2 {
  background-color: #84BD00;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-cta-2:hover {
  background-color: #97ca20;
  transform: translateY(-3px);
}

@keyframes floatUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-up {
  animation: floatUp 1s ease forwards;
}

/* Animação suave e contínua do flip */
@keyframes flipIcon {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
header .navbar {
  padding: 0.8rem 1rem;
}
header .navbar .navbar-brand img {
  height: 65px;
  transition: all 0.2s ease-in-out;
}
header .navbar .navbar-nav {
  align-items: center;
}
header .navbar .navbar-nav .nav-item {
  margin: 0 1.5rem;
}
header .navbar .navbar-nav .nav-item .nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #6c757d;
  position: relative;
  text-transform: none;
  padding: 0 !important;
  transition: all 0.3s ease-in-out;
}
header .navbar .navbar-nav .nav-item .nav-link:hover, header .navbar .navbar-nav .nav-item .nav-link.active {
  color: #84BD00;
}
header .navbar .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #84BD00;
  transition: all 0.3s ease-in-out;
}
header .navbar .navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}
header .navbar .navbar-nav .nav-item .dropdown-toggle::after {
  margin-left: 5px;
  vertical-align: middle;
  border-top: 0.4em solid #84BD00;
}
header .navbar .navbar-nav .nav-item .btn-cta-menu {
  background-color: #84BD00;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 30px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
header .navbar .navbar-nav .nav-item .btn-cta-menu:hover {
  background-color: #97ca20;
  transform: translateY(-3px);
}
header .navbar .dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0;
  background-color: #ffffff;
  margin-top: 25px;
  right: auto;
  animation: fadeIn 0.2s ease-in-out;
}
header .navbar .dropdown-menu .dropdown-item {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6c757d;
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease-in-out;
}
header .navbar .dropdown-menu .dropdown-item:hover {
  background-color: rgba(132, 189, 0, 0.1);
  color: #84BD00;
  padding-left: 1.8rem;
}

@media (max-width: 992px) {
  header .navbar {
    padding: 0.6rem 1rem;
  }
  header .navbar .navbar-brand img {
    height: 65px;
  }
  header .navbar .navbar-nav {
    align-items: flex-start;
  }
  header .navbar .navbar-nav .nav-item {
    margin: 0.6rem 0;
  }
  header .navbar .navbar-nav .dropdown-menu {
    margin-top: 10px;
    box-shadow: none;
  }
}
@media (max-width: 768px) {
  header .navbar .navbar-brand img {
    height: 60px;
  }
}
footer {
  background-color: #333333;
  color: #ffffff;
  padding: 1.5rem 0;
}
footer .logo-footer {
  padding-bottom: 0.8rem;
}
footer .logo-footer img {
  height: 65px;
}
footer p {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  color: #ffffff !important;
}
footer .items-solutions li a,
footer .contacts li a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.25s ease;
}
footer .items-solutions li a:hover,
footer .contacts li a:hover {
  color: #97ca20;
}
footer .medias a {
  text-decoration: none;
  transition: all 0.25s ease;
}
footer .medias a i {
  color: #ffffff;
}
footer .medias a:hover i {
  color: #97ca20;
}

@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  footer p {
    font-size: 0.875rem;
  }
}
.hero-section {
  margin-top: 75px;
}
.hero-section .hero-slide {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}
.hero-section .hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-section .hero-slide .hero-content {
  padding: 2rem 0;
  text-align: center;
  color: #ffffff;
  animation: fadeIn 1.2s ease;
}
.hero-section .hero-slide .hero-content h1.hero-title {
  font-family: "Inter", sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
}
.hero-section .hero-slide .hero-content p {
  color: #ffffff !important;
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 2rem;
}
.hero-section .hero-slide .hero-content .hero-cta {
  background: #84BD00;
  color: #ffffff;
  border-radius: 5rem;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 2rem;
  transition: all 0.3s ease;
}
.hero-section .hero-slide .hero-content .hero-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.hero-section .swiper-button-next:hover,
.hero-section .swiper-button-prev:hover {
  color: #84BD00;
}
.hero-section .swiper-button-next::after,
.hero-section .swiper-button-prev::after {
  font-size: 26px;
}
.hero-section .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.8;
}
.hero-section .swiper-pagination-bullet-active {
  background: #84BD00;
}

@media (max-width: 992px) {
  .hero-section .hero-slide .hero-content h1.hero-title {
    font-size: 1.8rem;
  }
  .hero-section .hero-slide .hero-content p {
    font-size: 1rem;
  }
  .hero-section .hero-slide .hero-content .hero-cta {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.1rem;
    margin-top: 1.4rem;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-slide {
    min-height: 50vh;
    padding: 3rem 1rem;
  }
  .hero-section .hero-slide .hero-content h1.hero-title {
    font-size: 1.875rem;
  }
  .hero-section .hero-slide .hero-content p {
    font-size: 1rem;
  }
  .hero-section .hero-slide .hero-content .hero-cta {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
}
@media (max-width: 576px) {
  .hero-section {
    margin-top: 70px;
  }
  .hero-section .hero-slide .hero-content h1.hero-title {
    font-size: 1.875rem;
  }
  .hero-section .hero-slide .hero-content p {
    font-size: 1rem;
  }
  .hero-section .hero-slide .hero-content .hero-cta {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
  .hero-section .swiper-button-next, .hero-section .swiper-button-prev {
    display: none;
  }
}
.client-section {
  background-color: #f9fafb;
  padding: 5rem 0;
}
.client-section h3 {
  color: #6c757d;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.client-section .client-logo {
  filter: grayscale(100%);
  transition: all 0.25s ease;
  opacity: 0.9;
}
.client-section .client-logo:hover {
  filter: grayscale(0);
  transform: scale(1.05);
  opacity: 1;
}
.client-section .owl-carousel .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.client-section .owl-carousel .item img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.client-section .owl-carousel .item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .client-section h3 {
    font-size: 0.775rem;
  }
  .client-section .owl-carousel .item {
    padding: 0;
  }
}
.about-section {
  padding: 5rem 0;
}

@media (max-width: 992px) {
  .about-section {
    padding: 4rem 0;
  }
}
.solutions-section {
  background-color: #f9fafb;
  padding: 5rem 0;
}
.solutions-section h2 {
  font-family: "Inter", sans-serif;
  color: #333333;
}
.solutions-section .line {
  width: 5rem;
  height: 0.25rem;
  background-color: #84BD00;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.solutions-section .service-card {
  border-radius: 0.75rem;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}
.solutions-section .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.solutions-section .service-card:hover .link-service {
  text-decoration: underline;
}
.solutions-section .service-card a {
  text-decoration: none;
}
.solutions-section .service-card .service-icon {
  color: #84BD00;
}
.solutions-section .service-card h3 {
  color: #333333;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
  margin-bottom: 0.75rem;
}
.solutions-section .service-card p {
  color: #6c757d !important;
}
.solutions-section .service-card .link-service {
  color: #84BD00;
}

@media (max-width: 992px) {
  .solutions-section {
    padding: 4rem 0;
  }
  .solutions-section .service-card {
    padding: 1.25rem;
  }
  .solutions-section .service-card h3 {
    font-size: 1rem;
    line-height: 1.3rem;
  }
  .solutions-section .service-card p {
    font-size: 0.8rem;
  }
  .solutions-section .service-card .link-service {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .solutions-section h2 {
    font-size: 1.75rem;
  }
  .solutions-section .service-card h3 {
    font-size: 1.25rem;
  }
  .solutions-section .service-card p, .solutions-section .service-card .link-service {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .solutions-section {
    padding: 3rem 0;
  }
  .solutions-section .service-card {
    margin-bottom: 1rem;
  }
}
.differentiators-section {
  background: #ffffff;
  padding: 0 0 5rem;
}
.differentiators-section h2 {
  color: #333333;
  font-family: "Inter", sans-serif;
}
.differentiators-section .line {
  width: 5rem;
  height: 0.25rem;
  background-color: #84BD00;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.differentiators-section .text-success {
  color: #84BD00 !important;
}
.differentiators-section .card-differentials {
  border-radius: 0.75rem;
  padding: 2rem;
  background: rgba(132, 189, 0, 0.08);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}
.differentiators-section .card-differentials:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.differentiators-section .card-differentials:hover .icon-wrap .fa-stack {
  transform: scale(1.1);
}
.differentiators-section .card-differentials .icon-wrap .fa-stack {
  font-size: 2rem;
  position: relative;
  transition: transform 0.3s ease;
}
.differentiators-section .card-differentials .icon-wrap .fa-stack .fa-circle {
  color: #84BD00;
  font-size: 2em;
}
.differentiators-section .card-differentials .icon-wrap .fa-stack .fa-stack-1x {
  font-size: 1em;
}
.differentiators-section .card-differentials h5 {
  color: #333333;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.differentiators-section .card-differentials p {
  color: #6c757d;
}

@media (max-width: 992px) {
  .differentiators-section {
    padding: 0 0 4rem;
  }
  .differentiators-section .card-differentials {
    padding: 1.5rem;
    height: 100%;
  }
  .differentiators-section .card-differentials .icon-wrap {
    margin-right: 0.5rem !important;
  }
  .differentiators-section .card-differentials .icon-wrap .fa-stack {
    font-size: 1.5rem;
  }
  .differentiators-section .card-differentials h5 {
    font-size: 1rem;
    line-height: 1.3rem;
  }
  .differentiators-section .card-differentials p {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .differentiators-section h2 {
    font-size: 1.75rem;
  }
  .differentiators-section .card-differentials {
    align-items: center !important;
  }
  .differentiators-section .card-differentials .icon-wrap {
    margin-right: 0.5rem !important;
  }
  .differentiators-section .card-differentials .icon-wrap .fa-stack {
    font-size: 1.5rem;
  }
  .differentiators-section .card-differentials h5 {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
  .differentiators-section .card-differentials p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .differentiators-section {
    padding: 0 0 3rem;
  }
}
.contact-section {
  padding: 5rem 0;
  background-color: #84BD00;
}
.contact-section .cta-content {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}
.contact-section .cta-content h1,
.contact-section .cta-content h2,
.contact-section .cta-content h3 {
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 991px) {
  .contact-section .cta-content h1,
  .contact-section .cta-content h2,
  .contact-section .cta-content h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.contact-section .cta-content p {
  max-width: 35rem;
  margin: 0 auto;
  color: #ffffff !important;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.contact-section .cta-content .btn-cta {
  background-color: #ffffff;
  color: #84BD00;
  font-weight: 600;
  padding: 8px 40px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact-section .cta-content .btn-cta:hover {
  background-color: rgb(242.25, 242.25, 242.25);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .contact-section {
    padding: 4rem 0;
  }
  .contact-section .cta-content {
    padding-left: 0;
    padding-right: 0;
  }
  .contact-section .cta-content p {
    max-width: 100%;
    font-size: 1rem;
  }
  .contact-section .cta-content .btn-cta {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.1rem;
    margin-top: 1.4rem;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  .contact-section .cta-content h1, .contact-section .cta-content h2, .contact-section .cta-content h3 {
    font-size: 1.75rem;
  }
  .contact-section .cta-content p {
    font-size: 1rem;
  }
  .contact-section .cta-content .btn-cta {
    padding: 10px 30px;
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }
}
@media (max-width: 576px) {
  .contact-section .cta-content h1, .contact-section .cta-content h2, .contact-section .cta-content h3 {
    font-size: 1.5rem;
  }
  .contact-section .cta-content p {
    max-width: 100%;
    font-size: 1rem;
  }
}
.leadership-hero {
  min-height: 70vh;
  margin-top: 75px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff !important;
}
.leadership-hero__overlay {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 70vh;
  padding: 5rem 1rem;
  display: flex;
  align-items: center;
}
.leadership-hero__title {
  font-family: "Inter", sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
}
.leadership-hero__lead {
  color: #ffffff !important;
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.35);
}
.leadership-hero__button .hero-cta {
  background: #84BD00;
  color: #ffffff;
  border-radius: 5rem;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 2rem;
  transition: all 0.3s ease;
}
.leadership-hero__button .hero-cta:hover {
  transform: translateY(-2px) !important;
  background: #97ca20;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .leadership-hero__title {
    font-size: 2.25rem;
  }
  .leadership-hero__lead {
    font-size: 1rem;
  }
  .leadership-hero__overlay {
    padding: 3rem 0;
  }
}
@media (max-width: 768px) {
  .leadership-hero {
    min-height: 50vh;
  }
  .leadership-hero__overlay {
    height: 50vh;
    padding: 2rem 0;
  }
  .leadership-hero__title {
    font-size: 1.7rem;
    line-height: 1.4;
  }
  .leadership-hero__lead {
    margin-bottom: 2.5rem;
  }
}
.leadership-stakes {
  padding: 5rem 0;
  background: #ffffff;
}
.leadership-stakes__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.leadership-stakes__item {
  border-radius: 0.6rem;
  background: #f3f4f6;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.leadership-stakes__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.leadership-stakes__item .text-success {
  color: #84BD00 !important;
  display: inline-block;
  animation: flipIcon 5s ease-in-out infinite;
  transform-origin: center;
  backface-visibility: visible;
}

@media (max-width: 992px) {
  .leadership-stakes {
    padding: 4rem 1rem;
  }
}
.leadership-values {
  padding: 5rem 0;
  background: #f9fafb;
}
.leadership-values__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.leadership-values .card {
  border-radius: 0.75rem;
}
.leadership-values .card__title {
  color: #333333;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.leadership-values .fa-solid {
  color: #84BD00;
}

.leadership-guide {
  padding: 5rem 0;
  background: #ffffff;
}
.leadership-guide__photo {
  width: 100%;
  height: 500px;
  border-radius: 0.6rem;
}
.leadership-guide__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 0.6rem;
}
.leadership-guide__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.leadership-guide__subtitle {
  color: #84BD00;
  font-weight: 600;
}
.leadership-guide ul {
  margin-top: 1rem;
}
.leadership-guide ul li {
  margin-bottom: 0.65rem;
}
.leadership-guide ul li i {
  color: #84BD00;
}

.leadership-plan {
  padding: 5rem 0;
  position: relative;
  /* Extra small (até 575px) */
}
.leadership-plan__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.leadership-plan__line {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 3px;
  background-color: #84BD00;
  z-index: 1;
  transition: all 0.3s ease;
}
.leadership-plan__step {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border: 3px solid #84BD00;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #84BD00;
  box-shadow: 0 4px 15px rgba(51, 51, 51, 0.08);
  transition: all 0.3s ease-in-out;
}
.leadership-plan__step:hover {
  background-color: #84BD00;
  color: #fff;
  transform: scale(1.05);
}
.leadership-plan h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}
.leadership-plan .btn-cta {
  background-color: #84BD00;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 40px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.leadership-plan .btn-cta:hover {
  background-color: #97ca20;
  transform: translateY(-3px);
}
@media (max-width: 992px) {
  .leadership-plan__line {
    width: 80%;
    top: 30px;
  }
  .leadership-plan .col-md-4 {
    margin-bottom: 40px;
  }
  .leadership-plan h3 {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .leadership-plan .row {
    padding: 20px 0;
  }
  .leadership-plan__line {
    display: contents;
  }
  .leadership-plan__line::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 3px;
    height: 95%;
    background-color: #84BD00;
    z-index: 0;
    backface-visibility: hidden;
  }
  .leadership-plan .leadership-plan__step {
    width: 70px;
    height: 70px;
  }
  .leadership-plan .leadership-plan__content {
    max-width: 250px;
    padding: 0 20px;
  }
  .leadership-plan .leadership-plan__content h3 {
    margin-top: 0 !important;
  }
  .leadership-plan .col-12 {
    /* Intercala os lados das steps */
  }
  .leadership-plan .col-12:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .leadership-plan .col-12:nth-child(odd) .leadership-plan__content {
    text-align: right;
    margin-top: 30px;
    margin-bottom: 15px;
    margin-right: auto;
    margin-left: 0;
  }
  .leadership-plan .col-12:nth-child(even) {
    flex-direction: row;
  }
  .leadership-plan .col-12:nth-child(even) .leadership-plan__content {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: 0;
  }
}
@media (max-width: 576px) {
  .leadership-plan .col-12 .leadership-plan__step {
    width: 60px;
    height: 60px;
  }
  .leadership-plan .col-12 .leadership-plan__content {
    max-width: 190px;
  }
  .leadership-plan .col-12 .leadership-plan__content h3 {
    font-size: 1rem;
  }
  .leadership-plan .col-12 .leadership-plan__content p {
    font-size: 0.875rem;
  }
}

.leadership-cta {
  background: #1f2937;
  padding: 5rem 0;
}
.leadership-cta__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
.leadership-cta .line {
  width: 5rem;
  height: 0.25rem;
  background-color: #84BD00;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.leadership-cta__content p {
  color: #ffffff !important;
}
.leadership-cta__content .callout {
  padding: 1.25rem;
  height: 100%;
  border-radius: 0.875rem;
  font-style: italic;
  background-color: #ffffff;
}
.leadership-cta__content .callout.callout-info {
  color: #00b9e1;
  border-left: 0.35rem solid rgba(13, 202, 240, 0.75);
}
.leadership-cta__content .callout.callout-danger {
  color: #ff8f9b;
  border-left: 0.35rem solid rgba(220, 53, 69, 0.75);
}
.leadership-cta__content h4 {
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  margin-top: 3rem;
}
.leadership-cta__content .list-tb-steps .list-group-item {
  text-align: center;
  border: none;
}
.leadership-cta__content .list-tb-steps .list-group-item:first-child:not(:last-child) {
  border-top-left-radius: 0.875rem;
  border-bottom-left-radius: 0.875rem;
}
.leadership-cta__content .list-tb-steps .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: 0.875rem;
  border-bottom-right-radius: 0.875rem;
}
.leadership-cta__content .list-tb-steps .list-group-item.active, .leadership-cta__content .list-tb-steps .list-group-item:hover {
  background-color: #97ca20;
  color: #ffffff;
}
.leadership-cta__content .tab-content {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px 15px 15px;
  margin-top: -15px;
  border-bottom-left-radius: 0.875rem;
  border-bottom-right-radius: 0.875rem;
}
.leadership-cta__content .tab-content p {
  color: #97ca20 !important;
  margin-bottom: 0;
}
.leadership-cta__frase {
  color: #ffffff !important;
  text-align: center;
}
.leadership-cta .btn-light {
  color: #84BD00;
  font-weight: 700;
}

@media (max-width: 992px) {
  .leadership-values,
  .leadership-guide,
  .leadership-plan,
  .leadership-cta {
    padding: 4rem 1rem;
  }
}
@media (max-width: 768px) {
  .leadership-values .card {
    padding: 1.25rem;
  }
}
.mentoring-problems {
  padding: 5rem 0;
}
.mentoring-problems__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-align: center;
}
.mentoring-problems__item {
  background: #ffffff;
  border-left: 3px solid #84BD00;
  color: #6c757d;
  padding: 1.25rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 3px 15px rgba(51, 51, 51, 0.05);
  transition: all 0.3s ease;
}
.mentoring-problems__item strong,
.mentoring-problems__item b {
  color: #1f2937;
}
.mentoring-problems__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(51, 51, 51, 0.1);
}

.mentoring {
  padding: 5rem 0;
}
.mentoring__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-align: center;
}
.mentoring .line {
  width: 5rem;
  height: 0.25rem;
  background-color: #84BD00;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.mentoring__card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(51, 51, 51, 0.05);
  transition: all 0.3s ease;
}
.mentoring__card:hover {
  transform: translateY(-5px);
}
.mentoring__icon {
  font-size: 2.5rem;
  color: #84BD00;
}

.mentoring-guide {
  padding: 5rem 0;
}
.mentoring-guide__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-align: center;
}
.mentoring-guide__lead {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.75rem;
  text-align: center;
}
.mentoring-guide__photo {
  width: 100%;
  height: 340px;
  border-radius: 0.6rem;
}
.mentoring-guide__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 0.6rem;
}
.mentoring-guide__apresentation h3 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.mentoring-guide__apresentation ul li {
  color: #6c757d;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.mentoring-guide__apresentation ul li i {
  color: #97ca20;
  font-size: 1.2rem;
}
.mentoring-guide__apresentation ul li strong,
.mentoring-guide__apresentation ul li b {
  color: #97ca20;
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  text-decoration: underline;
}

.mentoring-testimonials {
  padding-bottom: 4rem;
}
.mentoring-testimonials__headline {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-align: center;
}
.mentoring-testimonials .line {
  width: 5rem;
  height: 0.25rem;
  background-color: #84BD00;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.mentoring-testimonials .testimonial-carousel {
  padding: 15px;
}
.mentoring-testimonials .testimonial-carousel__card {
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #84BD00;
  background: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 1rem 5px 1rem 0;
  min-height: 300px;
  height: 100%;
  transition: all 0.5s ease;
}
.mentoring-testimonials .testimonial-carousel__card:hover {
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.25);
}
.mentoring-testimonials .testimonial-carousel__card .card-header {
  width: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mentoring-testimonials .testimonial-carousel__card .card-header .logo-google {
  width: 70px;
  height: auto;
}
.mentoring-testimonials .testimonial-carousel__card .card-header .rating i {
  color: #fdb700;
  font-size: 1rem;
}
.mentoring-testimonials .testimonial-carousel__card .depoimento-texto {
  flex-grow: 1;
  color: #4b5563;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0;
}
.mentoring-testimonials .testimonial-carousel__card .cliente-info {
  margin-top: 15px;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #97ca20;
  margin-bottom: 0;
}

.mentoring-steps {
  padding: 5rem 0;
  position: relative;
  /* Extra small (até 575px) */
}
.mentoring-steps__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-align: center;
}
.mentoring-steps__line {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 3px;
  background-color: #84BD00;
  z-index: 1;
  transition: all 0.3s ease;
}
.mentoring-steps__step {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border: 3px solid #84BD00;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #84BD00;
  box-shadow: 0 4px 15px rgba(51, 51, 51, 0.08);
  transition: all 0.3s ease-in-out;
}
.mentoring-steps__step:hover {
  background-color: #84BD00;
  color: #ffffff;
  transform: scale(1.05);
}
.mentoring-steps__content {
  background-color: #ffffff;
  border: 1px solid #f3f3f3;
  border-radius: 1rem;
  margin: -1rem 3rem;
  padding: 10px 15px 30px;
  text-align: center;
  height: 80%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mentoring-steps__content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.mentoring-steps__content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}
.mentoring-steps__content p {
  font-size: 0.875rem;
}
.mentoring-steps__content .btn-cta-2 {
  background-color: #84BD00;
  color: #ffffff;
  font-weight: 600;
  padding: 5px 30px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.mentoring-steps__content .btn-cta-2:hover {
  background-color: #97ca20;
  transform: translateY(-3px);
}
@media (max-width: 992px) {
  .mentoring-steps__line {
    width: 80%;
    top: 30px;
  }
  .mentoring-steps .col-md-4 {
    margin-bottom: 40px;
  }
  .mentoring-steps h3 {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .mentoring-steps .row {
    padding: 20px 0;
  }
  .mentoring-steps__line {
    display: contents;
  }
  .mentoring-steps__line::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 3px;
    height: 95%;
    background-color: #84BD00;
    z-index: 0;
    backface-visibility: hidden;
  }
  .mentoring-steps .mentoring-steps__step {
    width: 70px;
    height: 70px;
  }
  .mentoring-steps .mentoring-steps__content {
    max-width: 250px;
    height: auto;
    padding: 10px 15px;
  }
  .mentoring-steps .mentoring-steps__content h3 {
    margin-top: 0 !important;
    line-height: normal;
  }
  .mentoring-steps .mentoring-steps__content .btn-cta-2 {
    font-size: 0.765rem;
    padding: 5px 20px;
  }
  .mentoring-steps .col-12 {
    /* Intercala os lados das steps */
  }
  .mentoring-steps .col-12:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .mentoring-steps .col-12:nth-child(odd) .mentoring-steps__content {
    text-align: right;
    margin-top: 30px;
    margin-bottom: 15px;
    margin-right: auto;
    margin-left: 0;
  }
  .mentoring-steps .col-12:nth-child(even) {
    flex-direction: row;
  }
  .mentoring-steps .col-12:nth-child(even) .mentoring-steps__content {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: 0;
  }
}
@media (max-width: 576px) {
  .mentoring-steps .col-12 .mentoring-steps__step {
    width: 60px;
    height: 60px;
  }
  .mentoring-steps .col-12 .mentoring-steps__content {
    max-width: 190px;
  }
  .mentoring-steps .col-12 .mentoring-steps__content h3 {
    font-size: 1rem;
    line-height: normal;
  }
  .mentoring-steps .col-12 .mentoring-steps__content p {
    font-size: 0.875rem;
  }
}

.mentoring-explanatory {
  padding: 5rem 0;
  background: linear-gradient(135deg, #97ca20 0%, #84BD00 100%);
}
.mentoring-explanatory__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
  letter-spacing: 2px;
}
.mentoring-explanatory .line {
  width: 5rem;
  height: 0.25rem;
  background-color: #6c757d;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.mentoring-explanatory__content p {
  color: #ffffff !important;
}
.mentoring-explanatory__content .callout {
  padding: 1.25rem;
  height: 100%;
  border-radius: 0.875rem;
  font-style: italic;
  background-color: #ffffff;
}
.mentoring-explanatory__content .callout.callout-info {
  color: #00b9e1;
  border-left: 0.35rem solid rgba(13, 202, 240, 0.75);
}
.mentoring-explanatory__content .callout.callout-danger {
  color: #ff8f9b;
  border-left: 0.35rem solid rgba(220, 53, 69, 0.75);
}
.mentoring-explanatory__content h4 {
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  margin-top: 3rem;
}
.mentoring-explanatory__content .list-tb-steps .list-group-item {
  text-align: center;
  border: none;
}
.mentoring-explanatory__content .list-tb-steps .list-group-item:first-child:not(:last-child) {
  border-top-left-radius: 0.875rem;
  border-bottom-left-radius: 0.875rem;
}
.mentoring-explanatory__content .list-tb-steps .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: 0.875rem;
  border-bottom-right-radius: 0.875rem;
}
.mentoring-explanatory__content .list-tb-steps .list-group-item.active, .mentoring-explanatory__content .list-tb-steps .list-group-item:hover {
  background-color: #6c9b00;
  color: #ffffff;
}
.mentoring-explanatory__content .tab-content {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px 15px 15px;
  margin-top: -15px;
  border-bottom-left-radius: 0.875rem;
  border-bottom-right-radius: 0.875rem;
}
.mentoring-explanatory__content .tab-content p {
  color: #97ca20 !important;
  margin-bottom: 0;
}
.mentoring-explanatory__frase {
  color: #ffffff !important;
  text-align: center;
}
.mentoring-explanatory .btn-light {
  color: #84BD00;
  font-weight: 700;
}

.workshop-sales-problems {
  padding: 5rem 0;
}
.workshop-sales-problems__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-align: center;
}
.workshop-sales-problems__lead {
  font-size: 1.1rem;
  line-height: 1.75rem;
  text-align: center;
}
.workshop-sales-problems__card {
  background-color: #f9f9f9;
  border-radius: 0.75rem;
  padding: 0;
}
.workshop-sales-problems__card .card-body {
  padding: 1.5rem;
}
.workshop-sales-problems__card .card-body h3 {
  margin-bottom: 0.25rem;
}
.workshop-sales-problems__card .card-body p {
  margin-bottom: 0;
}
.workshop-sales-problems__card .card-body .icon-wrap {
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ef4444;
}

.workshop-sales-pillar {
  padding: 5rem 0;
}
.workshop-sales-pillar__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-align: center;
}
.workshop-sales-pillar__lead {
  font-size: 1.1rem;
  line-height: 1.75rem;
  text-align: center;
}
.workshop-sales-pillar .line {
  width: 5rem;
  height: 0.25rem;
  background-color: #84BD00;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.workshop-sales-pillar__item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 4rem 2rem 2rem;
  position: relative;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}
.workshop-sales-pillar__item .icon {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -6rem auto 2rem auto;
  background: #eff7dd;
  color: #84BD00;
  box-shadow: 0 4px 10px rgba(2, 6, 23, 0.04);
}
.workshop-sales-pillar__item h3 {
  margin-top: 0.5rem;
  font-size: 1.125rem;
}
.workshop-sales-pillar__item p {
  margin-bottom: 0;
}
.workshop-sales-pillar__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.workshop-sales-counter {
  padding: 5rem 0;
  background-color: #1f2937;
}
.workshop-sales-counter__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  color: #ffffff;
}
.workshop-sales-counter__item h4 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #97ca20;
  margin-bottom: 0;
}
.workshop-sales-counter__item p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #d1d1d1;
}
.workshop-sales-counter h3 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #d1d1d1;
}
.workshop-sales-counter .client-carousel {
  background-color: #efefef;
  border-radius: 10px;
}

@media screen and (max-width: 992px) {
  .workshop-sales-pillar .col-12,
  .workshop-sales-pillar .col-sm-6 {
    margin-bottom: 2rem;
  }
}
.workshop-sales-plan {
  padding: 5rem 0;
  position: relative;
  /* Extra small (até 575px) */
}
.workshop-sales-plan__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.workshop-sales-plan__line {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 3px;
  background-color: #84BD00;
  z-index: 1;
  transition: all 0.3s ease;
}
.workshop-sales-plan__step {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border: 3px solid #84BD00;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #84BD00;
  box-shadow: 0 4px 15px rgba(51, 51, 51, 0.08);
  transition: all 0.3s ease-in-out;
}
.workshop-sales-plan__step:hover {
  background-color: #84BD00;
  color: #fff;
  transform: scale(1.05);
}
.workshop-sales-plan h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}
.workshop-sales-plan .btn-cta {
  background-color: #84BD00;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 40px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.workshop-sales-plan .btn-cta:hover {
  background-color: #97ca20;
  transform: translateY(-3px);
}
@media (max-width: 992px) {
  .workshop-sales-plan__line {
    width: 80%;
    top: 30px;
  }
  .workshop-sales-plan .col-md-4 {
    margin-bottom: 40px;
  }
  .workshop-sales-plan h3 {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .workshop-sales-plan .row {
    padding: 20px 0;
  }
  .workshop-sales-plan__line {
    display: contents;
  }
  .workshop-sales-plan__line::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 3px;
    height: 95%;
    background-color: #84BD00;
    z-index: 0;
    backface-visibility: hidden;
  }
  .workshop-sales-plan .workshop-sales-plan__step {
    width: 70px;
    height: 70px;
  }
  .workshop-sales-plan .workshop-sales-plan__content {
    max-width: 250px;
    padding: 0 20px;
  }
  .workshop-sales-plan .workshop-sales-plan__content h3 {
    margin-top: 0 !important;
  }
  .workshop-sales-plan .col-12 {
    /* Intercala os lados das steps */
  }
  .workshop-sales-plan .col-12:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .workshop-sales-plan .col-12:nth-child(odd) .workshop-sales-plan__content {
    text-align: right;
    margin-top: 30px;
    margin-bottom: 15px;
    margin-right: auto;
    margin-left: 0;
  }
  .workshop-sales-plan .col-12:nth-child(even) {
    flex-direction: row;
  }
  .workshop-sales-plan .col-12:nth-child(even) .workshop-sales-plan__content {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: 0;
  }
}
@media (max-width: 576px) {
  .workshop-sales-plan .col-12 .workshop-sales-plan__step {
    width: 60px;
    height: 60px;
  }
  .workshop-sales-plan .col-12 .workshop-sales-plan__content {
    max-width: 190px;
  }
  .workshop-sales-plan .col-12 .workshop-sales-plan__content h3 {
    font-size: 1rem;
  }
  .workshop-sales-plan .col-12 .workshop-sales-plan__content p {
    font-size: 0.875rem;
  }
}

.workshop-sales-form {
  padding: 5rem 0;
  background-color: #818284;
}
.workshop-sales-form__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #ffffff;
}
.workshop-sales-form__lead {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #efefef;
}
.workshop-sales-form__lead strong {
  color: #ffffff;
  font-style: italic;
}
.workshop-sales-form .box-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
}
.workshop-sales-form .box-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.workshop-sales-explanatory {
  padding: 5rem 0;
}
.workshop-sales-explanatory__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-align: center;
}
.workshop-sales-explanatory .line {
  width: 5rem;
  height: 0.25rem;
  background-color: #84BD00;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.blog-area .blog-item-wrap .article-item {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 0;
  border-radius: 20px;
}
.blog-area .blog-item-wrap .article-item .article-cover {
  display: block;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  margin-bottom: 0 !important;
  max-height: 200px;
}
.blog-area .blog-item-wrap .article-item .article-cover img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 2s;
}
.blog-area .blog-item-wrap .article-item .article-cover:hover img {
  transform: scale(1.25);
}
.blog-area .blog-item-wrap .article-item .article-cover .article-meta {
  display: none;
}
.blog-area .blog-item-wrap .article-item .article-content {
  padding: 1rem 1.5rem;
}
.blog-area .blog-item-wrap .article-item .article-content .article-title {
  color: #84BD00;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 0 !important;
  margin-bottom: 0;
  text-decoration: none;
}
.blog-area .blog-item-wrap .article-item .article-content .article-description {
  margin-top: 1.5rem !important;
  font-size: 14px;
}
.blog-area .blog-item-wrap .article-item .article-content .article-link {
  position: relative;
  display: inline-flex !important;
  align-content: center;
  justify-content: space-between;
  align-items: center !important;
  flex-wrap: wrap;
  width: 100%;
  color: #84BD00;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  border-top: 1px solid rgba(0, 0, 0, 0.175);
  transition: 0.3s all;
}
.blog-area .blog-item-wrap .article-item .article-content .article-link i {
  width: 45px;
  height: 45px;
  background: #eff7dd;
  border-radius: 50px;
  color: #84BD00;
  padding: 15px;
}
.blog-area .blog-item-wrap .article-item .article-content .article-link:hover {
  color: #97ca20;
}
.blog-area .blog-item-wrap .article-item .article-content .article-link:hover i {
  background: #97ca20;
  color: #eff7dd;
}
.blog-area .blog-item-wrap .article-item.article-big .article-cover {
  max-height: 300px;
}
.blog-area .blog-item-wrap .article-item.article-big .article-cover img {
  height: 300px;
}
.blog-area .blog-item-wrap .article-item.article-big .article-content {
  padding: 1.5rem 2.5rem;
}
.blog-area .blog-item-wrap hr {
  margin-bottom: 1.5rem !important;
}
.blog-area .blog-item-wrap .row {
  align-items: stretch;
}
.blog-area .blog-sidebar-area .widget {
  position: relative;
  width: 100%;
  background-color: #f3f3f3;
  border-radius: 15px;
  border: 1px solid #e1e1e1;
  margin-bottom: 20px;
}
.blog-area .blog-sidebar-area .search-widget input {
  width: 100%;
  height: 40px;
  border: 2px solid #e1e1e1;
  padding: 0 10px;
  color: #6c757d;
  font-size: 14px;
  border-radius: 8px;
}
.blog-area .blog-sidebar-area .search-widget button {
  position: absolute;
  right: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: none;
  background-color: #84BD00;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.blog-area .blog-sidebar-area .widget-title {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 30px;
}
.blog-area .blog-sidebar-area .single-post .post-desc {
  display: flex;
  flex-wrap: wrap;
}
.blog-area .blog-sidebar-area .single-post .post-desc .date {
  color: #84BD00;
}
.blog-area .blog-sidebar-area .single-post .post-desc a {
  font-size: 14px;
  text-decoration: none;
  color: #4b5563;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.blog-area .blog-sidebar-area .single-post .post-desc a:hover {
  color: #97ca20;
}
.blog-area .blog-article {
  padding-top: 1.5rem;
}
.blog-area .blog-article .blog-img {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 0 !important;
  max-height: 400px;
}
.blog-area .blog-article .blog-img img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 2s;
}
.blog-area .blog-article .blog-img:hover img {
  transform: scale(1.25);
}
.blog-area .blog-article .blog-article-content {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  border-radius: 20px;
}
.blog-area .blog-article .blog-article-content .title {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
}/*# sourceMappingURL=style.css.map */