/**
* Template Name: iLanding
* Template URL: https://bootstrapmade.com/ilanding-bootstrap-landing-page-template/
* Updated: Nov 12 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Inter", 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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #9d0a28; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #9d0a28; /* 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: #212529; /* The default color of the main navmenu links */
  --nav-hover-color: #e4013d; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e4013d; /* 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. */

.banner-suporte {
  background-image: url(../img/banner-suporte.png);
  background-position: center;
  background-size: cover;
}

.dark-background {
  --background-color: #9d0a28;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
  --orange-color: #0eb956;
}

/* 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, #e4013d, transparent 25%);
  text-decoration: none;
}

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

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

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #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: rgb(255, 255, 255);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 0px 0px 50px 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: white;
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

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

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

/* Header inicial (transparente) */
.header {
  background-color: transparent !important;
  transition: all 0.3s ease;
  box-shadow: none;
}

/* Header quando rolado (sólido) */
.header.scrolled {
  background-color: white !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Ajuste para o logo e links */
.header.scrolled .navmenu a {
  color: #333 !important; /* Cor dos links quando header está branco */
}
.header.scrolled .navmenu a:hover {
  color: #9d0a28 !important; /* Cor do link ativo */
}

.header.scrolled .navmenu .active {
  color: #9d0a28 !important; /* Cor do link ativo */
}

/* Mantém o header fixo no topo */
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

/* Transição suave para os links */
.navmenu a {
  transition: color 0.3s ease;
}

/* Cor dos links no header transparente */
.header:not(.scrolled) .navmenu a {
  color: #0a0a0a;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Cor do link ativo no header transparente */
.header:not(.scrolled) .navmenu .active {
  color: white;
}

/* Ajuste para o mobile menu (se aplicável) */
.header:not(.scrolled) .mobile-nav-toggle {
  color: white;
}

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

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
  color: var(--contrast-color);
  /* background: color-mix(in srgb, #E4013D, transparent 15%); */
  background: #e4013d;
}

.btn-getstarted-cta,
.btn-getstarted-cta:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  background: transparent;
  border: 1px solid var(--contrast-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: bold;
}

.btn-getstarted-cta:hover,
.btn-getstarted-cta:focus:hover {
  color: var(--contrast-color);
  /* background: color-mix(in srgb, #E4013D, transparent 15%); */
  background: #e4013d;
  border: 1px solid #e4013d;
}

@media (max-width: 1200px) {
  .header {
    /* padding-top: 10px; */
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# 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: #9d0a28;
    position: relative;
    font-weight: bolder;
  }

  .navmenu li:hover > a::after,
  .navmenu .active::after,
  .navmenu .active:focus::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #9d0a28, white);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .navmenu li:hover > a::after,
  .navmenu .active::after,
  .navmenu .active:focus::after {
    transform: scaleX(1);
  }

  .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;
    background: transparent !important;
  }

  .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-toggle {
    color: #0a0a0a !important;
  }
  .mobile-nav-active .mobile-nav-toggle {
    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;
    color: #0a0a0a;
  }
}

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

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

.footer .footer-about .logo {
  line-height: 1;
  /* margin-bottom: 25px; */
}

.footer .footer-about .logo img {
  max-height: 140px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.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, white);
  font-size: 16px;
  color: white;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a i:hover {
  color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  transform: scale(1.1);
}

.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 {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.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 {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

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

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid white;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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, #e4013d, transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# 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: 170px 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 70%);
}

/*--------------------------------------------------------------
# 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: 48px;
  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); */
  /* background: #e4013d; */
  background: #e4013d;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  /* padding-top: 160px; */
  /* background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 97%) 50%,
    color-mix(in srgb, var(--accent-color), transparent 50%) 50%,
    transparent 50%
  ); */
  background: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(
    circle at 90% 10%,
    color-mix(in srgb, var(--accent-color), transparent 92%),
    transparent 40%
  ); */
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: #e4013d;
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 35px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  /* background-color: color-mix(in srgb, #E4013D, black 20%);
  border-color: color-mix(in srgb, #E4013D, black 20%); */
  background-color: #e4013d;
  border-color: #e4013d;
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 2;
  margin-top: -80px;
  background: white; /* Changed from gradient to white */
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 3rem 2rem;
}

.hero .stat-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem;
  /* background: linear-gradient(135deg, #9d0a28 0%, #6a0a28 100%); */
  background: #9d0a28;
  border-radius: 15px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero .stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 10px 0 #ffd000; /* Darker shadow */
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1); /* Inverted icon bg */
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hero .stat-item .stat-icon i {
  font-size: 1.8rem;
  color: white; /* White icons */
}

.hero .stat-item:hover .stat-icon {
  background-color: white; /* White on hover */
}

.hero .stat-item:hover .stat-icon i {
  color: #9d0a28; /* Brand color on hover */
}

.hero .stat-item h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: white; /* White text */
  margin-bottom: 0.5rem;
}

