/*--------------------------------------------------------------
# Fontes & Cores 
--------------------------------------------------------------*/
/* Fontes */
:root {
  --default-font: "Inter",  system-ui, -apple-system, "Segoe UI", Inter, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Inter",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

:root { 
  --background-color: #ffffff;
  --default-color: #2d465e;
  --heading-color: #2d465e;
  --accent-color: #3e88d7;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}
/*NavMenu */
:root {
  --nav-color: #2d465e;
  --nav-hover-color: #0d81fd;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529; 
  --nav-dropdown-hover-color: #0d83fd; 
}

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

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

/*--------------------------------------------------------------
#Geral
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  text-align: center;
  position: relative;
}

/* Círculo animado */
.loader-circle {
  width: 120px;
  height: 120px;
  border: 4px solid rgba(77, 159, 255, 0.1);
  border-top: 4px solid #4d9fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
  position: relative;
}

.loader-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border: 3px solid rgba(59, 130, 246, 0.1);
  border-bottom: 3px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1.5s linear infinite reverse;
}

.loader-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid rgba(96, 165, 250, 0.1);
  border-right: 2px solid #60a5fa;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

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

/* Logo no centro */
.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

/* Texto */
.loader-text {
  font-size: 16px;
  font-weight: 600;
  color: #4d9fff;
  margin-top: 140px;
  letter-spacing: 1px;
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Barra de progresso */
.loader-progress {
  width: 200px;
  height: 4px;
  background: rgba(77, 159, 255, 0.2);
  border-radius: 10px;
  margin: 15px auto 0;
  overflow: hidden;
  position: relative;
}

.loader-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #4d9fff 0%, #3b82f6 100%);
  border-radius: 10px;
  animation: progress 5s ease-in-out forwards;
}

@keyframes progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .loader-circle {
    width: 100px;
    height: 100px;
  }

  .loader-circle::before {
    width: 75px;
    height: 75px;
  }

  .loader-circle::after {
    width: 50px;
    height: 50px;
  }

  .loader-logo {
    width: 40px;
    height: 40px;
  }

  .loader-text {
    font-size: 14px;
    margin-top: 120px;
  }

  .loader-progress {
    width: 160px;
  }
}

@media (max-width: 576px) {
  .loader-circle {
    width: 80px;
    height: 80px;
  }

  .loader-circle::before {
    width: 60px;
    height: 60px;
  }

  .loader-circle::after {
    width: 40px;
    height: 40px;
  }

  .loader-logo {
    width: 35px;
    height: 35px;
  }

  .loader-text {
    font-size: 13px;
    margin-top: 100px;
  }

  .loader-progress {
    width: 140px;
    height: 3px;
  }
}

/*Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.topbar-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #3350ae 50%, #1d4ed8 100%) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.4);
}

.topbar-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Logo ajustada */
.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-link:hover .logo-img {
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.5));
}

/* Itens do topbar com efeitos */
.topbar-item {
    position: relative;
    padding: 8px 12px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.topbar-item i {
    transition: transform 0.3s ease;
    display: inline-block;
}

.topbar-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.topbar-item:hover i {
    transform: scale(1.2);
}

/* Botões sociais com efeitos */
.social-links {
    gap: 5px;
}

.social-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(30, 58, 138, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.social-btn:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.5);
}

.social-btn:hover::before {
    width: 150%;
    height: 150%;
}

.social-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-btn:hover i {
    transform: scale(1.2);
}

/* Animação de entrada */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.topbar-gradient {
    animation: slideDown 0.5s ease-out;
}

/* Responsivo */
@media (max-width: 1200px) {
    .logo-img {
        height: 40px;
    }
    
    .topbar-item {
        font-size: 13px;
        margin-left: 10px !important;
    }
}

@media (max-width: 991.98px) {
    .topbar-gradient {
        display: none !important;
    }
    
    .logo-img {
        height: 50px;
        max-width: 200px;
        object-fit: contain;
    }
    
    .logo-link {
        display: flex;
        align-items: center;
        padding: 10px 0;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 40px;
        max-width: 180px;
    }
    
    .navbar .logo-img,
    .header .logo-img,
    .navbar-brand img {
        height: 30px !important;
        max-width: 150px !important;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
}

.navbar {
    position: relative;
    background: #ffffff;
    transition: all 0.3s ease;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1e40af, transparent);
    opacity: 0.6;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e40af, #1d4ed8);
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: -1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    transform: translateY(-3px);
}

