.site-header {
  background-color: #fff;
  width: 100%;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-top-bar {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #999;
}
.header-top-bar .top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top-bar .top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-top-bar .top-bar-item {
  color: #999;
}
.header-top-bar .top-bar-separator {
  color: #ccc;
}
.header-top-bar .top-bar-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.header-top-bar .social-icon {
  color: #999;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.header-top-bar .social-icon:hover {
  color: #0073aa;
}
.header-top-bar .social-icon i {
  display: block;
}

.header-main {
  padding: 0.5rem 0;
  background-color: #fff;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-branding {
  flex-shrink: 0;
}

.logo-link {
  display: block;
  text-decoration: none;
}

.logo-img {
  height: auto;
  max-height: 90px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-name {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.875rem;
  color: #666;
  font-weight: 400;
  margin-top: -2px;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

#primary-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
#primary-menu li {
  position: relative;
}
#primary-menu li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  display: block;
}
#primary-menu li a:hover {
  color: #0073aa;
}
#primary-menu li.current-menu-item > a, #primary-menu li.current_page_item > a {
  color: #0073aa;
}
#primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
#primary-menu .sub-menu li {
  width: 100%;
}
#primary-menu .sub-menu li a {
  padding: 0.75rem 1rem;
}
#primary-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-cta {
  flex-shrink: 0;
}

.btn-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: #333;
  z-index: 1001;
}
.menu-toggle .menu-toggle-icon {
  display: block;
}

.menu-close {
  display: none;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  .header-content {
    gap: 1.5rem;
  }
  #primary-menu {
    gap: 1.5rem;
  }
  #primary-menu li a {
    font-size: 0.95rem;
  }
  .btn-cta {
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 900px) {
  .header-top-bar .top-bar-right {
    gap: 0.75rem;
  }
  .header-top-bar .social-icon {
    font-size: 1rem;
    width: 20px;
    height: 20px;
  }
  #primary-menu {
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .header-top-bar {
    padding: 0.75rem 0;
    text-align: center;
  }
  .header-top-bar .top-bar-content {
    justify-content: center;
  }
  .header-top-bar .top-bar-left {
    justify-content: center;
    width: 100%;
  }
  .header-top-bar .top-bar-separator,
  .header-top-bar .top-bar-item:last-child {
    display: none;
  }
  .header-top-bar .top-bar-right {
    display: none;
  }
  .header-main {
    padding: 1rem 0;
  }
  .header-content {
    justify-content: space-between;
    gap: 0;
  }
  .site-branding {
    flex-shrink: 0;
  }
  .logo-img {
    max-height: 60px;
  }
  .logo-name {
    font-size: 1.75rem;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.25rem;
    color: #333;
    z-index: 1001;
    transition: all 0.3s ease;
    min-width: 40px;
    min-height: 40px;
  }
  .menu-toggle:hover {
    background-color: #f5f5f5;
    border-color: #0073aa;
    color: #0073aa;
  }
  .menu-toggle .menu-toggle-icon {
    display: block;
  }
  .main-navigation {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 4rem 0 2rem;
  }
  .main-navigation.active {
    right: 0;
  }
  .menu-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10000;
    transition: color 0.3s ease;
  }
  .menu-close:hover {
    color: #0073aa;
  }
  #primary-menu {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  #primary-menu li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  #primary-menu li a {
    padding: 1rem 1.5rem;
    width: 100%;
    display: block;
    font-size: 1rem;
  }
  #primary-menu li:first-child {
    border-top: 1px solid #f0f0f0;
  }
  #primary-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: #f9fafb;
    padding: 0;
  }
  #primary-menu .sub-menu li {
    border-bottom: none;
  }
  #primary-menu .sub-menu li a {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  body.menu-open {
    overflow: hidden;
  }
  .header-cta {
    display: none;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .header-top-bar {
    font-size: 0.8125rem;
    padding: 0.625rem 0;
  }
  .header-main {
    padding: 0.875rem 0;
  }
  .logo-img {
    max-height: 50px;
  }
  .logo-name {
    font-size: 1.5rem;
  }
  .menu-toggle {
    min-width: 36px;
    min-height: 36px;
    font-size: 1.125rem;
  }
  .main-navigation {
    width: 90%;
  }
  .main-navigation.active {
    right: 0;
  }
  #primary-menu li a {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }
  #primary-menu .sub-menu li a {
    padding: 0.625rem 1.75rem;
    font-size: 0.875rem;
  }
}
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: visible;
  z-index: 1;
}
.hero-banner .hero-banner-slider .banner-slide {
  position: relative;
  width: 100%;
  min-height: 600px;
  outline: none;
}
.hero-banner .hero-banner-slider .banner-slide .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-banner .hero-banner-slider .banner-slide .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-banner .hero-banner-slider .banner-slide .banner-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(30, 58, 138, 0.6) 0%, rgba(37, 99, 235, 0.4) 100%);
  z-index: 1;
}
.hero-banner .hero-banner-slider .banner-slide .container {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: 5rem 20px;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-banner .hero-banner-slider .banner-slide .banner-content {
  color: #fff;
  position: relative;
}
.hero-banner .hero-banner-slider .banner-slide .banner-title {
  font-size: 46px;
  font-weight: 200;
  line-height: 51px;
  margin-bottom: 2rem;
  color: #fff;
  max-width: 687px;
}
.hero-banner .hero-banner-slider .banner-slide .banner-subtitle {
  font-size: 19px;
  line-height: 25px;
  margin-bottom: 2rem;
  color: hsla(0, 0%, 100%, 0.95);
  font-weight: 200;
  letter-spacing: 1px;
  max-width: 600px;
  background: rgba(9, 11, 17, 0.23);
  padding: 21px;
  border-radius: 23px;
  backdrop-filter: blur(7px);
}
.hero-banner .hero-banner-slider .banner-slide .banner-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #fff;
  color: #1e3a8a;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-banner .hero-banner-slider .banner-slide .banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  color: #1e3a8a;
}
.hero-banner .slick-dots {
  bottom: 30px;
  z-index: 10;
}
.hero-banner .slick-dots li button:before {
  color: #fff;
  font-size: 14px;
  opacity: 0.5;
}
.hero-banner .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}

@media (max-width: 1024px) {
  .hero-banner {
    min-height: 550px;
  }
  .hero-banner .hero-banner-slider .banner-slide {
    min-height: 550px;
  }
  .hero-banner .hero-banner-slider .banner-slide .container {
    min-height: 550px;
    padding: 4rem 30px;
  }
  .hero-banner .hero-banner-slider .banner-slide .banner-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .hero-banner .hero-banner-slider .banner-slide .banner-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    padding: 18px;
    max-width: 550px;
  }
}
@media (max-width: 768px) {
  .hero-banner {
    min-height: 500px;
  }
  .hero-banner .hero-banner-slider .banner-slide {
    min-height: 500px;
  }
  .hero-banner .hero-banner-slider .banner-slide .container {
    min-height: 500px;
    padding: 3rem 20px;
  }
  .hero-banner .hero-banner-slider .banner-slide .banner-title {
    font-size: 1.875rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    max-width: 100%;
  }
  .hero-banner .hero-banner-slider .banner-slide .banner-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding: 16px;
    max-width: 100%;
  }
  .hero-banner .hero-banner-slider .banner-slide .banner-button {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .hero-banner .slick-dots {
    bottom: 20px;
  }
  .hero-banner .slick-dots li button:before {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .hero-banner {
    min-height: 450px;
  }
  .hero-banner .hero-banner-slider .banner-slide {
    min-height: 450px;
  }
  .hero-banner .hero-banner-slider .banner-slide .container {
    min-height: 450px;
    padding: 2.5rem 15px;
  }
  .hero-banner .hero-banner-slider .banner-slide .banner-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  .hero-banner .hero-banner-slider .banner-slide .banner-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    padding: 14px;
    border-radius: 16px;
  }
  .hero-banner .hero-banner-slider .banner-slide .banner-button {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 100%;
  }
  .hero-banner .slick-dots {
    bottom: 15px;
  }
  .hero-banner .slick-dots li {
    margin: 0 3px;
  }
  .hero-banner .slick-dots li button:before {
    font-size: 10px;
  }
}
@media (max-width: 360px) {
  .hero-banner {
    min-height: 400px;
  }
  .hero-banner .hero-banner-slider .banner-slide {
    min-height: 400px;
  }
  .hero-banner .hero-banner-slider .banner-slide .container {
    min-height: 400px;
    padding: 2rem 15px;
  }
  .hero-banner .hero-banner-slider .banner-slide .banner-title {
    font-size: 1.375rem;
    line-height: 1.3;
  }
  .hero-banner .hero-banner-slider .banner-slide .banner-subtitle {
    font-size: 0.875rem;
    padding: 12px;
  }
  .hero-banner .hero-banner-slider .banner-slide .banner-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.875rem;
  }
}
.about-section {
  width: 100%;
  padding: 4rem 0;
  background-color: #fff;
}
.about-section .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-section .about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .about-section .about-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.about-section .about-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.about-section .about-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 500px;
}
.about-section .about-carousel .slick-list {
  margin: 0;
  padding: 0;
  border-radius: 12px;
  height: 500px;
  width: 100%;
}
.about-section .about-carousel .slick-track {
  height: 500px;
}
.about-section .about-carousel .slick-slide {
  height: 500px;
  width: 100%;
}
.about-section .about-carousel .slick-slide > div {
  height: 500px;
}
.about-section .about-carousel .about-slide {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  outline: none;
  margin: 0;
  padding: 0;
}
.about-section .about-carousel .about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}
.about-section .about-carousel .slick-prev,
.about-section .about-carousel .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.about-section .about-carousel .slick-prev:before,
.about-section .about-carousel .slick-next:before {
  display: none;
}
.about-section .about-carousel .slick-prev i,
.about-section .about-carousel .slick-next i {
  color: #333;
  font-size: 16px;
}
.about-section .about-carousel .slick-prev:hover,
.about-section .about-carousel .slick-next:hover {
  background: rgb(255, 255, 255);
  transform: translateY(-50%) scale(1.1);
}
.about-section .about-carousel .slick-prev {
  left: 20px;
}
.about-section .about-carousel .slick-next {
  right: 20px;
}
.about-section .about-carousel .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-section .about-carousel .slick-dots li {
  margin: 0;
  padding: 0;
}
.about-section .about-carousel .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  padding: 0;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.about-section .about-carousel .slick-dots li button:before {
  display: none;
}
.about-section .about-carousel .slick-dots li.slick-active button {
  background: #fff;
  border-color: #fff;
}
.about-section .about-image {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
  background-image: url("../img/sobre-equipe.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.about-section .image-overlay {
  color: #fff;
  z-index: 2;
}
.about-section .image-overlay .overlay-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.about-section .image-overlay .overlay-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #fff;
}
.about-section .about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  z-index: 1;
}
.about-section .about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
}
.about-section .small-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 0.5rem;
}
.about-section .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin: 0 0 1rem 0;
}
.about-section .about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
.about-section .about-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
.about-section .about-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-self: flex-start;
}
.about-section .about-button i {
  font-size: 0.875rem;
}
.about-section .about-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  color: #fff;
}
.about-section .about-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 3rem 0;
  align-items: center;
}
.about-section .stat-item {
  text-align: left;
  padding: 0 2rem;
}
.about-section .stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, #2563eb 50%, transparent 100%);
  align-self: center;
}
.about-section .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.about-section .stat-label {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
}
.about-section .about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.about-section .card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.about-section .card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.about-section .card-icon i {
  color: #fff;
  font-size: 28px;
}
.about-section .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}
.about-section .card-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