.hero .stat-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
  text-align: justify;
}

.btn-more {
  display: inline-block;
  color: white; /* White text */
  color: #9d0a28;
  background: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3); /* Added border */
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.btn-more:hover {
  color: #9d0a28;
  background-color: white; /* White bg on hover */
  transform: translateX(5px);
  box-shadow: 0 0 15px 0 white;
}

@media (max-width: 600px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
  .title-banner,
  .title-main {
    font-size: 1.225rem !important;
    margin-bottom: 0.25rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

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

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  /* padding-right: 15px; */
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-image: linear-gradient(to right, black, #9d0a28);
  background: #9d0a28;
  border-color: transparent;
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  /* background: var(--accent-color); */
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {
  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

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

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

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

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

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

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

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

.testimonials .testimonial-item .testimonial-img {
  width: 64px;
  /* border-radius: 50px; */
  border: 6px solid var(--background-color);
  /* float: left; */
  margin: 0 10px 0 0;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  /* background-color: white; */
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  /* background: var(--accent-color); */
  background: #e4013d;
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  /* color: var(--accent-color); */
  color: #e4013d;
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

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

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

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

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

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

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  /* background-color: var(--accent-color); */
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}
.contact .info-item .icon-box:hover {
  transform: scale(1.1);
}
.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
  background-color: transparent;
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
  background-color: #e4013d;
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
  .text-red{
    font-size: 32px!important;
  }
  .icon-service{
    font-size: 32px!important;
  }
  .h4{
    font-size: 20px;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: var(--nav-dropdown-hover-color);
}

/*--------------------------------------------------------------
# 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);
}

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

.text-justify {
  text-align: justify !important;
}
.text-primary {
  color: #9d0a28 !important;
}
.text-secundary {
  color: #bc522f !important;
}
.bg-metricas {
  background-color: #9d0a28;
  background-image: linear-gradient(to right, #0a0a0a, #0a0a0a, #9d0a28);
}
.footer-contact p,
.footer-links ul li a .copyright p,
.copyright a,
.credits {
  color: white !important;
}
.bi-chevron-right:hover {
  color: #bc522f;
}

/* ---------------------------------------------
# Cookies
-----------------------------------------------*/
.box-cookies.hide {
  display: none !important;
}

.box-cookies {
  position: fixed;
  background-image: linear-gradient(to right, #9d0a28, #e4013d);
  width: 98%;
  z-index: 999998;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  margin-bottom: 20px;
}

.box-cookies .msg-cookies,
.box-cookies .btn-cookies {
  text-align: center;
  padding: 5px;
  font-size: 18px;
  margin-bottom: 20px;
}
.msg-cookies {
  margin-left: 20px;
  margin-top: 20px;
}

.box-cookies .btn-cookies {
  background-color: white;
  border: 0;
  padding: 5px 20px;
  color: #e4013d;
  transition: 0.4s;
  /* border-radius: 4px; */
  margin-right: 20px;
  border-radius: 10px;
}
.box-cookies .btn-cookies:hover {
  transform: scale(1.1);
  transition: 0.4s;
}
.box-cookies-size {
  justify-content: center;
  display: flex;
}
.color-cookies {
  color: #ffff;
}
.color-cookies:hover {
  color: #ffff;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 600px) {
  .box-cookies {
    flex-direction: column;
  }
}

.contact .php-email-form {
  /* margin-top: 80px; */
  width: 100%;
  padding: 30px;
  /* background: linear-gradient(136.12deg, #fff3f3 12.9%, #ffd0d0 100%); */
  background-color: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  border-radius: 20px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

svg {
  width: 2.25em;
  transform-origin: center;
  animation: rotate4 2s linear infinite;
}

#circle {
  fill: none;
  stroke: hsl(0, 0%, 100%);
  stroke-width: 2;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash4 1.5s ease-in-out infinite;
}

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

@keyframes dash4 {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dashoffset: -125px;
  }
}

.text-red {
  color: red;
}
.bg-gray {
  background-image: linear-gradient(
    to right,
    rgb(243, 242, 242),
    rgb(255, 255, 255)
  );
}

.carousel-item {
  position: relative;
  height: 100vh; /* Ajuste para garantir que o conteúdo se ajuste ao tamanho da tela */
  height: calc(100vh + 100px);
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff; /* Cor do texto */
  z-index: 2; /* Certifique-se de que o texto esteja acima da imagem */
  width: 70vw;
}
.carousel-caption h1,
.carousel-caption h3 {
  font-size: 48px;
  font-weight: bold;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(100vh + 100px);
  background-color: rgba(0, 0, 0, 0.7); /* Cor preta com 50% de opacidade */
  z-index: 1; /* Certifique-se de que o fundo esteja abaixo do texto */
}
.content h3 {
  font-weight: bold;
}

@media (max-width: 600px) {
  .carousel-item {
    position: relative;
    height: 100vh; /* Ajuste para garantir que o conteúdo se ajuste ao tamanho da tela */
  }
  .carousel {
    margin-top: 100px;
  }
  .carousel-caption h1,
  .carousel-caption h3 {
    font-size: 32px;
  }

  .carousel-caption {
    width: 70vw; /* Torna o texto mais legível no mobile */
  }
}
.icon {
  transition: 0.5s;
}
.icon:hover {
  transform: scale(1.1);
}
.tca {
  font-size: 20px;
}
.client-logo {
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%);
}
.client-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.footer .footer-links ul li:hover {
  color: #9d0a28;
}
.btn-primary {
  background: linear-gradient(145deg, #9d0a28, #c40d33);
  border: none;
  border-radius: 50px;
  color: white;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(157, 10, 40, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: linear-gradient(145deg, #c40d33, #9d0a28);
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 0 15px 0 white;
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px 0 white;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn-primary:hover::after {
  left: 100%;
}

/* Versão alternativa com borda animada */
/*
.btn-primary {
  background: #9d0a28;
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  background: linear-gradient(45deg, #9d0a28, #ff4757, #9d0a28);
  background-size: 200%;
  border-radius: 50px;
  opacity: 0;
  transition: 0.5s;
}

.btn-primary:hover::before {
  opacity: 1;
  animation: gradientBorder 3s linear infinite;
}

@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
*/
.bg-cards {
  background-image: linear-gradient(
    to right,
    rgb(10, 10, 10),
    rgb(10, 10, 10),
    rgb(10, 10, 10),
    #9d0a28
  );
  background: var(--accent-color);
  border-radius: 30px 30px 0px 0px;
}
.cards-logo {
  background-color: #9d0a28;
}
.bg-ctas {
  background-image: linear-gradient(
    to right,
    rgb(10, 10, 10),
    rgb(10, 10, 10),
    rgb(10, 10, 10),
    #9d0a28
  );
  /* background: var(--accent-color); */
}

.bg-footer-line {
  background-image: linear-gradient(to right, black, #9d0a28);
}
.card {
  transition: 0.5s;
}
.card:hover {
  box-shadow: 0 0 10px 0 black;
}
.bg-primary {
  background: var(--accent-color) !important;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color) !important;
}
.icons-cta {
  transition: 0.5s;
}
.icons-cta:hover {
  color: #9d0a28 !important;
}
.font {
  font-size: 16px;
  text-transform: uppercase;
}
.box-right {
  height: 2px;
  width: 70px;
  background: rgb(255, 255, 255);
  margin: auto;
}
.box-left {
  height: 2px;
  width: 70px;
  background: #9d0a28;
  margin: auto;
}

.service-list li {
  font-size: 20px;
  color: #0a0a0a;
}

/*** Service Start ***/
.service-item {
  position: relative;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.service-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  background: #9d0a28;
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover::after {
  width: 100%;
  height: 100%;
}
.service-content {
  color: black;
  h5 {
    color: black;
  }
}
.service-item:hover .service-content,
.service-item:hover .service-btn {
  position: relative;
  z-index: 2;
  color: white;
  h5 {
    color: white;
  }
}

.service-item .service-content a,
.service-item .service-content p {
  transition: 0.5s;
}

.service-item:hover .service-content a:hover {
  color: var(--bs-secondary);
}

.service-item:hover .service-content p {
  color: var(--bs-white);
}

.service-item .service-btn {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #9d0a28;
  transition: 0.5s;
}

.service-item .service-btn i {
  transition: 0.5s;
}

.service-item:hover .service-btn {
  background: var(--bs-white);
}

.service-item:hover .service-btn i {
  transform: rotate(360deg);
  color: #9d0a28 !important;
}
/*** Service End ***/

.roadmap-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.roadmap-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #333;
}

.roadmap-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.roadmap-step {
  position: relative;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  padding: 20px;
  border-radius: 10px;
  background-color: #f8f9fc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.roadmap-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background-color: #9d0a28 !important;
  .roadmap-step-icon {
    color: white !important;
  }
  .roadmap-step-title {
    color: white !important;
  }
  .roadmap-step-description {
    color: white !important;
  }
}

.roadmap-step-icon {
  font-size: 50px;
  color: #1c1b29;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
/* .roadmap-step-icon:hover {
  color: #9d0a28;
} */

.roadmap-step:hover .roadmap-step-icon {
  transform: rotate(360deg);
}

.roadmap-step-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
  color: #1c1b29;
}

.roadmap-step-description {
  color: #777;
  font-size: 14px;
  line-height: 1.5;
}

.roadmap-step:nth-child(odd) {
  background-color: #f1f3f8;
}

.roadmap-step:nth-child(even) {
  background-color: #e3e7f0;
}

/* Animação de entrada das etapas */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.roadmap-step {
  animation: fadeIn 1s ease-out;
}
@media (max-width: 640px) {
  .card-mobile {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 40px 0;
  background-color: #f8f8f8;
}

.clients .client-logo {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
}
.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}
.bg-privacidade {
  background-image: url(../img/privacidade.jpg) !important;
  background-position: center !important;
  background-size: auto !important;
  height: 50vh;
}

/* roodmap */
.roadmap-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.roadmap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.roadmap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 100%;
  background-color: #191919;
  transform: translateX(-50%);
}

.roadmap-item {
  position: relative;
  width: 51%;
  padding: 20px;
  margin-bottom: 40px;
}
.roadmap-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.roadmap-item:nth-child(even) {
  left: 49%;
  text-align: left;
}

.roadmap-icon {
  position: absolute;
  top: 20px;
  color: #121b25;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #191919;
  transition: 0.5s;
  border: 2px solid #191919 !important;
}
.roadmap-icon i {
  color: white;
}
.roadmap-item:hover .roadmap-icon {
  background: white;
}
.roadmap-item:hover .roadmap-icon i {
  color: #9d0a28;
}
.roadmap-item:nth-child(odd) .roadmap-icon {
  right: -25px;
  z-index: 999;
}

.roadmap-item:nth-child(even) .roadmap-icon {
  left: -25px;
  z-index: 999;
}

.roadmap-item {
  position: relative;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.roadmap-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  background: #9d0a28;
  transition: 0.5s;
  z-index: 1;
}

.roadmap-item:hover::after {
  width: 100%;
  height: 100%;
}
.roadmap-content {
  color: white;
  h4 {
    color: white;
  }
}
.roadmap-item h4 {
  color: #191919;
  font-weight: bold;
}
.roadmap-item:hover .roadmap-content,
.roadmap-item:hover .roadmap-btn {
  position: relative;
  z-index: 2;
  color: white;
  h4 {
    color: white;
  }
}
.roadmap-item .roadmap-content a,
.roadmap-item .roadmap-content p,
.roadmap-item .roadmap-content li,
.roadmap-item .roadmap-content i {
  transition: 0.5s;
  color: #191919;
}

.roadmap-item:hover .roadmap-content a:hover {
  color: var(--bs-secondary);
}

.roadmap-item:hover .roadmap-content p,
.roadmap-item:hover .roadmap-content li {
  color: white !important;
}
.roadmap-item:hover .roadmap-content i {
  color: white;
}

.roadmap-item .roadmap-btn {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transition: 0.5s;
}

.roadmap-item .roadmap-btn i {
  transition: 0.5s;
}

.roadmap-item:hover .roadmap-content i {
  transform: rotate(360deg);
}
@media (max-width: 560px) {
  .roadmap-item {
    width: 100% !important;
  }
  .roadmap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background-color: #191919;
    transform: translateX(-50%);
  }

  .roadmap-item {
    position: relative;
    width: 0;
    padding: 20px;
    margin-bottom: 40px;
  }
  .roadmap-item:nth-child(odd) {
    left: 0;
    text-align: right;
  }

  .roadmap-item:nth-child(even) {
    left: 0;
    text-align: left;
  }
  .img-road img {
    height: 100% !important;
    padding: 50px 0px;
  }
}

.tab-pane h2,
.tab-pane h3 {
  color: #333 !important;
}
.info-box h3 {
  color: #333 !important;
}
.contact-form h3 {
  color: #333 !important;
}
.faq-container h3 {
  color: #333 !important;
}
.card h4 {
  color: #333 !important;
  font-weight: bolder;
}
.venx:hover {
  color: #9d0a28 !important;
}
.client-logo-card {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.client-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo-card img {
  max-height: 60px;
  width: auto;
  transition: all 0.3s ease;
}

.client-logo-card:hover img {
  transform: scale(1.1);
}

.grayscale {
  filter: grayscale(100%);
  opacity: 0.7;
}

.client-logo-card:hover .grayscale {
  filter: grayscale(0);
  opacity: 1;
}

/* .client-logo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 8px;
  text-align: center;
  font-size: 12px;
  border-radius: 0 0 12px 12px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
} */

.client-logo-card:hover .client-logo-overlay {
  transform: translateY(0);
}

.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.owl-carousel .owl-item img {
  width: auto;
  margin: 0 auto;
}

/* Remove o fundo branco durante a transição */
.carousel-inner {
  overflow: hidden; /* Esconde qualquer conteúdo que ultrapasse os limites */
}

.carousel-item {
  transition: transform 0.6s ease-in-out; /* Suaviza a transição */
}

/* Remove o espaço entre os slides */
.carousel-item {
  margin-right: 0;
  float: none;
}

/* Ajusta a posição das imagens para cobrir completamente */
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que a imagem cubra todo o espaço */
}

/* Opcional: Efeito fade em vez de slide */
.carousel-item {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
}

.carousel-item.active {
  opacity: 1;
  position: relative;
}
/* Estilos do Carrossel de Clientes */
.clientes-carousel,
.clientes-carousel-mobile {
  position: relative;
}

.clientes-slide {
  padding: 0 15px;
}

.client-logo-card {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  margin: 0 10px;
}
.text-p {
  color: rgb(40, 39, 39) !important;
}
.text-red {
  color: #d50035 !important;
}
.icon-service {
  color: white !important;
  /* box-shadow: 0 0 10px 0 #0eb956;
  border-radius: 50%; */
}
.icon-service-modal {
  color: #9d0a28 !important;
  /* box-shadow: 0 0 10px 0 #0eb956;
  border-radius: 50%; */
}
.btn-close {
  margin-top: -50px;
}
.nav-tabs .nav-item a h4 {
  color: black;
}

.modern-tabs-container {
  margin: 2rem 0;
  overflow-x: auto;
  padding-bottom: 10px;
}

.modern-tabs {
  display: flex;
  flex-wrap: wrap;
  border: none;
  gap: 8px;
}

.modern-tabs .nav-item {
  width: 150px;
  flex-shrink: 0;
}

.modern-tabs .nav-link {
  border: none;
  border-radius: 12px;
  padding: 20px 15px;
  /* background-color: #f8f9fa; */
  color: #495057;
  transition: all 0.3s ease;
  text-align: center;
  height: 120px;
  position: relative;
  overflow: hidden;
}

.modern-tabs .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #9d0a28;
  transition: width 0.3s ease;
}

.modern-tabs .nav-link:hover {
  /* background-color: #e9ecef; */
  transform: translateY(-3px);
  /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
}

.modern-tabs .nav-link.active {
  background-color: white;
  color: #9d0a28;
  box-shadow: 0 5px 20px rgba(13, 110, 253, 0.2);
  border: 1px solid rgba(13, 110, 253, 0.2);
}

.modern-tabs .nav-link.active::before {
  width: 100%;
}

.modern-tabs .tab-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.modern-tabs .tab-icon {
  font-size: 24px;
  color: #6c757d;
  color: black;
  text-align: center;
}

.modern-tabs .nav-link.active .tab-icon {
  color: #9d0a28;
}

.modern-tabs h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .modern-tabs .nav-item {
    min-width: 160px;
  }

  .modern-tabs h4 {
    font-size: 14px;
  }

  .modern-tabs .tab-icon {
    font-size: 20px;
  }
}
.btn-modal:hover {
  color: white;
  background-color: #9d0a28; /* White bg on hover */
  transform: translateX(0px);
  box-shadow: 0 0 5px 0 #9d0a28;
}

/*  */
.benefits-container {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.emoji-icon {
  font-size: 1.2em;
  line-height: 1;
}

.badge-check {
  font-size: 1.25rem;
  margin-top: 2px;
}

.benefit-item {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-item:hover {
  transform: translateX(5px);
}

.primary-opacity {
  background: rgba(13, 110, 253, 0.1);
}
.benefit-item {
  color: white !important;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.cta-box {
  border-left: 3px solid greenyellow;
  transition: all 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-light {
  transition: all 0.3s ease;
  color: #9d0a28;
}

.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px 0 white;
  color: #9d0a28;
}
/* Estilos base (podem ser mesclados com os anteriores) */
.mission-tabs {
  justify-content: center;
}

.mission-tabs .nav-item {
  min-width: 200px;
}

.mission-tabs .nav-link {
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
}

.mission-tabs .nav-link.active {
  /* background: linear-gradient(135deg, #ffffff 0%, #e6f0ff 100%); */
  border: 1px solid #9d0a28;
}

.mission-tabs .tab-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

/* Efeito especial para estas tabs */
.mission-tabs .nav-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(circle at center, rgba(13, 110, 253, 0.1) 0%, transparent 70%); */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-tabs .nav-link:hover::after,
.mission-tabs .nav-link.active::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .mission-tabs .nav-item {
    min-width: 160px;
  }

  .mission-tabs h4 {
    font-size: 15px;
  }

  .mission-tabs .tab-icon {
    font-size: 22px;
  }
}

/* Estilos para a seção modernizada */
.modern-pillars-container {
  padding: 2rem;
}

.text-gradient-primary {
  background: linear-gradient(90deg, #9d0a28, #6610f2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Estilos para a seção modernizada */
.modern-pillars-container {
  padding: 2rem;
}

.text-gradient-primary {
  background: linear-gradient(90deg, #9d0a28, #6610f2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pillar-list {
  margin-top: 2rem;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #9d0a28;
  height: 100%;
}

.pillar-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px hsla(348, 88%, 33%, 0.1);
}

.pillar-icon {
  font-size: 1.75rem;
  color: #9d0a28;
  background: hsla(348, 88%, 33%, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pillar-content {
  flex: 1;
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
}

.pillar-description {
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.6;
  text-align: justify !important;
  padding: 0 10px;
}

/* Ajustes para mobile */
@media (max-width: 767.98px) {
  .modern-pillars-container {
    padding: 1rem;
  }

  .pillar-item {
    padding: 1.25rem;
  }

  .pillar-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .pillar-title {
    font-size: 1.1rem;
  }

  .pillar-description {
    font-size: 0.95rem;
  }
}

.mission-content {
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.text-gradient-primary {
  background: linear-gradient(90deg, #9d0a28, #6610f2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mission-statement blockquote {
  position: relative;
  line-height: 1.6;
}

.mission-image-container {
  padding: 20px;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  border-radius: 16px;
}

.mission-image-container img {
  transition: transform 0.5s ease;
  position: relative;
  z-index: 2;
}

.mission-image-container:hover img {
  transform: scale(1.03);
}

.floating-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  border-radius: 12px;
}

.dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 8s infinite ease-in-out;
}

.dot-1 {
  width: 120px;
  height: 120px;
  top: -30px;
  right: -30px;
  animation-delay: 0s;
}

.dot-2 {
  width: 80px;
  height: 80px;
  bottom: 20px;
  left: 20px;
  animation-delay: 1s;
}

.dot-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  right: 40px;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

@media (max-width: 991.98px) {
  .mission-content {
    padding: 2rem;
  }

  .mission-statement blockquote {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .mission-image-container {
    margin-bottom: 2rem;
  }
}
/* Estilos personalizados para a seção Visão */
.text-gradient-vision {
  background: linear-gradient(90deg, #6610f2, #9d0a28);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vision-content {
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
}

.vision-text {
  background-color: rgba(13, 110, 253, 0.03);
  border-left: 4px solid #9d0a28;
}

.vision-quote-icon {
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: -1;
}

.vision-icon {
  font-size: 1.25rem;
  margin-top: 2px;
}

.vision-image-container {
  padding: 30px;
  background: linear-gradient(45deg, #f8f9fa, #ffffff);
  border-radius: 16px;
}

.vision-image-wrapper {
  transition: transform 0.5s ease;
  position: relative;
  z-index: 2;
}

.vision-image-wrapper:hover {
  /* transform: translateY(-5px) scale(1.02); */
}

.vision-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.deco-1 {
  width: 150px;
  height: 150px;
  top: -50px;
  right: -50px;
  background: var(--bs-primary);
}

.deco-2 {
  width: 100px;
  height: 100px;
  bottom: -30px;
  left: -30px;
  background: var(--bs-success);
}

.deco-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(var(--bs-warning) 2px, transparent 2px);
  background-size: 10px 10px;
  top: 50%;
  right: 20px;
  opacity: 0.15;
}

/* Animações */
/* .vision-image-wrapper {
  animation: float 6s ease-in-out infinite;
} */

.deco-1 {
  animation: pulse 8s ease infinite;
}

.deco-2 {
  animation: pulse 10s ease infinite 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.15;
  }
}

@media (max-width: 991.98px) {
  .vision-content {
    padding: 2rem;
  }

  .vision-text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .vision-image-container {
    margin-bottom: 2rem;
    padding: 20px;
  }

  .vision-decoration {
    display: none;
  }
}
/* Testimonials Modern Styles */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-img-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(13, 110, 253, 0.1);
}

.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #212529;
}

.stars {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonial-body {
  position: relative;
}

.testimonial-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 0;
}

.quote-icon-top,
.quote-icon-bottom {
  position: absolute;
  color: rgba(13, 110, 253, 0.1);
  font-size: 3rem;
}

.quote-icon-top {
  top: -10px;
  left: 0;
}

.quote-icon-bottom {
  bottom: -20px;
  right: 0;
}

/* Swiper Customization */
.testimonials-swiper {
  padding: 20px 0 40px;
}

.swiper-slide {
  height: auto;
  padding: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #9d0a28;
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: white;
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: #adb5bd;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #9d0a28;
  transform: scale(1.2);
}

.max-w-800 {
  max-width: 800px;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-img-container {
    margin-bottom: 1rem;
  }

  .quote-icon-top,
  .quote-icon-bottom {
    font-size: 2rem;
  }
}
/* About Section Styles */
.about-content {
  position: relative;
  z-index: 1;
}

.section-intro .badge {
  font-weight: 500;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #495057;
}

.who-we-serve h4 {
  color: #212529;
  font-size: 1.4rem;
}

.serve-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 3px solid transparent;
}

.serve-item:hover {
  transform: translateX(5px);
  border-left-color: #9d0a28;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cta-box {
  transition: all 0.3s ease;
}

.cta-box:hover {
  background-color: rgba(13, 110, 253, 0.15) !important;
}

/* Image Styles */
.about-image-wrapper {
  padding: 20px;
}

.image-frame {
  transition: transform 0.5s ease;
  position: relative;
  z-index: 2;
}

.image-frame:hover {
  transform: scale(1.02);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.floating-element {
  position: absolute;
  opacity: 0.15;
}

.element-1 {
  width: 120px;
  height: 120px;
  top: -30px;
  right: -30px;
  animation: float 6s infinite ease-in-out;
}

.element-2 {
  width: 80px;
  height: 80px;
  bottom: 20px;
  left: 20px;
  animation: float 8s infinite ease-in-out 2s;
}

.element-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  right: 40px;
  animation: float 10s infinite ease-in-out 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

@media (max-width: 991.98px) {
  .about-image-wrapper {
    margin-top: 2rem;
  }

  .section-intro h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .serve-item {
    padding: 1.25rem;
  }

  .floating-elements {
    display: none;
  }
}
/* Modal Modern Styles */
#analiseModal .modal-content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

#analiseModal .modal-header {
  padding: 2.5rem 1rem;
}

#analiseModal .icon-wrapper {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#analiseModal .modal-header:hover .icon-wrapper {
  transform: rotate(15deg) scale(1.1);
}

#analiseModal .feature-item {
  transition: transform 0.3s ease;
}

#analiseModal .feature-item:hover {
  transform: translateX(10px);
}

#analiseModal .feature-icon {
  transition: all 0.3s ease;
}

#analiseModal .feature-item:hover .feature-icon {
  background-color: rgba(13, 110, 253, 0.2) !important;
  transform: scale(1.1);
}

#analiseModal .btn {
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#analiseModal .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

#analiseModal .btn-outline-primary:hover {
  background-color: rgba(13, 110, 253, 0.05);
}

@media (max-width: 767.98px) {
  #analiseModal .modal-header {
    padding: 1.5rem 1rem;
  }

  #analiseModal .modal-body {
    padding: 1.5rem;
  }

  #analiseModal .modal-footer .d-flex {
    flex-direction: column;
    gap: 10px;
  }

  #analiseModal .btn {
    width: 100%;
  }
}