.navbar .navbar-nav .nav-link:hover::before,
.navbar .navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar .navbar-nav .nav-link:hover::after {
    width: 150%;
    height: 150%;
    opacity: 0;
}

.navbar .navbar-nav .nav-link.active::before {
    box-shadow: 0 2px 15px rgba(30, 64, 175, 0.5);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.navbar .nav-item:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Botão Get A Quote com efeitos */
.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav .nav-link::before {
        bottom: 8px;
        height: 2px;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
        padding-top: 15px;
    }
    
    /* Fix logo mobile */
    .navbar .logo-link,
    .header .logo-link {
        max-width: 180px !important;
    }
    
    .navbar .logo-img,
    .header .logo-img,
    .navbar-brand img {
        height: 35px !important;
        width: auto !important;
        max-width: 180px !important;
        object-fit: contain !important;
    }
    
    .navbar-brand {
        padding: 0 !important;
        margin: 0 !important;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: all .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid rgba(30, 64, 175, 0.1);
        overflow: hidden;
        transform: translateY(-15px);
    }

    .navbar .nav-item .dropdown-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #1e40af, #1d4ed8, #1e40af);
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .navbar .dropdown-menu .dropdown-item {
        transition: all 0.3s ease;
        padding: 12px 25px;
        position: relative;
        overflow: hidden;
        color: var(--dark);
    }

    .navbar .dropdown-menu .dropdown-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: linear-gradient(180deg, #1e40af, #1d4ed8);
        transform: translateX(-4px);
        transition: transform 0.3s ease;
    }

    .navbar .dropdown-menu .dropdown-item::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, rgba(30, 64, 175, 0.08), transparent);
        transition: width 0.4s ease;
        z-index: -1;
    }

    .navbar .dropdown-menu .dropdown-item:hover {
        color: var(--primary);
        padding-left: 30px;
        background: transparent;
    }

    .navbar .dropdown-menu .dropdown-item:hover::before {
        transform: translateX(0);
    }

    .navbar .dropdown-menu .dropdown-item:hover::after {
        width: 100%;
    }
}

/* Efeito na navbar ao rolar */
.sticky-top.navbar-scrolled {
    box-shadow: 0 5px 20px rgba(30, 64, 175, 0.2);
}

/* Animação sutil no hover geral da navbar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

/*--------------------------------------------------------------
# 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, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
#animação mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
#Global pages/titles
--------------------------------------------------------------*/
.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: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 10px;
  padding-bottom: 0px;
  background: url('../img/hero-bg.jpg') center center no-repeat, linear-gradient(135deg, #0033a0 0%, #001a5c 100%);
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin-left: 0;
  padding-left: 40px;
}

.hero .row {
  align-items: center;
  margin-left: 0;
}

.hero .text-container {
  color: #ffffff;
  padding-right: 0px;
  padding-left: 0;
  margin-left: 60px;
}

