@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #101f0c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #00387a; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --bottom-color: #00387a; /* côr de preenchimento nova do botão do player de vídeo */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #00387a; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #00387a; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}
/* -- cor da fonte --*/
a {
  color: var(--default-color);
  text-decoration: none;
  transition: 0.3s;
}
/* -- cor da fonte  link--*/
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 0%);
  text-decoration: none;
}

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

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

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

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

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

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--bottom-color);/* côr depois do mouse*/
  transform: scale(20);
}

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

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

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

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.header .logo h1 span {
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 15px;
    /*-- altura da caixa + distâcia da borda-- */
    margin-left: 2px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown {
    /* Altura; Espaçamento entre os itens do menu*/
  }

  .navmenu .dropdown:last-child {
    padding-right: 10px;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.1s;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    /*-- altura da caixa + distâcia da borda-- */
    margin: 0;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -96%;
    /*-- aqui tambem --*/
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 98%;
    /*-- Aqui quando - negativo vai pra esqueta, quando + vai para direita-- */
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

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

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

.footer .social-links {
  margin-top: 20px;
}

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

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

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

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

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  --background-color: none;
}

.call-to-action .container {
  padding-top: 80px;
  padding-bottom: 80px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  clip-path: inset(0 round 15px);
}

.call-to-action .container img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 15px;
  overflow: hidden;
}

.call-to-action .container:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

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

.call-to-action p {
  color: var(--default-color);
  margin-bottom: 20px;
}

.call-to-action .pulsating-play-btn {
  display: inline-block;
}

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

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

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

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

/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
.slider {

  overflow: visible;
  margin-bottom: 200px;

  .section-title{
    text-align: left;
    h2 { 
      color: color-mix(in srgb, var(--contrast-color), transparent 50%);
      text-transform: uppercase;
      font-size: 20px;
    }
    p {
      color: var(--contrast-color);
    }
  }
  .services-carousel-wrap {
    position: relative;
    margin-bottom: -200px;
  }
  .pulsating-play-btn {
     position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    display: inline-block;
  
  }
   
  .swiper-wrapper {
    height: auto;
  }
  
  .service-item {
    position: relative;
    overflow: hidden;
    &:before {
      content: "";
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      position: absolute;
      opacity: 0;
      visibility: hidden;
      z-index: 1;
      transition: .3s all ease;
	  
    }
    img {
      transition: .5s all ease;
      transform: scale(1.0);
    }
    .service-item-contents {
      z-index: 9;
      position: absolute;
      bottom: 20px;
      left: 20px;
      right: 20px;
      transition: .3s all ease;
      transform: translateY(100%);
      text-align: right; /* alinhamento do texto do link */
      opacity: 0;
      visibility: hidden;
      .service-item-category {
        color: var(--accent-color);
        text-transform: none;
        font-size: 30px;
        text-shadow: 1px 1px #ffffff;/* tamanho da fonte e sombra */
		
      }
      .service-item-title {
        color: var(--contrast-color);
        margin-bottom: 0;
		text-align: right;/* alinhamento do texto do link */
		
		text-shadow: 1px 2px #00387a;/* tamanho da fonte e sombra */
      }
	  
    }
    &:hover {
      &:before {
        opacity: 1;
        visibility: visible;
      }
      .service-item-contents {
        transform: translateY(0%);
        opacity: 1;
        visibility: visible;
		text-align: right; /* alinhamento do texto do link */
      }
      img {
        transform: scale(1.2);

      }
    }
  
  }
  .navigation-prev,
  .navigation-next {
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    border-radius: 2px;   
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    width: 46px;
    height: 46px;
    background: var(--contrast-color);
    background-color: none;
    border: none;
    transition: 0.3s all ease;
    
    i {
      font-size: 2rem;
    }
    &:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
    }
  }
  .navigation-prev {
    left: 10px;
  }
  .navigation-next {
    right: 10px;
  }
  .swiper {
    padding-bottom: 50px;
  }
  .swiper-pagination {
    bottom: 0px;
    .swiper-pagination-bullet {
      border-radius: 0;
      width: 20px;
      height: 4px;
      background-color: color-mix(in srgb, var(--default-color) , transparent 50%)!important;
      opacity: 1;
    }
    .swiper-pagination-bullet-active {
      background-color: var(--accent-color)!important;
    }
  }
}
/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts .post-entry {
  margin-bottom: 30px;
}