/* Modal RH Styles */
#rhDesenvolvimento .modal-content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#rhDesenvolvimento .modal-header {
  padding: 2.5rem 1rem;
}

#rhDesenvolvimento .icon-wrapper {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#rhDesenvolvimento .modal-header:hover .icon-wrapper {
  transform: rotate(-5deg) scale(1.1);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
}

.feature-item {
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-icon {
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: rgba(13, 110, 253, 0.2) !important;
  transform: scale(1.1);
}

.cta-box {
  transition: all 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn {
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary:hover {
  background-color: rgba(13, 110, 253, 0.05);
}

@media (max-width: 767.98px) {
  #rhDesenvolvimento .modal-header {
    padding: 1.5rem 1rem;
  }

  #rhDesenvolvimento .modal-body {
    padding: 1.5rem;
  }

  #rhDesenvolvimento .modal-footer .d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .feature-item {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
/* Cores personalizadas para Marketing Digital */
:root {
  --digital: #6f42c1;
  --digital-light: #8a63d2;
}

.text-digital {
  color: var(--digital) !important;
}

.bg-digital {
  background-color: var(--digital) !important;
}

.bg-gradient-digital {
  background: linear-gradient(135deg, var(--digital), var(--digital-light));
}

.btn-digital {
  background-color: var(--digital);
  border-color: var(--digital);
  color: white;
}

.btn-digital:hover {
  background-color: var(--digital-light);
  border-color: var(--digital-light);
  color: white;
}

.btn-outline-digital {
  border-color: var(--digital);
  color: var(--digital);
}

.btn-outline-digital:hover {
  background-color: rgba(111, 66, 193, 0.1);
}

/* Modal Marketing Digital Styles */
#marketingDigital .modal-content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#marketingDigital .modal-header {
  padding: 2.5rem 1rem;
}

#marketingDigital .icon-wrapper {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#marketingDigital .modal-header:hover .icon-wrapper {
  transform: rotate(10deg) scale(1.1);
}