.hero .h1-large {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero .p-large {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
}

.hero .btn-solid-lg {
  display: inline-block;
  padding: 15px 40px;
  background-color: #ffffff;
  color: #0033a0;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 15px;
}

.hero .btn-solid-lg:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero .btn-outline-lg {
  display: inline-block;
  padding: 13px 38px;
  background-color: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #ffffff;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero .btn-outline-lg:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero .image-container {
  position: relative;
  text-align: right;
  padding-right: 0;
  padding-left: 0;
}

.hero .image-container img {
  max-width: 170%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-right: -30%;
  margin-left: 70px;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero .container {
    padding-left: 40px;
  }

  .hero .h1-large {
    font-size: 44px;
  }
  
  .hero .image-container img {
    max-width: 150%;
    margin-right: -20%;
  }
}

@media (max-width: 992px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero .text-container {
    text-align: center;
    padding-right: 0;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 2rem;
  }

  .hero .h1-large {
    font-size: 38px;
    margin-bottom: 1.5rem;
  }

  .hero .p-large {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }

  .hero .image-container {
    text-align: center;
    padding-right: 0;
    order: 2;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .hero .image-container img {
    max-width: 90%;
    margin-right: 0;
    margin-left: 0;
  }

  .hero .text-container .btn-solid-lg,
  .hero .text-container .btn-outline-lg {
    margin-top: 0rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero .text-container {
    margin-left: 0;
  }

  .hero .h1-large {
    font-size: 32px;
    line-height: 1.2;
  }

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

  .hero .btn-solid-lg,
  .hero .btn-outline-lg {
    display: block;
    margin: 10px auto;
    max-width: 280px;
    text-align: center;
  }
  
  .hero .image-container img {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .hero {
    margin-top: 0%;
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .hero .h1-large {
    font-size: 28px;
  }

  .hero .p-large {
    font-size: 15px;
  }
  
  .hero .btn-solid-lg,
  .hero .btn-outline-lg {
    padding: 12px 31px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Organization Section - Background Claro
--------------------------------------------------------------*/
.organization {
  padding: 60px 0;
  background: linear-gradient(190deg, #fff 40%, #dfeafe 80%);
  color: #2c3e50;
  position: relative;
  overflow: hidden;
}

.organization::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77, 159, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.organization::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(100, 180, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.organization .container {
  position: relative;
  z-index: 1;
}

.organization-title {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.organization-title .highlight {
  color: #4d9fff;
}

.organization-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.organization .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  z-index: 2;
}

/* Dashboard Preview */
.dashboard-preview {
  position: relative;
  padding: 0px;
  margin-bottom: 40px;
}

.dashboard-preview img {
  width: 100%;
  height: 680px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  object-fit: cover;
}

.dashboard-preview:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  content: "";
  background: url("../img/about-bg.png") top left;
  background-repeat: no-repeat;
  z-index: 1;
}

.dashboard-preview img {
  position: relative;
  z-index: 2;
}

/* Features Accordion */
.features-accordion {
  padding: 0px 0;
}

.feature-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(77, 159, 255, 0.15);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  border-color: rgba(77, 159, 255, 0.4);
  box-shadow: 0 4px 20px rgba(77, 159, 255, 0.15);
}

.feature-item.active {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border-color: #4d9fff;
  box-shadow: 0 6px 25px rgba(77, 159, 255, 0.25);
}

.feature-header {
  display: flex;
  align-items: center;
  padding: 26px 20px;
  cursor: pointer;
  user-select: none;
  gap: 15px;
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #4d9fff 0%, #3b82f6 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(77, 159, 255, 0.3);
}

.feature-icon i {
  font-size: 22px;
  color: #ffffff;
}

.feature-header h4 {
  font-size: 19px;
  font-weight: 600;
  margin: 0;
  flex-grow: 1;
  color: var(--heading-color);
  line-height: 1.4;
}

.toggle-icon {
  font-size: 18px;
  color: #64748b;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.feature-item.active .toggle-icon {
  transform: rotate(180deg);
  color: #4d9fff;
}

.feature-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.feature-item.active .feature-content {
  max-height: 400px;
  padding: 0 20px 20px 80px;
}

.feature-content p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 1200px) {
  .organization-title {
    font-size: 42px;
  }
  
  .dashboard-preview img {
    height: 600px;
  }
}

@media (max-width: 992px) {
  .organization {
    padding: 50px 0;
  }
  
  .organization-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .organization-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .dashboard-preview {
    margin-bottom: 30px;
  }
  
  .dashboard-preview img {
    height: 750px;
  }
  
  .dashboard-preview:before {
    inset: -40px 0 0 -40px;
  }
  
  .feature-header {
    padding: 18px 18px;
  }
  
  .feature-header h4 {
    font-size: 16px;
  }
  
  .feature-icon {
    width: 42px;
    height: 42px;
  }
  
  .feature-icon i {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .organization {
    padding: 40px 0;
  }
  
  .organization::before,
  .organization::after {
    display: none;
  }
  
  .organization-title {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .organization-subtitle {
    font-size: 15px;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  
  .dashboard-preview {
    margin-bottom: 25px;
  }
  
  .dashboard-preview img {
    height: 400px;
    border-radius: 12px;
  }
  
  .dashboard-preview:before {
    display: none;
  }
  
  .feature-item {
    margin-bottom: 12px;
    border-radius: 10px;
  }
  
  .feature-header {
    padding: 16px 15px;
    gap: 12px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  
  .feature-icon i {
    font-size: 18px;
  }
  
  .feature-header h4 {
    font-size: 15px;
  }
  
  .toggle-icon {
    font-size: 16px;
  }
  
  .feature-item.active .feature-content {
    padding: 0 15px 15px 67px;
  }
  
  .feature-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .organization {
    padding: 35px 0;
  }
  
  .organization-title {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .organization-subtitle {
    font-size: 14px;
    margin-bottom: 0px;
    padding: 0 5px;
  }
  
  .dashboard-preview {
    margin-bottom: 20px;
  }
  
  .dashboard-preview img {
    margin-top: 0%;
    height: 450px;
    border-radius: 10px;
  }
  
  .organization .pulsating-play-btn {
    left: calc(50% - 35px);
    top: calc(50% - 35px);
    width: 70px;
    height: 70px;
  }
  
  .feature-item {
    margin-bottom: 10px;
  }
  
  .feature-header {
    padding: 14px 12px;
    gap: 10px;
  }
  
  .feature-icon {
    width: 36px;
    height: 36px;
  }
  
  .feature-icon i {
    font-size: 16px;
  }
  
  .feature-header h4 {
    font-size: 14px;
    line-height: 1.3;
  }
  
  .toggle-icon {
    font-size: 15px;
  }
  
  .feature-item.active .feature-content {
    max-height: 500px;
    padding: 0 12px 12px 58px;
  }
  
  .feature-content p {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 400px) {
  .organization-title {
    font-size: 24px;
  }
  
  .organization-subtitle {
    font-size: 13px;
  }
  
  .dashboard-preview img {
    height: 390px;
  }
  
  .feature-header h4 {
    font-size: 13px;
  }
  
  .feature-content p {
    font-size: 12px;
  }
  
  .feature-item.active .feature-content {
    padding: 0 10px 10px 52px;
  }
}

/* Stats Section */
.stats-section {
  margin-top: 5rem;
  padding: 4rem 0;
  background: transparent;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stat-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(77, 159, 255, 0.3);
}

.stat-icon i {
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(77, 159, 255, 0.4);
}

/* APENAS tons de AZUL */
.stat-icon-1 {
  background: linear-gradient(135deg, #67aefe 0%, #6fb1fc 100%);
}

.stat-icon-2 {
  background: linear-gradient(135deg, #4facfe 0%, #3b9ceb 100%);
}

.stat-icon-3 {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
}

.stat-content {
  flex: 1;
  padding-top: 0.25rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: (var(--default-color));
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
  color: #4facfe;
}

.stat-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Responsividade */
@media (max-width: 1200px) {
  .stats-cards {
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
}

@media (max-width: 992px) {
  .stats-section {
    margin-top: 4rem;
    padding: 3rem 0;
  }

  .stats-cards {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 600px;
  }
  
  .stat-icon {
    width: 75px;
    height: 75px;
    min-width: 75px;
  }
  
  .stat-icon i {
    font-size: 1.9rem;
  }
  
  .stat-number {
    font-size: 2.25rem;
  }
  
  .stat-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .stats-section {
    margin-top: 3rem;
    padding: 2.5rem 0;
  }

  .stats-cards {
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .stat-card {
    gap: 1.25rem;
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }
  
  .stat-icon i {
    font-size: 1.75rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .stats-section {
    margin-top: 2.5rem;
    padding: 2rem 0;
  }

  .stats-cards {
    gap: 1.75rem;
  }
  
  .stat-card {
    gap: 1rem;
  }

  .stat-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
  }
  
  .stat-icon i {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 23px;
  }
  
  .stat-description {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

@media (max-width: 400px) {
  .stat-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  
  .stat-icon i {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }
  
  .stat-description {
    font-size: 0.75rem;
  }
}

/*--------------------------------------------------------------
# Services Featured Section
--------------------------------------------------------------*/
.services-featured {
  padding: 140px 50px; 
  right: 5px;
  background: url('../img/services-img.png') center center no-repeat, linear-gradient(190deg, #fff 40%, #dfeafe 80%);
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.services-featured .container {
  position: relative;
  z-index: 2;
}

/* Content */
.services-content {
  left: 110px;
  margin-left: auto;
  margin-bottom: 80px;
  max-width: 650px;
  position: relative;
  z-index: 3;
}

.section-title {
  text-align: left;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 12px;
  padding: 1%;
}

.section-title .highlight {
  color: #4d9fff;
  display: inline;
}

.section-title .highlight-secondary {
  color: #271686;
}

.title-underline {
  width: 50px;
  height: 3px;
  background: #4d9fff;
  margin-bottom: 25px;
}

.section-description {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 90%;
}

/* Services List - Layout Simples */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-item:hover {
  transform: translateX(3px);
}

.service-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, #4d9fff 0%, #3b82f6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(77, 159, 255, 0.25);
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(77, 159, 255, 0.35);
}

.service-icon i {
  font-size: 26px;
  color: #ffffff;
}

.service-content {
  flex: 1;
}

.service-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.4;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.service-item:hover .service-content h4 {
  color: #4d9fff;
}

.service-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Responsive*/
@media (max-width: 1199px) {
  .services-content {
    max-width: 750px;
    left: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title {
    font-size: 38px;
  }

  .services-list {
    gap: 25px 35px;
  }
}

@media (max-width: 992px) {
  .services-featured {
    background: linear-gradient(180deg, #dfeafe 30%, #fff 70%);
    padding: 50px 20px; /* REDUZIDO de 70px para 50px */
    min-height: auto;
    right: auto;
  }

  .services-content {
    left: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    max-width: 100%;
    padding: 0 20px;
  }

  .section-title {
    font-size: 32px;
    text-align: center;
    padding: 0;
  }

  .title-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .section-description {
    text-align: center;
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .services-featured {
    padding: 40px 15px; /* REDUZIDO de 60px para 40px */
  }

  .services-content {
    left: auto;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 10px;
    padding: 0;
  }

  .section-description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .service-item {
    gap: 12px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .service-icon i {
    font-size: 24px;
  }

  .service-content h4 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .service-content p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .services-featured {
    padding: 30px 15px; /* REDUZIDO de 50px para 30px */
  }

  .services-content {
    left: auto;
    margin-bottom: 5px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-description {
    font-size: 13px;
  }

  .services-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-item {
    gap: 12px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .service-icon i {
    font-size: 22px;
  }

  .service-content h4 {
    font-size: 16px;
  }

  .service-content p {
    font-size: 14px;
  }
}

/* 
---------------------------------------------
Systems Style
--------------------------------------------- 
*/

.our-systems {
  position: relative;
  margin-top: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  overflow: hidden;
  background-color: var(--background-color);
}

.our-systems .container {
  position: relative;
  z-index: 2;
}

.our-systems .section-heading {
  text-align: left !important;
  margin-bottom: 50px;
}

.our-systems .section-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  text-align: left !important;
}

.our-systems .section-heading h2 em {
  font-style: normal;
  color: var(--accent-color);
  font-weight: 700;
}

.our-systems .section-heading h2 span {
  color: var(--font-color);
  font-weight: 700;
}

.our-systems .section-heading .heading-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--font-color) 100%);
  margin: 20px 0;
  margin-left: 0;
  border-radius: 2px;
}

.our-systems .section-heading .section-description {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.8;
  margin-top: 10px;
  max-width: 600px;
  text-align: left !important;
}

.our-systems .section-heading > p {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

.our-systems .item {
  text-align: center;
  margin: 15px;
  border-radius: 15px;
  background-color: var(--surface-color);
  padding: 35px 25px;
  box-shadow: 0px 5px 20px rgba(42, 139, 202, 0.08);
  transition: all 0.3s ease;
  min-height: 300px;
  border: 1px solid rgba(42, 139, 202, 0.1);
}

.our-systems .item:hover {
  transform: translateY(-8px);
  box-shadow: 0px 15px 35px rgba(42, 139, 202, 0.25);
  border-color: var(--accent-color);
}

.our-systems .item h4 {
  font-size: 19px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 25px;
  line-height: 28px;
  min-height: 56px;
}

.our-systems .item .icon {
  width: 140px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: all 0.3s ease;
}

.our-systems .item:hover .icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--font-color) 100%);
  transform: scale(1.05);
}

.our-systems .item .icon img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.our-systems .item p {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 2px solid rgba(66, 139, 202, 0.15);
  color: #6c757d;
  font-size: 16px;
  line-height: 24px;
}

.our-systems .owl-dots {
  text-align: center;
  margin-top: 45px;
}

.our-systems .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: var(--default-color);
  border-radius: 50%;
  opacity: 0.3;
  margin: 0px 6px;
  display: inline-block;
  transition: all 0.3s ease;
}

.our-systems .owl-dots .owl-dot.active {
  opacity: 1;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color) 100%);
}

.our-systems .owl-dots .owl-dot:hover {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
  .our-systems {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .our-systems .section-heading h2 {
    font-size: 34px;
  }

  .our-systems .section-heading .section-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .our-systems .section-heading {
    text-align: center !important;
  }

  .our-systems .section-heading h2 {
    text-align: center !important;
  }

  .our-systems .section-heading > span {
    text-align: center !important;
  }

  .our-systems .section-heading .section-description {
    text-align: center !important;
  }

  .our-systems .section-heading .heading-line {
    margin: 20px auto;
  }

  .our-systems .section-heading .section-description {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .our-systems {
    padding-top: 0px;
    padding-bottom: 20px;
  }
  
  .our-systems .section-heading h2 {
    font-size: 24px;
    line-height: 1.4;
  }
  
  .our-systems .item {
    padding: 30px 20px;
    min-height: auto;
  }

  .our-systems .section-heading .section-description {
    font-size: 14px;
  }
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
  padding: 80px 0;
  background: linear-gradient(190deg, #dfeafe 0%, #fff 60%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(77, 159, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-label {
  font-size: 14px;
  font-weight: 600;
  color: #3584f4;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-title span {
  color: var(--font-color);
}

.about-description {
  font-size: 16px;
  color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Image Container */
.image-container-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: auto;
  background: transparent;
}

.image-container-map img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.image-placeholder i {
  font-size: 60px;
  color: #4d9fff;
  opacity: 0.5;
}

.image-placeholder p {
  font-size: 16px;
  color: var(--default-color);
  margin: 0;
}

/* Counter Stats */
.counter-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.counter-item {
  text-align: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  border: none;
  transition: all 0.3s ease;
}

.counter-item:hover {
  transform: translateY(-5px);
}

.counter-item:hover .counter-icon {
  transform: scale(1.08) rotate(-5deg);
}

.counter-number {
  font-size: 48px;
  font-weight: 700;
  color: #4d9fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.counter-number .plus {
  font-size: 44px;
  font-weight: 600;
}

.counter-label {
  font-size: 16px;
  font-weight: 600;
  color: #434f5a;
  margin: 0;
  line-height: 1.4;
}

/* Responsividade */
@media (max-width: 1200px) {
  .about-title {
    font-size: 34px;
  }
  
  .about-description {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 60px 0;
  }

  .about-label {
    font-size: 13px;
  }

  .about-title {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .about-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .image-container-map {
    margin-bottom: 30px;
  }

  .counter-stats {
    margin-top: 30px;
    gap: 25px;
  }
  
  .counter-number {
    font-size: 32px;
  }
  
  .counter-number .plus {
    font-size: 22px;
  }
  
  .counter-label {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }

  .about-label {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .about-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .about-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .counter-stats {
    gap: 20px;
  }

  .counter-number {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .counter-number .plus {
    font-size: 20px;
  }

  .counter-label {
    font-size: 14px;
  }

  .image-placeholder i {
    font-size: 50px;
  }

  .image-placeholder p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 40px 0;
  }

  .about-label {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .about-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .about-description {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .counter-stats {
    gap: 18px;
    margin-top: 25px;
  }

  .counter-number {
    font-size: 26px;
    margin-bottom: 5px;
  }

  .counter-number .plus {
    font-size: 18px;
  }

  .counter-label {
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .about-title {
    font-size: 20px;
  }

  .about-description {
    font-size: 13px;
  }

  .counter-number {
    font-size: 24px;
  }

  .counter-label {
    font-size: 12px;
  }
}


/* CTA Section */
.bsb-cta-1 {
  padding: 100px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bsb-cta-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(32, 68, 118, 0.36) 0%, rgba(53, 102, 161, 0.289) 100%);
  z-index: 0;
}

.bsb-cta-1 .container {
  position: relative;
  z-index: 1;
}

/* Badge */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cta-badge span {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Title */
.bsb-cta-1 h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 25px;
}

.cta-highlight {
  color: #4d9fff;
  position: relative;
  display: inline-block;
}

.cta-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #4d9fff 0%, #3b82f6 100%);
  border-radius: 2px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #4d9fff 0%, #3b82f6 100%);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(77, 160, 255, 0.3);
  text-decoration: none;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(77, 159, 255, 0.5);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
}

.btn-cta-primary i {
  font-size: 18px;
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: #ffffff;
}

.btn-cta-secondary i {
  font-size: 18px;
}

/* Features */
.cta-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.cta-feature-item i {
  font-size: 16px;
  color: #4d9fff;
}

/* Responsividade */
@media (max-width: 1200px) {
  .bsb-cta-1 h2 {
    font-size: 34px;
  }
}

@media (max-width: 992px) {
  .bsb-cta-1 {
    padding: 80px 0;
  }
  
  .bsb-cta-1 h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .cta-badge {
    padding: 7px 16px;
    margin-bottom: 18px;
  }
  
  .cta-badge span {
    font-size: 11px;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 13px 26px;
    font-size: 14px;
  }
  
  .cta-features {
    gap: 18px;
  }
  
  .cta-feature-item {
    font-size: 13px;
  }
  
  .cta-feature-item i {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .bsb-cta-1 {
    padding: 60px 0;
  }
  
  .bsb-cta-1 h2 {
    font-size: 26px;
    margin-bottom: 18px;
  }
  
  .cta-badge {
    padding: 6px 14px;
    margin-bottom: 15px;
  }
  
  .cta-badge span {
    font-size: 10px;
  }
  
  .cta-buttons {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 12px 24px;
    font-size: 13px;
  }
  
  .btn-cta-primary i,
  .btn-cta-secondary i {
    font-size: 16px;
  }
  
  .cta-features {
    gap: 15px;
  }
  
  .cta-feature-item {
    font-size: 12px;
  }
  
  .cta-feature-item i {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .bsb-cta-1 {
    padding: 50px 0;
  }
  
  .bsb-cta-1 h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .cta-badge {
    padding: 6px 12px;
    margin-bottom: 12px;
  }
  
  .cta-badge span {
    font-size: 10px;
    letter-spacing: 0.3px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-feature-item {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .bsb-cta-1 h2 {
    font-size: 20px;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 11px 18px;
    font-size: 12px;
  }
  
  .cta-feature-item {
    font-size: 11px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-image: url("../img/contact-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
  padding: 80px 0;
}

.contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact .info-item + .info-item {
  margin-top: 20px;
}

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

.contact .info-item h3 {
  padding: 0;
  color: var(--default-color);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #4f5461;
  line-height: 1.6;
}

/* Formulário */
.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 12px 15px;
  box-shadow: none;
  border-radius: 8px;
  color: #495057;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  transition: border-color 0.3s ease;
}

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

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #b0b0b0;
  font-size: 14px;
  font-weight: 400;
}

/* Botão de enviar */
.contact .php-email-form .btn-submit {
  color: #ffffff;
  background: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
}

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

/* Remove as mensagens de loading/erro/sucesso */
.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  display: none !important;
}

/* Responsividade */
@media (max-width: 1200px) {
  .contact .section-title {
    font-size: 34px;
  }
}

@media (max-width: 992px) {
  .contact {
    padding: 60px 0;
  }

  .contact .section-title {
    font-size: 30px;
  }

  .contact .info-item h3 {
    font-size: 15px;
  }

  .contact .info-item p {
    font-size: 13px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-infor {
    order: 2;
  }

  .contact-form {
    order: 1;
  }
}

/* Mensagens do formulário */
.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #4d9fff;
  color: #4d9fff;
  font-weight: 500;
}

.php-email-form .loading.d-block {
  display: block !important;
}

.php-email-form .error-message {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #dc3545;
  color: #dc3545;
  font-weight: 500;
}

.php-email-form .error-message.d-block {
  display: block !important;
}

.php-email-form .sent-message {
  display: none;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 2px solid #4caf50;
  color: #2e7d32;
  font-weight: 600;
  font-size: 16px;
  animation: slideDown 0.5s ease;
}

.php-email-form .sent-message.d-block {
  display: block !important;
}

.php-email-form .sent-message i {
  font-size: 32px;
  color: #4caf50;
  display: block;
  margin-bottom: 10px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 50px 0;
    background-position: center 50px;
    background-size: contain;
  }

  .contact .section-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .contact .info-item i {
    font-size: 22px;
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }

  .contact .info-item h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .contact .info-item p {
    font-size: 13px;
  }

  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email],
  .contact .php-email-form textarea {
    font-size: 13px;
    padding: 11px 14px;
  }

  .contact .php-email-form input[type=text]::placeholder,
  .contact .php-email-form input[type=email]::placeholder,
  .contact .php-email-form textarea::placeholder {
    font-size: 13px;
  }

  .contact .php-email-form .btn-submit {
    padding: 11px 32px;
    font-size: 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-infor,
  .contact-form {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .contact {
    padding: 40px 0;
  }

  .contact .section-title {
    font-size: 22px;
  }

  .contact .info-item + .info-item {
    margin-top: 15px;
  }

  .contact .info-item i {
    font-size: 20px;
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }

  .contact .info-item h3 {
    font-size: 13px;
  }

  .contact .info-item p {
    font-size: 12px;
  }

  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email],
  .contact .php-email-form textarea {
    font-size: 13px;
    padding: 10px 12px;
  }

  .contact .php-email-form input[type=text]::placeholder,
  .contact .php-email-form input[type=email]::placeholder,
  .contact .php-email-form textarea::placeholder {
    font-size: 13px;
  }

  .contact .php-email-form .btn-submit {
    padding: 10px 28px;
    font-size: 13px;
  }

  .contact-infor,
  .contact-form {
    padding: 25px 15px;
  }
}

@media (max-width: 400px) {
  .contact .section-title {
    font-size: 20px;
  }

  .contact .info-item h3 {
    font-size: 12px;
  }

  .contact .info-item p {
    font-size: 11px;
  }

  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email],
  .contact .php-email-form textarea {
    font-size: 12px;
  }

  .contact .php-email-form .btn-submit {
    font-size: 12px;
    padding: 10px 24px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, #172533 0%, #34495e 100%);
  color: #fff;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e40af, #1d4ed8, #1e40af);
}

/* Logo no footer */
.footer-logo {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo:hover .footer-logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* Descrição */
.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* Títulos */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
  color: #fff;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #1e40af, #1d4ed8);
  border-radius: 2px;
}

/* Links */
.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #1d4ed8;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-link:hover::before {
  width: 100%;
}

/* Ícones sociais */
.social-icons {
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 0 5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: -1;
}

.social-link:hover {
  color: #fff;
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.social-link:hover::before {
  width: 150%;
  height: 150%;
}

/* Divider */
.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  margin: 2rem 0 1.5rem;
}

/* Copyright */
.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-logo-img {
    height: 40px;
  }
  
  .footer-title {
    font-size: 16px;
    margin-bottom: 1rem;
  }
  
  .footer-description {
    font-size: 13px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

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

.footer .col-lg-4,
.footer .col-lg-3,
.footer .col-md-6 {
  animation: fadeInUp 0.6s ease-out;
}

.footer .col-lg-4:nth-child(1) {
  animation-delay: 0.1s;
}

.footer .col-lg-3:nth-child(2) {
  animation-delay: 0.2s;
}

.footer .col-lg-3:nth-child(3) {
  animation-delay: 0.3s;
}


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