.blog-posts .post-entry img {
  margin-bottom: 30px;
}

.blog-posts .post-entry h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 0.5;
}

.blog-posts .post-entry h2 a {
  color: var(--heading-color);
}

.blog-posts .post-entry h2 a:hover {
  text-decoration: underline;
}

.blog-posts .post-entry a:hover {
  text-decoration: underline;
  
}


.blog-posts .post-entry.lg h2 {
  font-size: 30px;
  line-height: 1;
}

.blog-posts .post-meta {
  font-size: 11px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.blog-posts .custom-border {
  border-color: color-mix(in srgb, var(--default-color), transparent 90%) !important;
}

@media (max-width: 768px) {
  .blog-posts .custom-border {
    border: none !important;
  }
}

.blog-posts .author .photo {
  margin-right: 10px;
}

.blog-posts .author .photo img {
  width: 40px;
  border-radius: 50%;
  margin-bottom: 0;
}

.blog-posts .author .name h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: var(--default-font);
}

.blog-posts .trending {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-posts .trending>h3 {
  color: var(--default-color);
  padding: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-posts .trending .trending-post {
  padding: 0;
  margin: 0;
}

.blog-posts .trending .trending-post li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
}

.blog-posts .trending .trending-post li a {
  display: block;
  padding: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.blog-posts .trending .trending-post li a .number {
  position: absolute;
  z-index: 1;
  font-size: 5rem;
  left: -10px;
  top: -20px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.blog-posts .trending .trending-post li a h3 {
  font-size: 18px;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-posts .trending .trending-post li a .author {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 500;
}

.blog-posts .trending .trending-post li a:hover h3 {
  color: var(--default-color);
  text-decoration: underline;
}

.blog-posts .trending .trending-post li:last-child a {
  border-bottom: none;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 10px 10px;/* altura da caixa */
  transition: all ease-in-out 0.4s;
  height: 100%;
}
 @media (max-width: 576px) {
  .services-2 .service-item {
  
  padding: 2px 2px;/* altura da caixa e margem interna */
  
}
    }
.services-2 .service-item .icon {
  margin-bottom: 10px;
}

.services-2 .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.services-2 .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services-2 .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.services-2 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-2 .service-item:hover {
  transform: translateY(-10px);
}

.services-2 .service-item:hover h4 a {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 20px 0 0 0;

  .container {
    position: relative;
    z-index: 3;
  }

  h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    .accent {
      color: var(--accent-color);
    }
  }

  p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 400;
    margin-bottom: 30px;
  }

  .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 36px;
    border-radius: 50px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    &:hover {
      background: color-mix(in srgb, var(--accent-color), transparent 15%);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }
  }

  .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    font-weight: 600;

    i {
      color: var(--accent-color);
      font-size: 32px;
      transition: 0.3s;
      line-height: 0;
      margin-right: 8px;
    }

    &:hover {
      color: var(--accent-color);
      i {
        color: color-mix(in srgb, var(--accent-color), transparent 15%);
      }
    }
  }


  @media (max-width: 640px) {
    h2 {
      font-size: 36px;
    }

    .btn-get-started, .btn-watch-video {
      font-size: 14px;
    }
  }

  .icon-boxes {
    padding-bottom: 30px;
    z-index: 4;
  }

  .icon-box {
    background: var(--surface-color);
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    height: 100%;
    width: 100%;
    text-align: center;

    .title {
      font-weight: 700;
      margin-bottom: 15px;
      font-size: 24px;
      a {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        transition: 0.3s;
      }
    }

    .icon {
      margin-bottom: 20px;
      padding-top: 10px;
      display: inline-block;
      transition: all 0.3s ease-in-out;
      font-size: 48px;
      line-height: 1;
      color: var(--accent-color);
    }

    &:hover {
      background-color: var(--accent-color);
      .title a, .icon  {
        color: var(--contrast-color);
      }
    }

  }

}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

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

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Blog Pagination 2 Section
--------------------------------------------------------------*/
.blog-pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination-2 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination-2 li a.active,
.blog-pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination-2 li a.active a,
.blog-pagination-2 li a:hover a {
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .details h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.events .details .social {
  margin-bottom: 15px;
}

.events .details .social a {
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.events .details .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.events .details .social a i {
  font-size: 16px;
  line-height: 0;
}

.events .details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  
  
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features h3 {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.features .icon-box {
  margin-top: 50px;
}

.features .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 32px;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 0;
}

.features .icon-box:hover i {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.features .icon-box .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.features .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .icon-box .title a:hover {
  color: var(--accent-color);
}

.features .icon-box .description {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.features .video-box {
  min-height: 400px;
}

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

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

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination 3 Section
--------------------------------------------------------------*/
.blog-pagination-3 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination-3 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination-3 li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination-3 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination-3 li a.active,
.blog-pagination-3 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination-3 li a.active a,
.blog-pagination-3 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details 2 Section
--------------------------------------------------------------*/
.blog-details-2 {
  padding-bottom: 30px;
}

.blog-details-2 .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}
/* imagem do blog centralizada -30px 30px 20px 30px*/
.blog-details-2 .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details-2 .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details-2 .content {
  margin-top: 20px;
}

.blog-details-2 .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details-2 .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details-2 .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details-2 .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details-2 .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-2 .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details-2 .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details-2 .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details-2 .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details-2 .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details-2 .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details-2 .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details-2 .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details-2 .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details-2 .meta-bottom .cats li {
  display: inline-block;
}

.blog-details-2 .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details-2 .meta-bottom .tags li {
  display: inline-block;
}

.blog-details-2 .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details-2 .meta-bottom .share {
  font-size: 16px;
}

.blog-details-2 .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Events 2 Section
--------------------------------------------------------------*/
.events-2 .details h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.events-2 .details .social {
  margin-bottom: 15px;
}

.events-2 .details .social a {
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.events-2 .details .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.events-2 .details .social a i {
  font-size: 16px;
  line-height: 0;
}

.events-2 .details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Events 3 Section
--------------------------------------------------------------*/
.events-3 .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events-3 .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events-3 .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events-3 .card-body {
  z-index: 10;
  background: var(--background-color);
  border-top: 4px solid var(--background-color);
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events-3 .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events-3 .card-title a {
  color: var(--default-color);
  transition: 0.3s;
}

.events-3 .card-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events-3 .card:hover img {
  transform: scale(1.1);
}

.events-3 .card:hover .card-body {
  border-color: var(--accent-color);
}

.events-3 .card:hover .card-body .card-title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Gallery 2 Section
--------------------------------------------------------------*/
.gallery-2 .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery-2 .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery-2 .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Features 3 Section
--------------------------------------------------------------*/
.features-3 h3 {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.features-3 .icon-box {
  margin-top: 50px;
}

.features-3 .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 32px;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 0;
}

.features-3 .icon-box:hover i {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.features-3 .icon-box .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.features-3 .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features-3 .icon-box .title a:hover {
  color: var(--accent-color);
}

.features-3 .icon-box .description {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.features-3 .video-box {
  min-height: 400px;
}

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

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

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  padding-top: 80px;
}

.hero-2 .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-2 .hero-title {
    font-size: 2.5rem;
  }
}

.hero-2 .hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-2 .image-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-2 .image-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
}

.hero-2 .image-grid .grid-item {
  overflow: hidden;
  border-radius: 15px;
}

.hero-2 .image-grid .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-2 .image-grid .grid-item img:hover {
  transform: scale(1.05);
}

.hero-2 .image-grid .item-1 {
  grid-column: 1/4;
  grid-row: 1/2;
}

@media (max-width: 768px) {
  .hero-2 .image-grid .item-1 {
    grid-column: 1/7;
  }
}

.hero-2 .image-grid .item-2 {
  grid-column: 4/7;
  grid-row: 1/2;
}

@media (max-width: 768px) {
  .hero-2 .image-grid .item-2 {
    grid-column: 1/4;
    grid-row: 2/3;
  }
}

.hero-2 .image-grid .item-3 {
  grid-column: 7/13;
  grid-row: 1/3;
}

@media (max-width: 768px) {
  .hero-2 .image-grid .item-3 {
    grid-column: 4/7;
    grid-row: 2/3;
  }
}

.hero-2 .image-grid .item-4 {
  grid-column: 1/3;
  grid-row: 2/3;
}

@media (max-width: 768px) {
  .hero-2 .image-grid .item-4 {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}

.hero-2 .image-grid .item-5 {
  grid-column: 3/5;
  grid-row: 2/3;
}

@media (max-width: 768px) {
  .hero-2 .image-grid .item-5 {
    grid-column: 3/5;
    grid-row: 3/4;
  }
}

.hero-2 .image-grid .item-6 {
  grid-column: 5/7;
  grid-row: 2/3;
}

@media (max-width: 768px) {
  .hero-2 .image-grid .item-6 {
    grid-column: 5/7;
    grid-row: 3/4;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# About 4 Section
--------------------------------------------------------------*/
.about-4 {
  padding: 80px 0;
}

.about-4 .content {
  padding-right: 30px;
}

.about-4 .subtitle {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.about-4 .title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.about-4 .description {
  margin-bottom: 30px;
  color: var(--default-color);
}

.about-4 .image-grid {
  display: flex;
  gap: 15px;
  height: 450px;
}

.about-4 .main-image {
  flex: 0 0 65%;
  height: 100%;
}

.about-4 .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-4 .side-images {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-4 .side-images img {
  width: 100%;
  height: calc(50% - 7.5px);
  object-fit: cover;
}

.about-4 .stats {
  margin-top: 30px;
}

.about-4 .stat-item {
  margin-bottom: 20px;
}

.about-4 .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  line-height: 1;
}

.about-4 .stat-text {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .about-4 .content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .about-4 .image-grid {
    height: auto;
    flex-direction: column;
  }

  .about-4 .main-image,
  .about-4 .side-images {
    flex: 0 0 100%;
  }

  .about-4 .side-images {
    flex-direction: row;
  }

  .about-4 .side-images img {
    height: 200px;
    width: calc(50% - 7.5px);
  }
}

/*--------------------------------------------------------------
# About 5 Section
--------------------------------------------------------------*/
.about-5 .text-accent {
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.about-5 .about-title {
  font-weight: 700;
}

.about-5 .feature-list {
  list-style-type: none;
  padding-left: 0;
}

.about-5 .feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.about-5 .feature-list li i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}

.about-5 .btn-accent {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.about-5 .btn-accent:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

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

.about-5 .image-wrapper img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-5 .image-wrapper img:last-child {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# About 6 Section
--------------------------------------------------------------*/
.about-6 .about-content {
  position: relative;
  z-index: 1;
}

.about-6 .about-content .about-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-6 .about-content .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-6 .about-content .about-title .text-underline {
  position: relative;
  display: inline-block;
}

.about-6 .about-content .about-title .text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 0.5rem;
  background-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  z-index: -1;
}

.about-6 .about-content .about-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.about-6 .about-content .about-points .about-point {
  margin-bottom: 1.5rem;
}

.about-6 .about-content .about-points .about-point .point-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.about-6 .about-content .about-points .about-point .point-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-6 .about-content .about-points .about-point .point-description {
  font-size: 0.875rem;
}

.about-6 .about-content::before,
.about-6 .about-content::after {
  content: "";
  position: absolute;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 50%;
  z-index: -1;
}

.about-6 .about-content::before {
  width: 10rem;
  height: 10rem;
  top: 3rem;
  left: 15rem;
}

.about-6 .about-content::after {
  width: 5rem;
  height: 5rem;
  bottom: -2.5rem;
  right: 2.5rem;
}

.about-6 .about-image {
  position: relative;
  z-index: 1;
}

.about-6 .about-image img {
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.about-6 .about-image::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: -1rem;
  right: -1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 1rem;
  z-index: -1;
}

@media (max-width: 991.98px) {
  .about-6 .about-content {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# About 7 Section
--------------------------------------------------------------*/
.about-7 h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about-7 .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

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

.about-7 .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about-7 .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

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

.about-7 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# About 8 Section
--------------------------------------------------------------*/
.about-8 .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

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

.about-8 .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about-8 .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

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

.about-8 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# About 9 Section
--------------------------------------------------------------*/
.about-9 .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

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

.about-9 .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about-9 .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.about-9 .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

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

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

.about-9 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# About 10 Section
--------------------------------------------------------------*/
.about-10 .content h2 {
  font-weight: 700;
  font-size: 24px;
}

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

.about-10 .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about-10 .content ul strong {
  margin-right: 10px;
}

.about-10 .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}

/*--------------------------------------------------------------
# About 11 Section
--------------------------------------------------------------*/
.about-11 .section-title {
  margin-bottom: 60px;
}

.about-11 .content {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 7rem 0;
}

.about-11 .content .img-overlap {
  margin-top: -150px;
}

.about-11 p {
  color: var(--contrast-color);
}

.about-11 .content-title {
  color: var(--contrast-color);
  font-weight: 300;
  text-align: left;
}

.about-11 .content-title strong {
  font-weight: 700;
}

.about-11 .content-subtitle {
  font-weight: 300;
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 1.3rem;
}

/*--------------------------------------------------------------
# Services 4 Section
--------------------------------------------------------------*/
.services-4 .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.services-4 .service-item .icon {
  margin-bottom: 20px;
}

.services-4 .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  transition: 0.3s;
}

.services-4 .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services-4 .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.services-4 .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-4 .service-item:hover {
  transform: translateY(-10px);
}

.services-4 .service-item:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .subtitle {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about-2 .title {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.about-2 .trusted-title {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.about-2 .feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.about-2 .feature-list li {
  color: var(--default-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.about-2 .feature-list li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.about-2 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-2 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.about-2 .image-grid {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
}

.about-2 .image-grid img {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-2 .image-grid .main-image {
  width: 75%;
  height: 75%;
  top: 0;
  left: 5%;
  object-fit: cover;
  border: 5px solid var(--surface-color);
}

.about-2 .image-grid .overlay-image-1 {
  width: 50%;
  height: 50%;
  bottom: 0;
  left: 2%;
  object-fit: cover;
  z-index: 1;
  border: 5px solid var(--surface-color);
}

.about-2 .image-grid .overlay-image-2 {
  width: 50%;
  height: 50%;
  bottom: 10%;
  right: 10%;
  object-fit: cover;
  z-index: 2;
  border: 5px solid var(--surface-color);
}

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

  .about-2 .image-grid .main-image {
    width: 100%;
    height: 100%;
    left: 0;
  }

  .about-2 .image-grid .overlay-image-1 {
    width: 45%;
    height: 45%;
    bottom: 0;
    left: 4%;
  }

  .about-2 .image-grid .overlay-image-2 {
    width: 45%;
    height: 45%;
    bottom: 0;
    right: 4%;
  }
}

/*--------------------------------------------------------------
# Blog Pagination 4 Section
--------------------------------------------------------------*/
.blog-pagination-4 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination-4 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination-4 li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination-4 li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination-4 li a.active,
.blog-pagination-4 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination-4 li a.active a,
.blog-pagination-4 li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

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

.newsletter-widget .newsletter-form {
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

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

.newsletter-widget .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  font-size: 14px;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

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

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

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

.newsletter-widget .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 4px;
}

.newsletter-widget .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 4px;
}

.newsletter-widget .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-top: 10px;
}

.newsletter-widget .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--background-color);
  animation: subscription-loading 1s linear infinite;
}

@keyframes subscription-loading {
  0% {
    transform: rotate(0deg);
  }

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

.recent-posts-widget-2 .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget-2 .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget-2 .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget-2 .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget-2 .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget-2 .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.blog-author-widget img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: regular;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
  font-size: 14px;
}

.blog-author-widget-2 img {
  max-width: 160px;
}

.blog-author-widget-2 h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget-2 .social-links {
  margin: 5px 0;
}

.blog-author-widget-2 .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget-2 .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget-2 p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}


/* -- detalis open mapa funcionando --*/


summary::-webkit-details-marker {
  display: none;
  
}
summary:after {
  
  border-radius: 50%;
  background: #e5ebf1; 
  content: "+"; 
  color: #00387a; 
  float: left;  
  font-weight: bold; 
  padding: 0; 
  text-align: center; 
  width: 40px;
  left: 80px;
  margin-right: 10px;
  font-size: 25px;
}
details[open] summary:after {
  background: #de3d3d;
  color: #ffffff;
  font-size: 25px;
  content: "-";
}
/* -- /detalis open mapa funcionando --*/

/* -- /BANNER START --*/

.hero-3 {

  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  
  img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  &:before {
    content: '';
    background: color-mix(in srgb, var(--background-color), transparent 100%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  .container {
    position: relative;
    z-index: 3;
  }

  h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
  }

  p {
    margin: 10px 0 0 0;
    font-size: 24px;
    color: var(--heading-color);
  }

  .btn-get-started {
    color: var(--default-color);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 40px;
    margin: 30px 0 0 0;
    border-radius: 4px;
    transition: 0.5s;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
    &:hover {
      color: var(--contrast-color);
      background: var(--accent-color);
      border-color: var(--accent-color);
    }
  }

  @media (max-width: 768px) {
    h2 {
      font-size: 32px;
    }
    p {
      font-size: 18px;
    }
  }

}
/* -- /BANNER END --*/


/* -- /Clientes Start --*/

.clients {

  .swiper {
    padding: 10px 0;
  }

  .swiper-wrapper {
    height: auto;
  }
  
  .swiper-slide {
    img {
      transition: 0.3s;
      &:hover {
        transform: scale(1.1);
      }
    }
  }
}

/* -- /Clientes End --*/


/*--------------------------------------------------------------
# Faq 2 Section / Ficha Técnica
--------------------------------------------------------------*/
.faq-2 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

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

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

.faq-2 .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-2 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-2 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/* --  Ficha Técnica end -- */
.font_pequena {
  display: block;
  font-style: italic;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.font_pequena_2 {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  
}

/* Institucional começa aqui */

.team {
  .team-slider {
    overflow: hidden;
    margin-bottom: 24px;
  }

  .slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;

    .swiper-button-prev,
    .swiper-button-next {
      position: static;
      width: 40px;
      height: 40px;
      margin: 0;
      background-color: var(--surface-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      border-radius: 50%;
      transition: 0.3s;
      
      &::after {
        font-size: 14px;
        color: var(--default-color);
      }

      &:hover {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        
        &::after {
          color: var(--contrast-color);
        }
      }
    }
  }

  .member {
    .member-img {
      position: relative;
      margin-bottom: 16px;
      overflow: hidden;
      border-radius: 20px;

      img {
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
      }

      .social {
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, .6);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;

        a {
          color: var(--contrast-color);
          font-size: 20px;
          transition: 0.3s;
          
          &:hover {
            color: var(--accent-color);
            transform: translateY(-2px);
          }
        }
      }

      &:hover {
        .social {
          opacity: 1;
          visibility: visible;
        }
      }
    }

    .member-info {
      h4 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 4px;
        color: var(--heading-color);
      }

      span {
        font-size: 15px;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
      }
    }
  }

  .swiper-wrapper {
    height: auto !important;
  }
}

/* Institucional termina aqui */