.feature-item {
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-icon {
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: rgba(111, 66, 193, 0.2) !important;
  transform: scale(1.1);
}

.cta-box {
  transition: all 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn {
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-digital:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}

.btn-outline-digital:hover {
  background-color: rgba(111, 66, 193, 0.05);
}

@media (max-width: 767.98px) {
  #marketingDigital .modal-header {
    padding: 1.5rem 1rem;
  }

  #marketingDigital .modal-body {
    padding: 1.5rem;
  }

  #marketingDigital .modal-footer .d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .feature-item {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
/* Cores personalizadas para Workshops */
:root {
  --workshop: #fd7e14;
  --workshop-light: #ff922b;
}

.text-workshop {
  color: var(--workshop) !important;
}

.bg-workshop {
  background-color: var(--workshop) !important;
}

.bg-gradient-workshop {
  background: linear-gradient(135deg, var(--workshop), var(--workshop-light));
}

.btn-workshop {
  background-color: var(--workshop);
  border-color: var(--workshop);
  color: white;
}

.btn-workshop:hover {
  background-color: var(--workshop-light);
  border-color: var(--workshop-light);
  color: white;
}

.btn-outline-workshop {
  border-color: var(--workshop);
  color: var(--workshop);
}

.btn-outline-workshop:hover {
  background-color: rgba(253, 126, 20, 0.1);
}

/* Modal Workshops Styles */
#Workshops .modal-content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#Workshops .modal-header {
  padding: 2rem 1rem;
}