@media (max-width: 1200px) {
  .about-section .about-hero {
    gap: 6rem;
  }
  .about-section .about-stats {
    gap: 0;
    padding: 2.5rem 0;
  }
  .about-section .stat-item {
    padding: 0 1.5rem;
  }
}
@media (max-width: 1024px) {
  .about-section .about-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .about-section .about-carousel .about-slide {
    height: 400px;
  }
  .about-section .about-content {
    gap: 1.5rem;
  }
  .about-section .about-title {
    font-size: 2rem;
  }
  .about-section .about-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .about-section .card {
    padding: 2rem 1.5rem;
  }
  .about-section .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 2.5rem 0;
  }
  .about-section .stat-divider {
    display: none;
  }
  .about-section .stat-item {
    padding: 0;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }
  .about-section .about-hero {
    margin-bottom: 3rem;
    gap: 2.5rem;
  }
  .about-section .about-carousel .about-slide {
    height: 350px;
  }
  .about-section .about-carousel .slick-prev,
  .about-section .about-carousel .slick-next {
    width: 35px;
    height: 35px;
  }
  .about-section .about-carousel .slick-prev i,
  .about-section .about-carousel .slick-next i {
    font-size: 14px;
  }
  .about-section .about-carousel .slick-prev {
    left: 10px;
  }
  .about-section .about-carousel .slick-next {
    right: 10px;
  }
  .about-section .about-content {
    gap: 1.5rem;
  }
  .about-section .about-title {
    font-size: 1.75rem;
  }
  .about-section .about-text {
    font-size: 0.95rem;
  }
  .about-section .about-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  .about-section .card {
    padding: 2rem;
  }
  .about-section .card-icon {
    width: 60px;
    height: 60px;
  }
  .about-section .card-icon i {
    font-size: 24px;
  }
  .about-section .card-title {
    font-size: 1.25rem;
  }
  .about-section .about-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .about-section .about-button {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .about-section .about-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }
  .about-section .stat-item {
    padding: 0;
    text-align: center;
  }
  .about-section .stat-value {
    font-size: 1.75rem;
  }
  .about-section .stat-label {
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .about-section {
    padding: 2rem 0;
  }
  .about-section .about-hero {
    margin-bottom: 2.5rem;
    gap: 2rem;
  }
  .about-section .about-carousel .about-slide {
    height: 300px;
  }
  .about-section .about-content {
    gap: 1.25rem;
  }
  .about-section .small-label {
    font-size: 0.75rem;
  }
  .about-section .about-title {
    font-size: 1.5rem;
  }
  .about-section .about-text {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .about-section .about-cards {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .about-section .card {
    padding: 1.5rem;
  }
  .about-section .card-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 1.25rem;
  }
  .about-section .card-icon i {
    font-size: 20px;
  }
  .about-section .card-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  .about-section .card-desc {
    font-size: 0.9rem;
  }
  .about-section .about-stats {
    gap: 1.75rem;
    padding: 1.75rem 0;
  }
  .about-section .stat-value {
    font-size: 1.5rem;
  }
  .about-section .stat-label {
    font-size: 0.8125rem;
  }
}
.banner-small {
  position: relative;
  width: 100%;
  padding: 3rem 0;
  overflow: hidden;
}
.banner-small .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.banner-small .banner-small-slider .banner-slide {
  outline: none;
}
.banner-small .banner-small-slider .banner-slide .banner-small-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-small .banner-small-slider .banner-slide .banner-small-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.banner-small .slick-prev,
.banner-small .slick-next {
  z-index: 10;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.banner-small .slick-prev:before,
.banner-small .slick-next:before {
  display: none;
}
.banner-small .slick-prev i,
.banner-small .slick-next i {
  color: #2563eb;
  font-size: 1.25rem;
}
.banner-small .slick-prev:hover,
.banner-small .slick-next:hover {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.banner-small .slick-prev {
  left: -25px;
}
.banner-small .slick-next {
  right: -25px;
}
.banner-small .slick-dots {
  bottom: -40px;
}
.banner-small .slick-dots li button:before {
  color: #2563eb;
  font-size: 12px;
  opacity: 0.5;
}
.banner-small .slick-dots li.slick-active button:before {
  opacity: 1;
}

@media (max-width: 768px) {
  .banner-small {
    padding: 2rem 0;
  }
  .banner-small .slick-prev,
  .banner-small .slick-next {
    display: none !important;
  }
  .banner-small .slick-dots {
    bottom: -30px;
  }
}
.solutions-section {
  width: 100%;
  padding: 5rem 0;
  background-color: #fff;
}
.solutions-section .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.solutions-section .solutions-header {
  text-align: center;
  margin-bottom: 4rem;
}
.solutions-section .solutions-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background-color: #f3f4f6;
  color: #6b7280;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.solutions-section .solutions-badge i {
  font-size: 0.875rem;
}
.solutions-section .solutions-title {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.solutions-section .solutions-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
.solutions-section .solutions-slider {
  margin: 0 -1rem;
}
.solutions-section .solution-card {
  display: block;
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 2rem;
  margin: 0 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none !important;
  color: inherit;
}
.solutions-section .solution-card,
.solutions-section .solution-card * {
  text-decoration: none !important;
}
.solutions-section .solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  color: inherit;
}
.solutions-section .solution-card:hover,
.solutions-section .solution-card:hover * {
  text-decoration: none !important;
}
.solutions-section .solution-icon {
  width: 48px;
  height: 48px !important;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.solutions-section .solution-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}
.solutions-section .solution-icon i {
  font-size: 1.5rem;
  color: #2563eb;
}
.solutions-section .solution-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.solutions-section .solution-description {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
.solutions-section .slick-track {
  display: flex;
  align-items: stretch;
}
.solutions-section .slick-slide {
  height: auto;
}
.solutions-section .slick-slide > div {
  height: 100%;
}
.solutions-section .slick-prev,
.solutions-section .slick-next {
  z-index: 10;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.solutions-section .slick-prev:before,
.solutions-section .slick-next:before {
  display: none;
}
.solutions-section .slick-prev i,
.solutions-section .slick-next i {
  color: #2563eb;
  font-size: 1.25rem;
}
.solutions-section .slick-prev:hover,
.solutions-section .slick-next:hover {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.solutions-section .slick-prev {
  left: -25px;
}
.solutions-section .slick-next {
  right: -25px;
}
.solutions-section .slick-dots {
  bottom: -40px;
}
.solutions-section .slick-dots li button:before {
  color: #2563eb;
  font-size: 12px;
  opacity: 0.5;
}
.solutions-section .slick-dots li.slick-active button:before {
  opacity: 1;
}

@media (max-width: 1200px) {
  .solutions-section .slick-prev {
    left: -20px;
  }
  .solutions-section .slick-next {
    right: -20px;
  }
}
@media (max-width: 1024px) {
  .solutions-section {
    padding: 4.5rem 0;
  }
  .solutions-section .solutions-header {
    margin-bottom: 3.5rem;
  }
  .solutions-section .solutions-title {
    font-size: 2.5rem;
  }
  .solutions-section .solutions-subtitle {
    font-size: 1.0625rem;
  }
  .solutions-section .slick-prev {
    left: -15px;
    width: 45px;
    height: 45px;
  }
  .solutions-section .slick-next {
    right: -15px;
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 768px) {
  .solutions-section {
    padding: 3.5rem 0;
  }
  .solutions-section .solutions-header {
    margin-bottom: 2.5rem;
  }
  .solutions-section .solutions-badge {
    font-size: 0.8125rem;
    padding: 0.4rem 1rem;
  }
  .solutions-section .solutions-title {
    font-size: 2rem;
    margin-bottom: 0.875rem;
  }
  .solutions-section .solutions-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
  .solutions-section .solutions-slider {
    margin: 0 -0.75rem;
  }
  .solutions-section .solution-card {
    padding: 1.5rem;
    margin: 0 0.75rem;
  }
  .solutions-section .solution-icon {
    width: 44px;
    height: 44px !important;
    margin-bottom: 1.25rem;
  }
  .solutions-section .solution-icon i {
    font-size: 1.375rem;
  }
  .solutions-section .solution-title {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
  }
  .solutions-section .solution-description {
    font-size: 0.9rem;
  }
  .solutions-section .slick-prev,
  .solutions-section .slick-next {
    display: none !important;
  }
  .solutions-section .slick-dots {
    bottom: -35px;
  }
}
@media (max-width: 480px) {
  .solutions-section {
    padding: 3rem 0;
  }
  .solutions-section .solutions-header {
    margin-bottom: 2rem;
  }
  .solutions-section .solutions-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.875rem;
  }
  .solutions-section .solutions-title {
    font-size: 1.75rem;
  }
  .solutions-section .solutions-subtitle {
    font-size: 0.9375rem;
  }
  .solutions-section .solutions-slider {
    margin: 0 -0.5rem;
  }
  .solutions-section .solution-card {
    padding: 1.25rem;
    margin: 0 0.5rem;
  }
  .solutions-section .solution-icon {
    width: 40px;
    height: 40px !important;
    margin-bottom: 1rem;
  }
  .solutions-section .solution-icon i {
    font-size: 1.25rem;
  }
  .solutions-section .solution-title {
    font-size: 1.0625rem;
  }
  .solutions-section .solution-description {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .solutions-section .slick-dots {
    bottom: -30px;
  }
  .solutions-section .slick-dots li button:before {
    font-size: 10px;
  }
}
.blog-section {
  width: 100%;
  padding: 5rem 0;
  background-color: #fff;
}
.blog-section .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog-section .blog-header {
  text-align: center;
  margin-bottom: 4rem;
}
.blog-section .blog-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}
.blog-section .blog-section-subtitle {
  font-size: 1.125rem;
  color: #000;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-section .blog-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-section .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.blog-section .blog-card .blog-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.blog-section .blog-card .blog-card-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.blog-section .blog-card .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.blog-section .blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-section .blog-card .blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-section .blog-card .blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.blog-section .blog-card .blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-section .blog-card .blog-meta span i {
  color: #1e3a8a;
}
.blog-section .blog-card .blog-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.blog-section .blog-card .blog-title a {
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-section .blog-card .blog-title a:hover {
  color: #2563eb;
}
.blog-section .blog-card .blog-excerpt {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.blog-section .blog-card .blog-author-read-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.blog-section .blog-card .blog-author-read-more .blog-author {
  font-size: 0.875rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-section .blog-card .blog-author-read-more .blog-author i {
  color: #1e3a8a;
}
.blog-section .blog-card .blog-author-read-more .read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.blog-section .blog-card .blog-author-read-more .read-more-link:hover {
  color: #4b5563;
  transform: translateX(3px);
}

@media (max-width: 1200px) {
  .blog-section .blog-grid {
    gap: 1.75rem;
  }
}
@media (max-width: 1024px) {
  .blog-section {
    padding: 4.5rem 0;
  }
  .blog-section .blog-header {
    margin-bottom: 3.5rem;
  }
  .blog-section .blog-section-title {
    font-size: 2.25rem;
  }
  .blog-section .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .blog-section .blog-card .blog-card-image {
    height: 200px;
  }
  .blog-section .blog-card .blog-title {
    font-size: 1.3rem;
  }
  .blog-section .blog-card .blog-excerpt {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .blog-section {
    padding: 3.5rem 0;
  }
  .blog-section .blog-header {
    margin-bottom: 2.5rem;
  }
  .blog-section .blog-section-title {
    font-size: 2rem;
  }
  .blog-section .blog-section-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }
  .blog-section .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .blog-section .blog-card .blog-card-image {
    height: 220px;
  }
  .blog-section .blog-card .blog-card-content {
    padding: 1.25rem;
  }
  .blog-section .blog-card .blog-meta {
    font-size: 0.8125rem;
    margin-bottom: 0.875rem;
  }
  .blog-section .blog-card .blog-title {
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
  }
  .blog-section .blog-card .blog-excerpt {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  .blog-section .blog-card .blog-author-read-more .blog-author {
    font-size: 0.8125rem;
  }
  .blog-section .blog-card .blog-author-read-more .read-more-link {
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .blog-section {
    padding: 3rem 0;
  }
  .blog-section .blog-header {
    margin-bottom: 2rem;
  }
  .blog-section .blog-section-title {
    font-size: 1.75rem;
  }
  .blog-section .blog-section-subtitle {
    font-size: 0.9375rem;
  }
  .blog-section .blog-grid {
    gap: 1.5rem;
  }
  .blog-section .blog-card .blog-card-image {
    height: 200px;
  }
  .blog-section .blog-card .blog-card-content {
    padding: 1rem;
  }
  .blog-section .blog-card .blog-meta {
    font-size: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
  }
  .blog-section .blog-card .blog-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  .blog-section .blog-card .blog-excerpt {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  .blog-section .blog-card .blog-author-read-more {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
  .blog-section .blog-card .blog-author-read-more .blog-author {
    font-size: 0.75rem;
  }
  .blog-section .blog-card .blog-author-read-more .read-more-link {
    font-size: 0.8125rem;
  }
}
.map-section {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  clear: both;
  display: block;
  margin-top: 0;
}
.map-section .map-container {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 0;
  padding: 0;
  display: block;
}
.map-section .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .map-section .map-container {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .map-section .map-container {
    height: 300px;
  }
}
.clients-section {
  width: 100%;
  padding: 3rem 0;
  background-color: #fff;
  position: relative;
  z-index: 2;
  clear: both;
  margin: 0;
}
.clients-section .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.clients-section .clients-slider .client-logo {
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.clients-section .clients-slider .client-logo img {
  max-width: 100%;
  width: 360px;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  transition: all 0.3s ease;
}
.clients-section .clients-slider .client-logo:hover img {
  opacity: 0.8;
}
.clients-section .slick-track {
  display: flex;
  align-items: center;
}
.clients-section .slick-slide {
  height: auto;
}

@media (max-width: 1024px) {
  .clients-section .clients-slider .client-logo {
    padding: 1rem 1.5rem;
  }
  .clients-section .clients-slider .client-logo img {
    width: 300px;
    max-height: 180px;
  }
}
@media (max-width: 768px) {
  .clients-section {
    padding: 2rem 0;
  }
  .clients-section .clients-slider .client-logo {
    padding: 1rem;
  }
  .clients-section .clients-slider .client-logo img {
    width: 250px;
    max-height: 150px;
  }
}
@media (max-width: 480px) {
  .clients-section .clients-slider .client-logo {
    padding: 0.75rem;
  }
  .clients-section .clients-slider .client-logo img {
    width: 200px;
    max-height: 120px;
  }
}
.site-footer {
  width: 100%;
  background-color: #2563eb;
  position: relative;
  z-index: 3;
  margin-top: 0;
  clear: both;
}
.site-footer .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-footer .footer-main {
  padding: 4rem 0;
}
.site-footer .footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.site-footer .footer-column .footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}
.site-footer .footer-column .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-column .footer-links li {
  margin-bottom: 0.75rem;
}
.site-footer .footer-column .footer-links li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}
.site-footer .footer-column .footer-links li a:hover {
  color: #fff;
}
.site-footer .footer-about .footer-logo-section .footer-logo-icon {
  margin-bottom: 1.5rem;
}
.site-footer .footer-about .footer-logo-section .footer-logo-icon .footer-logo-img {
  max-height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}
.site-footer .footer-about .footer-logo-section .footer-logo-icon .logo-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #fff;
  color: #2563eb;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.2;
  padding: 0.5rem;
}
.site-footer .footer-about .footer-logo-section .footer-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem 0;
}
.site-footer .footer-about .footer-logo-section .footer-social-icons {
  display: flex;
  gap: 1rem;
}
.site-footer .footer-about .footer-logo-section .footer-social-icons .social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.site-footer .footer-about .footer-logo-section .footer-social-icons .social-icon:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.site-footer .footer-about .footer-logo-section .footer-social-icons .social-icon i {
  font-size: 1.125rem;
}
.site-footer .footer-contact .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-contact .footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.site-footer .footer-contact .footer-contact-list li i {
  color: #fff;
  font-size: 1.125rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.site-footer .footer-contact .footer-contact-list li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-contact .footer-contact-list li a:hover {
  color: #fff;
}
.site-footer .footer-contact .footer-contact-list li span {
  color: rgba(255, 255, 255, 0.9);
}
.site-footer .footer-bottom {
  background-color: #1e3a8a;
  padding: 1.5rem 0;
}
.site-footer .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.site-footer .footer-bottom-content .footer-copyright,
.site-footer .footer-bottom-content .footer-developer {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}
.site-footer .footer-bottom-content .footer-developer {
  text-align: right;
}

@media (max-width: 1200px) {
  .site-footer .footer-columns {
    gap: 2.5rem;
  }
}
@media (max-width: 1024px) {
  .site-footer .footer-main {
    padding: 3.5rem 0;
  }
  .site-footer .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
  .site-footer .footer-about {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-main {
    padding: 3rem 0;
  }
  .site-footer .footer-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .site-footer .footer-about {
    grid-column: span 1;
  }
  .site-footer .footer-column .footer-heading {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
  }
  .site-footer .footer-column .footer-links li {
    margin-bottom: 0.625rem;
  }
  .site-footer .footer-column .footer-links li a {
    font-size: 0.9rem;
  }
  .site-footer .footer-contact .footer-contact-list li {
    font-size: 0.9rem;
    margin-bottom: 0.875rem;
  }
  .site-footer .footer-bottom {
    padding: 1.25rem 0;
  }
  .site-footer .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .site-footer .footer-bottom-content .footer-copyright,
  .site-footer .footer-bottom-content .footer-developer {
    font-size: 0.8125rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .site-footer .footer-main {
    padding: 2.5rem 0;
  }
  .site-footer .footer-columns {
    gap: 2rem;
  }
  .site-footer .footer-column .footer-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .site-footer .footer-column .footer-links li a {
    font-size: 0.875rem;
  }
  .site-footer .footer-about .footer-logo-section .footer-logo-icon .logo-circle {
    width: 50px;
    height: 50px;
    font-size: 0.6875rem;
  }
  .site-footer .footer-about .footer-logo-section .footer-description {
    font-size: 0.875rem;
  }
  .site-footer .footer-about .footer-logo-section .footer-social-icons .social-icon {
    width: 36px;
    height: 36px;
  }
  .site-footer .footer-about .footer-logo-section .footer-social-icons .social-icon i {
    font-size: 1rem;
  }
  .site-footer .footer-contact .footer-contact-list li {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
  .site-footer .footer-contact .footer-contact-list li i {
    font-size: 1rem;
  }
  .site-footer .footer-bottom {
    padding: 1rem 0;
  }
  .site-footer .footer-bottom-content .footer-copyright,
  .site-footer .footer-bottom-content .footer-developer {
    font-size: 0.75rem;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float i {
  font-size: 1.75rem;
}
.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .whatsapp-float {
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
  }
  .whatsapp-float i {
    font-size: 1.625rem;
  }
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  .whatsapp-float i {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float i {
    font-size: 1.375rem;
  }
  .whatsapp-float:hover {
    transform: scale(1.05);
  }
}
.page-sobre {
  width: 100%;
  background-color: #fff;
}
.page-sobre .sobre-banner {
  position: relative;
  width: 100%;
  min-height: 300px;
  background-color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  margin-bottom: 70px;
}
.page-sobre .sobre-banner .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.page-sobre .sobre-banner .sobre-banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.page-sobre .sobre-quem-somos {
  width: 100%;
  padding: 0;
  background-color: #fff;
}
.page-sobre .sobre-quem-somos .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-sobre .sobre-quem-somos .sobre-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  margin-bottom: 45px;
  align-items: center;
}
.page-sobre .sobre-quem-somos .sobre-image {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
  background-image: url("../img/sobre-equipe.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.page-sobre .sobre-quem-somos .sobre-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  z-index: 1;
}
.page-sobre .sobre-quem-somos .image-overlay {
  color: #fff;
  z-index: 2;
}
.page-sobre .sobre-quem-somos .image-overlay .overlay-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.page-sobre .sobre-quem-somos .image-overlay .overlay-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #fff;
}
.page-sobre .sobre-quem-somos .sobre-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-sobre .sobre-quem-somos .sobre-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
.page-sobre .sobre-quem-somos .sobre-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-self: flex-start;
}
.page-sobre .sobre-quem-somos .sobre-button i {
  font-size: 0.875rem;
}
.page-sobre .sobre-quem-somos .sobre-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  color: #fff;
}
.page-sobre .sobre-content {
  width: 100%;
  /* padding: 5rem 0; */
}
.page-sobre .sobre-content .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-sobre .sobre-content .sobre-main-content {
  max-width: 900px;
  margin: 0 auto;
}
.page-sobre .sobre-content .sobre-main-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}
.page-sobre .sobre-content .sobre-main-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
.page-sobre .sobre-content .sobre-main-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.page-sobre .sobre-content .sobre-main-content ul, .page-sobre .sobre-content .sobre-main-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.page-sobre .sobre-content .sobre-main-content ul li, .page-sobre .sobre-content .sobre-main-content ol li {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 0.75rem;
}
.page-sobre .sobre-stats {
  width: 100%;
  padding: 0;
  background-color: #fff;
  margin-bottom: 70px;
}
.page-sobre .sobre-stats .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-sobre .sobre-stats .stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 3rem 0;
  align-items: center;
}
.page-sobre .sobre-stats .stat-item {
  text-align: left;
  padding: 0 2rem;
}
.page-sobre .sobre-stats .stat-item .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.page-sobre .sobre-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
}
.page-sobre .sobre-stats .stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, #2563eb 50%, transparent 100%);
  align-self: center;
}
.page-sobre .sobre-mvv {
  width: 100%;
  padding: 5rem 0;
}
.page-sobre .sobre-mvv .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-sobre .sobre-mvv .mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.page-sobre .sobre-mvv .mvv-item {
  text-align: center;
  padding: 2rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-sobre .sobre-mvv .mvv-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.page-sobre .sobre-mvv .mvv-item .mvv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
}
.page-sobre .sobre-mvv .mvv-item .mvv-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.page-sobre .sobre-mvv .mvv-item .mvv-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

@media (max-width: 1024px) {
  .page-sobre .sobre-banner {
    min-height: 250px;
    padding: 4rem 0;
  }
  .page-sobre .sobre-banner .sobre-banner-title {
    font-size: 2.5rem;
  }
  .page-sobre .sobre-quem-somos {
    padding: 3rem 0;
  }
  .page-sobre .sobre-quem-somos .sobre-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .page-sobre .sobre-quem-somos .sobre-image {
    height: 400px;
  }
  .page-sobre .sobre-stats {
    padding: 3rem 0;
  }
  .page-sobre .sobre-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .page-sobre .sobre-stats .stat-divider {
    display: none;
  }
  .page-sobre .sobre-stats .stat-item {
    padding: 0;
  }
  .page-sobre .sobre-mvv {
    padding: 3rem 0;
  }
  .page-sobre .sobre-mvv .mvv-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .page-sobre .sobre-banner {
    min-height: 200px;
    padding: 3rem 0;
  }
  .page-sobre .sobre-banner .sobre-banner-title {
    font-size: 2rem;
  }
  .page-sobre .sobre-quem-somos {
    padding: 3rem 0;
  }
  .page-sobre .sobre-quem-somos .sobre-hero {
    margin-bottom: 0;
  }
  .page-sobre .sobre-quem-somos .sobre-image {
    height: 350px;
  }
  .page-sobre .sobre-quem-somos .sobre-image .image-overlay .overlay-title {
    font-size: 1.5rem;
  }
  .page-sobre .sobre-quem-somos .sobre-description {
    font-size: 0.95rem;
  }
  .page-sobre .sobre-content {
    padding: 3rem 0;
  }
  .page-sobre .sobre-content .sobre-main-content p {
    font-size: 1rem;
  }
  .page-sobre .sobre-content .sobre-main-content h2 {
    font-size: 1.75rem;
  }
  .page-sobre .sobre-content .sobre-main-content h3 {
    font-size: 1.25rem;
  }
  .page-sobre .sobre-stats {
    padding: 3rem 0;
  }
  .page-sobre .sobre-stats .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }
  .page-sobre .sobre-stats .stat-item {
    text-align: center;
    padding: 0;
  }
  .page-sobre .sobre-stats .stat-item .stat-value {
    font-size: 1.75rem;
  }
  .page-sobre .sobre-stats .stat-divider {
    display: none;
  }
  .page-sobre .sobre-mvv {
    padding: 3rem 0;
  }
  .page-sobre .sobre-mvv .mvv-item {
    padding: 1.5rem;
  }
  .page-sobre .sobre-mvv .mvv-item .mvv-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .page-sobre .sobre-mvv .mvv-item .mvv-title {
    font-size: 1.25rem;
  }
  .page-sobre .sobre-mvv .mvv-item .mvv-description {
    font-size: 0.95rem;
  }
}
.page-solucoes {
  width: 100%;
  background-color: #f5f5f5;
}
.page-solucoes .solucoes-banner {
  position: relative;
  width: 100%;
  min-height: 300px;
  background-color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  margin-bottom: 70px;
}
.page-solucoes .solucoes-banner .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.page-solucoes .solucoes-banner .solucoes-banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.page-solucoes .solucoes-content {
  width: 100%;
  padding: 5rem 0;
}
.page-solucoes .solucoes-content .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-solucoes .solucoes-content .solucoes-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}
.page-solucoes .solucoes-content .solucoes-categories .category-filter {
  padding: 0.75rem 1.5rem;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: 25px;
  color: #6b7280;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-solucoes .solucoes-content .solucoes-categories .category-filter:hover {
  background-color: #f9fafb;
  border-color: #2563eb;
  color: #2563eb;
}
.page-solucoes .solucoes-content .solucoes-categories .category-filter.active {
  background-color: #dc2626;
  border-color: #dc2626;
  color: #fff;
}
.page-solucoes .solucoes-content .solucoes-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-solucoes .solucoes-content .solucao-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 1;
  text-decoration: none !important;
  color: inherit;
}
.page-solucoes .solucoes-content .solucao-card,
.page-solucoes .solucoes-content .solucao-card * {
  text-decoration: none !important;
}
.page-solucoes .solucoes-content .solucao-card.hidden {
  display: none;
}
.page-solucoes .solucoes-content .solucao-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  color: inherit;
}
.page-solucoes .solucoes-content .solucao-card:hover,
.page-solucoes .solucoes-content .solucao-card:hover * {
  text-decoration: none !important;
}
.page-solucoes .solucoes-content .solucao-card .solucao-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  background-color: #f3f4f6;
}
.page-solucoes .solucoes-content .solucao-card .solucao-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-solucoes .solucoes-content .solucao-card .solucao-image .solucao-icon-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
}
.page-solucoes .solucoes-content .solucao-card .solucao-image .solucao-icon-placeholder i {
  font-size: 4rem;
  color: #2563eb;
}
.page-solucoes .solucoes-content .solucao-card .solucao-content {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  justify-content: center;
}
.page-solucoes .solucoes-content .solucao-card .solucao-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-align: left;
}
.page-solucoes .solucoes-content .solucao-card .solucao-description {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}
.page-solucoes .solucoes-content .solucao-card .solucao-description u {
  text-decoration: none !important;
}
.page-solucoes .solucoes-content .solucao-card .solucao-description p {
  margin: 0 0 1rem 0;
}
.page-solucoes .solucoes-content .solucao-card .solucao-description p:last-child {
  margin-bottom: 0;
}
.page-solucoes .solucoes-content .no-solucoes {
  text-align: center;
  font-size: 1.125rem;
  color: #6b7280;
  padding: 3rem 0;
}

@media (max-width: 1024px) {
  .page-solucoes .solucoes-banner {
    min-height: 250px;
    padding: 4rem 0;
  }
  .page-solucoes .solucoes-banner .solucoes-banner-title {
    font-size: 2.5rem;
  }
  .page-solucoes .solucoes-content {
    padding: 3rem 0;
  }
  .page-solucoes .solucoes-content .solucoes-categories {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  .page-solucoes .solucoes-content .solucoes-categories .category-filter {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  .page-solucoes .solucoes-content .solucao-card {
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-image {
    min-height: 250px;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-image .solucao-icon-placeholder {
    min-height: 250px;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-image .solucao-icon-placeholder i {
    font-size: 3rem;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-content {
    padding: 1.5rem;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 768px) {
  .page-solucoes .solucoes-banner {
    min-height: 200px;
    padding: 3rem 0;
  }
  .page-solucoes .solucoes-banner .solucoes-banner-title {
    font-size: 2rem;
  }
  .page-solucoes .solucoes-content {
    padding: 3rem 0;
  }
  .page-solucoes .solucoes-content .solucoes-categories {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    gap: 0.75rem;
  }
  .page-solucoes .solucoes-content .solucoes-categories .category-filter {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  .page-solucoes .solucoes-content .solucao-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-image {
    min-height: 200px;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-image .solucao-icon-placeholder {
    min-height: 200px;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-image .solucao-icon-placeholder i {
    font-size: 2.5rem;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-description {
    font-size: 0.9375rem;
  }
}
@media (max-width: 480px) {
  .page-solucoes .solucoes-content .solucao-card {
    gap: 1rem;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-image {
    min-height: 180px;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-image .solucao-icon-placeholder {
    min-height: 180px;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-image .solucao-icon-placeholder i {
    font-size: 2rem;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-content {
    padding: 0 1rem 1rem 1rem;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-title {
    font-size: 1.125rem;
    margin-bottom: 0.875rem;
  }
  .page-solucoes .solucoes-content .solucao-card .solucao-description {
    font-size: 0.875rem;
  }
}
.single-solucao {
  width: 100%;
  background-color: #fff;
}
.single-solucao .single-solucao-banner {
  position: relative;
  width: 100%;
  min-height: 400px;
  margin-bottom: 4rem;
  overflow: hidden;
}
.single-solucao .single-solucao-banner.single-solucao-banner-no-image {
  min-height: auto;
  background-color: #1e3a8a;
  padding: 3rem 0 2rem;
  margin-bottom: 3rem;
}
.single-solucao .single-solucao-banner .single-solucao-banner-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}
.single-solucao .single-solucao-banner .single-solucao-banner-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  max-height: 520px;
}
.single-solucao .single-solucao-banner .single-solucao-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 2rem 0;
}
.single-solucao .single-solucao-banner .single-solucao-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #fff;
}
.single-solucao .single-solucao-banner .single-solucao-breadcrumb a {
  color: #fff;
  text-decoration: none !important;
  transition: opacity 0.3s ease;
}
.single-solucao .single-solucao-banner .single-solucao-breadcrumb a:hover {
  opacity: 0.8;
}
.single-solucao .single-solucao-banner .single-solucao-breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}
.single-solucao .single-solucao-content {
  width: 100%;
  padding: 0 0 5rem;
}
.single-solucao .single-solucao-content .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.single-solucao .single-solucao-content .single-solucao-header {
  margin-bottom: 2rem;
}
.single-solucao .single-solucao-content .single-solucao-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin: 0;
}
.single-solucao .single-solucao-content .single-solucao-entry-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #374151;
}
.single-solucao .single-solucao-content .single-solucao-entry-content u {
  text-decoration: none !important;
}
.single-solucao .single-solucao-content .single-solucao-entry-content p {
  margin-bottom: 1.25rem;
}
.single-solucao .single-solucao-content .single-solucao-entry-content p:last-child {
  margin-bottom: 0;
}
.single-solucao .single-solucao-content .single-solucao-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.single-solucao .single-solucao-content .single-solucao-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}
.single-solucao .single-solucao-content .single-solucao-back-link:hover {
  color: #1d4ed8;
}
.single-solucao .single-solucao-content .single-solucao-back-link i {
  font-size: 0.875rem;
}

.page-blog {
  width: 100%;
  background-color: #fff;
}
.page-blog .blog-page-banner {
  position: relative;
  width: 100%;
  min-height: 300px;
  background-color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  margin-bottom: 70px;
}
.page-blog .blog-page-banner .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.page-blog .blog-page-banner .blog-page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.page-blog .blog-page-content {
  width: 100%;
  padding: 5rem 0;
}
.page-blog .blog-page-content .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-blog .blog-page-content .blog-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: start;
}
.page-blog .blog-page-content .blog-page-main {
  min-width: 0;
}
.page-blog .blog-page-content .blog-page-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
.page-blog .blog-page-content .blog-page-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-blog .blog-page-content .blog-page-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.page-blog .blog-page-content .blog-page-card .blog-page-card-image {
  width: 100%;
  height: 100%;
  min-height: 250px;
  overflow: hidden;
}
.page-blog .blog-page-content .blog-page-card .blog-page-card-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.page-blog .blog-page-content .blog-page-card .blog-page-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.page-blog .blog-page-content .blog-page-card:hover .blog-page-card-image img {
  transform: scale(1.05);
}
.page-blog .blog-page-content .blog-page-card .blog-page-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-blog .blog-page-content .blog-page-card .blog-page-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.page-blog .blog-page-content .blog-page-card .blog-page-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-blog .blog-page-content .blog-page-card .blog-page-meta span i {
  color: #1e3a8a;
}
.page-blog .blog-page-content .blog-page-card .blog-page-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.page-blog .blog-page-content .blog-page-card .blog-page-title a {
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-blog .blog-page-content .blog-page-card .blog-page-title a:hover {
  color: #2563eb;
}
.page-blog .blog-page-content .blog-page-card .blog-page-excerpt {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.page-blog .blog-page-content .blog-page-card .blog-page-author-read-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.page-blog .blog-page-content .blog-page-card .blog-page-author-read-more .blog-page-author {
  font-size: 0.875rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-blog .blog-page-content .blog-page-card .blog-page-author-read-more .blog-page-author i {
  color: #1e3a8a;
}
.page-blog .blog-page-content .blog-page-card .blog-page-author-read-more .read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.page-blog .blog-page-content .blog-page-card .blog-page-author-read-more .read-more-link:hover {
  color: #4b5563;
  transform: translateX(3px);
}
.page-blog .blog-page-content .blog-page-pagination {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.page-blog .blog-page-content .blog-page-pagination .page-numbers {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.page-blog .blog-page-content .blog-page-pagination .page-numbers li {
  margin: 0;
}
.page-blog .blog-page-content .blog-page-pagination .page-numbers a,
.page-blog .blog-page-content .blog-page-pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}
.page-blog .blog-page-content .blog-page-pagination .page-numbers a {
  color: #6b7280;
  background-color: #f3f4f6;
}
.page-blog .blog-page-content .blog-page-pagination .page-numbers a:hover {
  color: #fff;
  background-color: #1e3a8a;
}
.page-blog .blog-page-content .blog-page-pagination .page-numbers .current {
  color: #fff;
  background-color: #1e3a8a;
}
.page-blog .blog-page-content .no-posts {
  text-align: center;
  font-size: 1.125rem;
  color: #6b7280;
  padding: 3rem 0;
}
.page-blog .blog-sidebar {
  position: sticky;
  top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-blog .blog-sidebar .sidebar-widget {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}
.page-blog .blog-sidebar .sidebar-widget .sidebar-widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.page-blog .blog-sidebar .sidebar-widget .sidebar-widget-title i {
  color: #2563eb;
}
.page-blog .blog-sidebar .sidebar-categories .sidebar-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-blog .blog-sidebar .sidebar-categories .sidebar-categories-list li {
  margin-bottom: 0.75rem;
}
.page-blog .blog-sidebar .sidebar-categories .sidebar-categories-list li:last-child {
  margin-bottom: 0;
}
.page-blog .blog-sidebar .sidebar-categories .sidebar-categories-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4b5563;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  font-size: 0.9375rem;
}
.page-blog .blog-sidebar .sidebar-categories .sidebar-categories-list li a:hover {
  color: #1e3a8a;
}
.page-blog .blog-sidebar .sidebar-categories .sidebar-categories-list li a .category-count {
  color: #9ca3af;
  font-size: 0.875rem;
}
.page-blog .blog-sidebar .sidebar-recent-posts .sidebar-recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-blog .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.page-blog .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.page-blog .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}
.page-blog .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-blog .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-content {
  flex: 1;
  min-width: 0;
}
.page-blog .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-content .recent-post-title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.page-blog .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-content .recent-post-title a {
  color: #374151;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-blog .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-content .recent-post-title a:hover {
  color: #1e3a8a;
}
.page-blog .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-content .recent-post-date {
  font-size: 0.8125rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.page-blog .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-content .recent-post-date i {
  color: #1e3a8a;
}
.page-blog .blog-sidebar .sidebar-tags .sidebar-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.page-blog .blog-sidebar .sidebar-tags .sidebar-tags-list .tag-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f3f4f6;
  color: #4b5563;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.page-blog .blog-sidebar .sidebar-tags .sidebar-tags-list .tag-link:hover {
  background-color: #1e3a8a;
  color: #fff;
}

@media (max-width: 1024px) {
  .page-blog .blog-page-banner {
    min-height: 250px;
    padding: 4rem 0;
  }
  .page-blog .blog-page-banner .blog-page-title {
    font-size: 2.5rem;
  }
  .page-blog .blog-page-content {
    padding: 3rem 0;
  }
  .page-blog .blog-page-content .blog-page-wrapper {
    grid-template-columns: 1fr;
  }
  .page-blog .blog-page-content .blog-sidebar {
    position: static;
  }
  .page-blog .blog-page-content .blog-page-grid {
    gap: 1.5rem;
  }
  .page-blog .blog-page-content .blog-page-card {
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
  }
  .page-blog .blog-page-content .blog-page-card .blog-page-card-image {
    min-height: 200px;
  }
  .page-blog .blog-page-content .blog-page-card .blog-page-card-content {
    padding: 1.5rem;
  }
  .page-blog .blog-page-content .blog-page-card .blog-page-title {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .page-blog .blog-page-banner {
    min-height: 200px;
    padding: 3rem 0;
    margin-bottom: 50px;
  }
  .page-blog .blog-page-banner .blog-page-title {
    font-size: 2rem;
  }
  .page-blog .blog-page-content {
    padding: 3rem 0;
  }
  .page-blog .blog-page-content .blog-page-wrapper {
    grid-template-columns: 1fr;
  }
  .page-blog .blog-page-content .blog-sidebar {
    position: static;
  }
  .page-blog .blog-page-content .blog-page-grid {
    gap: 2rem;
  }
  .page-blog .blog-page-content .blog-page-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .page-blog .blog-page-content .blog-page-card .blog-page-card-image {
    min-height: 250px;
    height: 250px;
  }
  .page-blog .blog-page-content .blog-page-card .blog-page-card-content {
    padding: 1.25rem;
  }
  .page-blog .blog-page-content .blog-page-card .blog-page-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .page-blog .blog-page-content .blog-page-card .blog-page-title {
    font-size: 1.4rem;
  }
  .page-blog .blog-page-content .blog-page-card .blog-page-excerpt {
    font-size: 0.9rem;
  }
  .page-blog .blog-page-content .blog-page-card .blog-page-author-read-more {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
.single-post {
  width: 100%;
  background-color: #fff;
}
.single-post .single-post-banner {
  position: relative;
  width: 100%;
  min-height: 400px;
  margin-bottom: 4rem;
  overflow: hidden;
}
.single-post .single-post-banner.single-post-banner-no-image {
  min-height: auto;
  background-color: #1e3a8a;
  padding: 3rem 0 2rem;
  margin-bottom: 3rem;
}
.single-post .single-post-banner .single-post-banner-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}
.single-post .single-post-banner .single-post-banner-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  max-height: 520px;
}
.single-post .single-post-banner .single-post-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 2rem 0;
}
.single-post .single-post-banner .single-post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #fff;
}
.single-post .single-post-banner .single-post-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.single-post .single-post-banner .single-post-breadcrumb a:hover {
  opacity: 0.8;
}
.single-post .single-post-banner .single-post-breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}
.single-post .single-post-content {
  width: 100%;
  padding: 0 0 5rem;
}
.single-post .single-post-content .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.single-post .single-post-content .single-post-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: start;
}
.single-post .single-post-content .single-post-main {
  min-width: 0;
}
.single-post .single-post-content .single-post-header {
  margin-bottom: 3rem;
}
.single-post .single-post-content .single-post-header .single-post-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.single-post .single-post-content .single-post-header .single-post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e5e7eb;
}
.single-post .single-post-content .single-post-header .single-post-meta .single-post-meta-left {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.single-post .single-post-content .single-post-header .single-post-meta .single-post-date,
.single-post .single-post-content .single-post-header .single-post-meta .single-post-author,
.single-post .single-post-content .single-post-header .single-post-meta .single-post-read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #6b7280;
}
.single-post .single-post-content .single-post-header .single-post-meta .single-post-date i,
.single-post .single-post-content .single-post-header .single-post-meta .single-post-author i,
.single-post .single-post-content .single-post-header .single-post-meta .single-post-read-time i {
  color: #1e3a8a;
}
.single-post .single-post-content .single-post-header .single-post-meta .single-post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.single-post .single-post-content .single-post-header .single-post-meta .single-post-categories .single-post-category {
  display: inline-block;
  padding: 0.375rem 1rem;
  background-color: #1e3a8a;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.single-post .single-post-content .single-post-header .single-post-meta .single-post-categories .single-post-category:hover {
  background-color: #2563eb;
}
.single-post .single-post-content .single-post-entry-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 3rem;
}
.single-post .single-post-content .single-post-entry-content p {
  margin-bottom: 1.5rem;
}
.single-post .single-post-content .single-post-entry-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 2.5rem 0 1.5rem;
  line-height: 1.3;
}
.single-post .single-post-content .single-post-entry-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 2rem 0 1rem;
  line-height: 1.3;
}
.single-post .single-post-content .single-post-entry-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin: 1.5rem 0 1rem;
}
.single-post .single-post-content .single-post-entry-content ul,
.single-post .single-post-content .single-post-entry-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.single-post .single-post-content .single-post-entry-content ul li,
.single-post .single-post-content .single-post-entry-content ol li {
  margin-bottom: 0.75rem;
}
.single-post .single-post-content .single-post-entry-content blockquote {
  border-left: 4px solid #1e3a8a;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #6b7280;
}
.single-post .single-post-content .single-post-entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}
.single-post .single-post-content .single-post-entry-content a {
  color: #1e3a8a;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.single-post .single-post-content .single-post-entry-content a:hover {
  color: #2563eb;
}
.single-post .single-post-content .single-post-entry-content .page-links {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  font-weight: 600;
  color: #6b7280;
}
.single-post .single-post-content .single-post-tags {
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
}
.single-post .single-post-content .single-post-tags .single-post-tags-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.single-post .single-post-content .single-post-tags .single-post-tags-title i {
  color: #1e3a8a;
}
.single-post .single-post-content .single-post-tags .single-post-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.single-post .single-post-content .single-post-tags .single-post-tags-list .single-post-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f3f4f6;
  color: #4b5563;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.single-post .single-post-content .single-post-tags .single-post-tags-list .single-post-tag:hover {
  background-color: #1e3a8a;
  color: #fff;
}
.single-post .single-post-content .single-post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
}
.single-post .single-post-content .single-post-navigation .single-post-nav-prev .single-post-nav-link,
.single-post .single-post-content .single-post-navigation .single-post-nav-next .single-post-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f9fafb;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.single-post .single-post-content .single-post-navigation .single-post-nav-prev .single-post-nav-link:hover,
.single-post .single-post-content .single-post-navigation .single-post-nav-next .single-post-nav-link:hover {
  background-color: #f3f4f6;
  transform: translateX(-3px);
}
.single-post .single-post-content .single-post-navigation .single-post-nav-prev .single-post-nav-link i,
.single-post .single-post-content .single-post-navigation .single-post-nav-next .single-post-nav-link i {
  font-size: 1.25rem;
  color: #1e3a8a;
  flex-shrink: 0;
}
.single-post .single-post-content .single-post-navigation .single-post-nav-prev .single-post-nav-link .single-post-nav-content,
.single-post .single-post-content .single-post-navigation .single-post-nav-next .single-post-nav-link .single-post-nav-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.single-post .single-post-content .single-post-navigation .single-post-nav-prev .single-post-nav-link .single-post-nav-content .single-post-nav-label,
.single-post .single-post-content .single-post-navigation .single-post-nav-next .single-post-nav-link .single-post-nav-content .single-post-nav-label {
  font-size: 0.875rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.single-post .single-post-content .single-post-navigation .single-post-nav-prev .single-post-nav-link .single-post-nav-content .single-post-nav-title,
.single-post .single-post-content .single-post-navigation .single-post-nav-next .single-post-nav-link .single-post-nav-content .single-post-nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1e3a8a;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.single-post .single-post-content .single-post-navigation .single-post-nav-next .single-post-nav-link {
  flex-direction: row-reverse;
}
.single-post .single-post-content .single-post-navigation .single-post-nav-next .single-post-nav-link:hover {
  transform: translateX(3px);
}
.single-post .single-post-content .single-post-related {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e5e7eb;
}
.single-post .single-post-content .single-post-related .single-post-related-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.single-post .single-post-content .single-post-related .single-post-related-title i {
  color: #2563eb;
}
.single-post .single-post-content .single-post-related .single-post-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.single-post .single-post-content .single-post-related .single-post-related-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.single-post .single-post-content .single-post-related .single-post-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.single-post .single-post-content .single-post-related .single-post-related-card .single-post-related-image {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.single-post .single-post-content .single-post-related .single-post-related-card .single-post-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.single-post .single-post-content .single-post-related .single-post-related-card:hover .single-post-related-image img {
  transform: scale(1.05);
}
.single-post .single-post-content .single-post-related .single-post-related-card .single-post-related-content {
  padding: 1.5rem;
}
.single-post .single-post-content .single-post-related .single-post-related-card .single-post-related-content .single-post-related-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
.single-post .single-post-content .single-post-related .single-post-related-card .single-post-related-content .single-post-related-date i {
  color: #1e3a8a;
}
.single-post .single-post-content .single-post-related .single-post-related-card .single-post-related-content .single-post-related-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
.single-post .single-post-content .single-post-related .single-post-related-card .single-post-related-content .single-post-related-card-title a {
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.single-post .single-post-content .single-post-related .single-post-related-card .single-post-related-content .single-post-related-card-title a:hover {
  color: #2563eb;
}
.single-post .blog-sidebar {
  position: sticky;
  top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.single-post .blog-sidebar .sidebar-widget {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}
.single-post .blog-sidebar .sidebar-widget .sidebar-widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.single-post .blog-sidebar .sidebar-widget .sidebar-widget-title i {
  color: #2563eb;
}
.single-post .blog-sidebar .sidebar-categories .sidebar-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-post .blog-sidebar .sidebar-categories .sidebar-categories-list li {
  margin-bottom: 0.75rem;
}
.single-post .blog-sidebar .sidebar-categories .sidebar-categories-list li:last-child {
  margin-bottom: 0;
}
.single-post .blog-sidebar .sidebar-categories .sidebar-categories-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4b5563;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  font-size: 0.9375rem;
}
.single-post .blog-sidebar .sidebar-categories .sidebar-categories-list li a:hover {
  color: #1e3a8a;
}
.single-post .blog-sidebar .sidebar-categories .sidebar-categories-list li a .category-count {
  color: #9ca3af;
  font-size: 0.875rem;
}
.single-post .blog-sidebar .sidebar-recent-posts .sidebar-recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-post .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.single-post .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.single-post .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}
.single-post .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-content {
  flex: 1;
  min-width: 0;
}
.single-post .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-content .recent-post-title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.single-post .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-content .recent-post-title a {
  color: #374151;
  text-decoration: none;
  transition: color 0.3s ease;
}
.single-post .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-content .recent-post-title a:hover {
  color: #1e3a8a;
}
.single-post .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-content .recent-post-date {
  font-size: 0.8125rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.single-post .blog-sidebar .sidebar-recent-posts .sidebar-recent-list .recent-post-item .recent-post-content .recent-post-date i {
  color: #1e3a8a;
}
.single-post .blog-sidebar .sidebar-tags .sidebar-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.single-post .blog-sidebar .sidebar-tags .sidebar-tags-list .tag-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f3f4f6;
  color: #4b5563;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.single-post .blog-sidebar .sidebar-tags .sidebar-tags-list .tag-link:hover {
  background-color: #1e3a8a;
  color: #fff;
}

@media (max-width: 1024px) {
  .single-post .single-post-content .single-post-wrapper {
    grid-template-columns: 1fr;
  }
  .single-post .single-post-content .single-post-header .single-post-title {
    font-size: 2rem;
  }
  .single-post .single-post-content .single-post-related .single-post-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .single-post .blog-sidebar {
    position: static;
  }
}
@media (max-width: 768px) {
  .single-post .single-post-banner {
    min-height: 300px;
    margin-bottom: 2rem;
  }
  .single-post .single-post-banner.single-post-banner-no-image {
    padding: 2rem 0 1.5rem;
  }
  .single-post .single-post-banner .single-post-banner-image {
    min-height: 300px;
  }
  .single-post .single-post-banner .single-post-breadcrumb {
    font-size: 0.875rem;
  }
  .single-post .single-post-content {
    padding: 0 0 3rem;
  }
  .single-post .single-post-content .single-post-header {
    margin-bottom: 2rem;
  }
  .single-post .single-post-content .single-post-header .single-post-title {
    font-size: 1.75rem;
  }
  .single-post .single-post-content .single-post-header .single-post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .single-post .single-post-content .single-post-header .single-post-meta .single-post-meta-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .single-post .single-post-content .single-post-entry-content {
    font-size: 1rem;
  }
  .single-post .single-post-content .single-post-entry-content h2 {
    font-size: 1.75rem;
  }
  .single-post .single-post-content .single-post-entry-content h3 {
    font-size: 1.375rem;
  }
  .single-post .single-post-content .single-post-navigation {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .single-post .single-post-content .single-post-navigation .single-post-nav-prev .single-post-nav-link,
  .single-post .single-post-content .single-post-navigation .single-post-nav-next .single-post-nav-link {
    padding: 1.25rem;
  }
  .single-post .single-post-content .single-post-navigation .single-post-nav-prev .single-post-nav-link .single-post-nav-content .single-post-nav-title,
  .single-post .single-post-content .single-post-navigation .single-post-nav-next .single-post-nav-link .single-post-nav-content .single-post-nav-title {
    font-size: 0.9375rem;
  }
  .single-post .single-post-content .single-post-related {
    margin-top: 3rem;
    padding-top: 2rem;
  }
  .single-post .single-post-content .single-post-related .single-post-related-title {
    font-size: 1.5rem;
  }
  .single-post .single-post-content .single-post-related .single-post-related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .single-post .blog-sidebar {
    position: static;
  }
}
.page-contato {
  width: 100%;
  background-color: #fff;
}
.page-contato .contato-banner {
  position: relative;
  width: 100%;
  min-height: 300px;
  background-color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  margin-bottom: 70px;
}
.page-contato .contato-banner .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.page-contato .contato-banner .contato-banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.page-contato .contato-content {
  width: 100%;
  padding: 5rem 0;
}
.page-contato .contato-content .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-contato .contato-content .contato-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: start;
}
.page-contato .contato-content .contato-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-contato .contato-content .contato-info .info-section {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.page-contato .contato-content .contato-info .info-section .info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-contato .contato-content .contato-info .info-section .info-icon i {
  font-size: 1.5rem;
  color: #fff;
}
.page-contato .contato-content .contato-info .info-section .info-content {
  flex: 1;
}
.page-contato .contato-content .contato-info .info-section .info-content .info-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}
.page-contato .contato-content .contato-info .info-section .info-content .info-text {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}
.page-contato .contato-content .contato-info .info-section .info-content .info-text a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-contato .contato-content .contato-info .info-section .info-content .info-text a:hover {
  color: #1e3a8a;
  text-decoration: underline;
}
.page-contato .contato-content .contato-form-wrapper {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 3rem;
}
.page-contato .contato-content .contato-form-wrapper .form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}
.page-contato .contato-content .contato-form-wrapper .form-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-group {
  margin-bottom: 1.5rem;
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-group .form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-group .form-input,
.page-contato .contato-content .contato-form-wrapper .contato-form .form-group .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  color: #374151;
  transition: all 0.3s ease;
  font-family: inherit;
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-group .form-input:focus,
.page-contato .contato-content .contato-form-wrapper .contato-form .form-group .form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-group .form-input::placeholder,
.page-contato .contato-content .contato-form-wrapper .contato-form .form-group .form-textarea::placeholder {
  color: #9ca3af;
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-group .form-textarea {
  resize: vertical;
  min-height: 120px;
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-group select.form-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  appearance: none;
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #4b5563;
  cursor: pointer;
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-checkbox .checkbox-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #2563eb;
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-submit {
  margin-top: 2rem;
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-submit .btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-submit .btn-submit i {
  font-size: 1rem;
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-submit .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-submit .btn-submit:active {
  transform: translateY(0);
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  display: none;
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-message.success {
  display: block;
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.page-contato .contato-content .contato-form-wrapper .contato-form .form-message.error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

@media (max-width: 1024px) {
  .page-contato .contato-banner {
    min-height: 250px;
    padding: 4rem 0;
  }
  .page-contato .contato-banner .contato-banner-title {
    font-size: 2.5rem;
  }
  .page-contato .contato-content {
    padding: 3rem 0;
  }
  .page-contato .contato-content .contato-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .page-contato .contato-content .contato-form-wrapper {
    padding: 2rem;
  }
  .page-contato .contato-content .contato-form-wrapper .form-title {
    font-size: 1.75rem;
  }
  .page-contato .contato-content .contato-form-wrapper .contato-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .page-contato .contato-banner {
    min-height: 200px;
    padding: 3rem 0;
    margin-bottom: 50px;
  }
  .page-contato .contato-banner .contato-banner-title {
    font-size: 2rem;
  }
  .page-contato .contato-content {
    padding: 3rem 0;
  }
  .page-contato .contato-content .contato-wrapper {
    gap: 2rem;
  }
  .page-contato .contato-content .contato-info {
    gap: 1.5rem;
  }
  .page-contato .contato-content .contato-info .info-section {
    gap: 1rem;
  }
  .page-contato .contato-content .contato-info .info-section .info-icon {
    width: 45px;
    height: 45px;
  }
  .page-contato .contato-content .contato-info .info-section .info-icon i {
    font-size: 1.25rem;
  }
  .page-contato .contato-content .contato-info .info-section .info-content .info-title {
    font-size: 1rem;
  }
  .page-contato .contato-content .contato-info .info-section .info-content .info-text {
    font-size: 0.9375rem;
  }
  .page-contato .contato-content .contato-form-wrapper {
    padding: 1.5rem;
  }
  .page-contato .contato-content .contato-form-wrapper .form-title {
    font-size: 1.5rem;
  }
  .page-contato .contato-content .contato-form-wrapper .form-subtitle {
    font-size: 0.9375rem;
  }
  .page-contato .contato-content .contato-form-wrapper .contato-form .form-group {
    margin-bottom: 1.25rem;
  }
  .page-contato .contato-content .contato-form-wrapper .contato-form .form-group .form-label {
    font-size: 0.875rem;
  }
  .page-contato .contato-content .contato-form-wrapper .contato-form .form-group .form-input,
  .page-contato .contato-content .contato-form-wrapper .contato-form .form-group .form-textarea {
    padding: 0.75rem;
    font-size: 0.9375rem;
  }
  .page-contato .contato-content .contato-form-wrapper .contato-form .form-submit .btn-submit {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
.faq-section {
  width: 100%;
  padding: 4rem 0;
  background-color: #f5f5f5;
}
.faq-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq-section .faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-section .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}
.faq-section .faq-subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.faq-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.faq-section .faq-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.faq-section .faq-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.faq-section .faq-item.active .faq-question .faq-toggle-icon {
  transform: rotate(45deg);
}
.faq-section .faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 1.5rem 2rem;
  opacity: 1;
}
.faq-section .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background-color: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}
.faq-section .faq-question:hover {
  background-color: #f9f9f9;
}
.faq-section .faq-question:focus {
  outline: 2px solid #2563eb;
  outline-offset: -2px;
}
.faq-section .faq-question-text {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  flex: 1;
  padding-right: 1rem;
}
.faq-section .faq-toggle-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2563eb;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.3s ease, background-color 0.3s ease;
  flex-shrink: 0;
}
.faq-section .faq-toggle-icon i {
  font-size: 14px;
}
.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  opacity: 0;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  background-color: #fff;
}
.faq-section .faq-answer-content {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
}
.faq-section .faq-answer-content p {
  margin: 0 0 1rem 0;
}
.faq-section .faq-answer-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0;
  }
  .faq-section .faq-header {
    margin-bottom: 2.5rem;
  }
  .faq-section .faq-title {
    font-size: 2rem;
  }
  .faq-section .faq-subtitle {
    font-size: 0.95rem;
  }
  .faq-section .faq-list {
    gap: 0.75rem;
  }
  .faq-section .faq-item.active .faq-answer {
    padding: 1.25rem 1.5rem;
  }
  .faq-section .faq-question {
    padding: 1.25rem 1.5rem;
  }
  .faq-section .faq-question-text {
    font-size: 0.95rem;
    padding-right: 0.75rem;
  }
  .faq-section .faq-toggle-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }
  .faq-section .faq-toggle-icon i {
    font-size: 12px;
  }
  .faq-section .faq-answer {
    padding: 0 1.5rem;
  }
  .faq-section .faq-answer-content {
    font-size: 0.9rem;
    padding-bottom: 1.25rem;
  }
}
@media (max-width: 480px) {
  .faq-section {
    padding: 2.5rem 0;
  }
  .faq-section .faq-header {
    margin-bottom: 2rem;
  }
  .faq-section .faq-title {
    font-size: 1.75rem;
  }
  .faq-section .faq-subtitle {
    font-size: 0.9rem;
  }
  .faq-section .faq-item.active .faq-answer {
    padding: 1rem 1.25rem;
  }
  .faq-section .faq-question {
    padding: 1rem 1.25rem;
  }
  .faq-section .faq-question-text {
    font-size: 0.9rem;
    padding-right: 0.5rem;
  }
  .faq-section .faq-toggle-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }
  .faq-section .faq-toggle-icon i {
    font-size: 11px;
  }
  .faq-section .faq-answer {
    padding: 0 1.25rem;
  }
  .faq-section .faq-answer-content {
    font-size: 0.875rem;
    padding-bottom: 1rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  body {
    overflow-x: hidden;
    position: relative;
  }
}
html {
  scroll-behavior: smooth;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*# sourceMappingURL=style.css.map */