#Workshops .icon-wrapper {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#Workshops .modal-header:hover .icon-wrapper {
  transform: rotate(10deg) scale(1.1);
}

.workshop-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(253, 126, 20, 0.1);
  border-color: rgba(253, 126, 20, 0.2);
}

.workshop-icon {
  font-size: 1.5rem;
  margin-top: 3px;
}

.btn {
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-workshop:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(253, 126, 20, 0.3);
}

.btn-outline-workshop:hover {
  background-color: rgba(253, 126, 20, 0.05);
}

@media (max-width: 991.98px) {
  #Workshops .modal-body {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  #Workshops .modal-header {
    padding: 1.5rem 1rem;
  }

  #Workshops .modal-footer .d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .workshop-card {
    padding: 1.25rem;
  }
}
* Cores personalizadas para Treinamentos */ :root {
  --training: #20c997;
  --training-light: #3dd9ac;
}

.text-training {
  color: var(--training) !important;
}

.bg-training {
  background-color: var(--training) !important;
}

.bg-gradient-training {
  background: linear-gradient(135deg, var(--training), var(--training-light));
}

.btn-training {
  background-color: var(--training);
  border-color: var(--training);
  color: white;
}

.btn-training:hover {
  background-color: var(--training-light);
  border-color: var(--training-light);
  color: white;
}

.btn-outline-training {
  border-color: var(--training);
  color: var(--training);
}

.btn-outline-training:hover {
  background-color: rgba(32, 201, 151, 0.1);
}

/* Modal Training Styles */
#treinamentosCorporativos .modal-content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#treinamentosCorporativos .modal-header {
  padding: 2.5rem 1rem;
}

#treinamentosCorporativos .icon-wrapper {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#treinamentosCorporativos .modal-header:hover .icon-wrapper {
  transform: rotate(-5deg) scale(1.1);
}

.training-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.training-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(32, 201, 151, 0.1);
  border-color: rgba(32, 201, 151, 0.2);
}

.training-icon {
  transition: all 0.3s ease;
}

.training-card:hover .training-icon {
  background-color: rgba(32, 201, 151, 0.2) !important;
  transform: scale(1.1);
}

.training-cta {
  transition: all 0.3s ease;
}

.training-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn {
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-training:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

.btn-outline-training:hover {
  background-color: rgba(32, 201, 151, 0.05);
}

@media (max-width: 991.98px) {
  #treinamentosCorporativos .modal-body {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  #treinamentosCorporativos .modal-header {
    padding: 1.5rem 1rem;
  }

  #treinamentosCorporativos .modal-footer .d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .training-card {
    margin-bottom: 1rem;
  }
}
/* Cores personalizadas para Palestras */
:root {
  --lecture: #d63384; /* Cor rosa vibrante para palestras */
  --lecture-light: #e0529c;
}

.text-lecture {
  color: var(--lecture) !important;
}

.bg-lecture {
  background-color: var(--lecture) !important;
}

.bg-gradient-lecture {
  background: linear-gradient(135deg, var(--lecture), var(--lecture-light));
}

.btn-lecture {
  background-color: var(--lecture);
  border-color: var(--lecture);
  color: white;
}

.btn-lecture:hover {
  background-color: var(--lecture-light);
  border-color: var(--lecture-light);
  color: white;
}

.btn-outline-lecture {
  border-color: var(--lecture);
  color: var(--lecture);
}

.btn-outline-lecture:hover {
  background-color: rgba(214, 51, 132, 0.1);
}

/* Modal Lecture Styles */
#palestras .modal-content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#palestras .modal-header {
  padding: 2.5rem 1rem;
}

#palestras .icon-wrapper {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

#palestras .modal-header:hover .icon-wrapper {
  transform: rotate(-5deg) scale(1.1);
}

.lecture-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.lecture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(214, 51, 132, 0.1);
  border-color: rgba(214, 51, 132, 0.2);
}

.lecture-icon {
  transition: all 0.3s ease;
}

.lecture-card:hover .lecture-icon {
  background-color: rgba(214, 51, 132, 0.2) !important;
  transform: scale(1.1);
}

.lecture-cta {
  transition: all 0.3s ease;
}

.lecture-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-lecture:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(214, 51, 132, 0.3);
}

.btn-outline-lecture:hover {
  background-color: rgba(214, 51, 132, 0.05);
}

@media (max-width: 991.98px) {
  #palestras .modal-body {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  #palestras .modal-header {
    padding: 1.5rem 1rem;
  }

  #palestras .modal-footer .d-flex {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .lecture-card {
    margin-bottom: 1rem;
  }
}
