
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --nav-font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
}


:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #364d59; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #52565e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #A8D973; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.55);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* 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: #1E7F3D; /* 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: #f4f7f6;
  --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);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
  font-family: var(--default-font);
}

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

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

/* 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 TOPNAV
--------------------------------------------------------------*/

.topbar {
  height: 45px;
  background: rgba(33, 37, 41, 0.9);
  font-size: 13px;
  color: #ffffff;
  z-index: 1000;
}

.topbar a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
  font-family: var(--default-font);
}

.topbar a:hover {
  color: 	#FFC300;
}

.topbar-info i {
  margin-right: 6px;
  color: #FFC300;
}

.topbar-info i:hover {
  color: #FFC300;
}

.topbar-info span,
.topbar-info a {
  display: inline-flex;
  align-items: center;
}

.topbar-social a {
  color: #ffffff;
  margin-left: 15px;
  font-size: 14px;
  transition: 0.3s;
}

.topbar-social a:hover {
  color: #FFC300;
}

.topbar-social .topbar-link i {
  font-size: 24px; 
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.topbar-social .topbar-link:hover i {
  color:	#FFC300;
}

.topbar-social .topbar-link.ms-3 {
  margin-left: 25px;
}

/* Esconder TopNav no mobile */
@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  #header {
    top: 0;
  }

}

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

#header {
  top: 40px;
  z-index: 999;
}

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

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

.header .logo span {
  font-size: 24px;
  padding-left: 1px;
  font-family: var(--heading-font);
  color: var(--color-primary);
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.95);
  --heading-color: #3c3c3c;
  --nav-color: #3c3c3c;
  --nav-hover-color: #3c3c3c;
}

/*--------------------------------------------------------------
# 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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

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

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--nav-dropdown-color);
  }

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

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

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* 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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

/* Botão close dentro do menu mobile */
@media (max-width: 1199px) {

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 45px;
    right: 15px;
    z-index: 10001;

   
    padding: 8px;
    border-radius: 50%;
    color: #fff;
  }

  /* O menu começa abaixo do topbar */
  .mobile-nav-active .navmenu > ul {
    margin-top: 40px;
  }
  
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  background: url("../img/instituto-1.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  position: relative;
}

.footer .container {
  position: relative;
}

.footer:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
}

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

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

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

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

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

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

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: 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 #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s 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: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--default-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;
}

/*--------------------------------------------------------------
# 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);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  image-rendering: auto;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  background: linear-gradient(
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.55)
    );
    z-index: 1;
  inset: 0;
}

.page-title h1 {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 10px;
}

.page-title .container {
    position: relative;
    z-index: 2;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
  color: #ffffff;
}

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before
 {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  position: absolute;
  bottom: 40px;
  left: 530px;
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}


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

.section-title-anun h3 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  padding-bottom: 4px;
  
}

.section-title-anun p {
 margin-bottom: 0;
 padding-bottom: 30px;
 font-family: var(--heading-font);

}

.section-title-anun h2:before
 {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  position: absolute;
  bottom: 40px;
  left: 530px;
  display: inline-block;
}

.section-title-testmunho h3 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  padding-bottom: 4px;
  text-align: center;
  
}
.section-title-testmunho p {
  margin-bottom: 0;
 padding-bottom: 30px;
 font-family: var(--heading-font);
  text-align: center;
  
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.hero .info .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--accent-color);
}

.hero .info .btn-get-started:hover {
  background: var(--accent-color);
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
  padding: 30px 0;
}

.get-started .content h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.get-started .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-started .php-email-form {
    padding: 20px;
  }
}

.get-started .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-started .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-started .php-email-form input[type=text],
.get-started .php-email-form input[type=email],
.get-started .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 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

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

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

/*--------------------------------------------------------------
# Notícias Section
--------------------------------------------------------------*/
/* ===== Notícias ===== */
.news .news-card {
  background-color: var(--surface-color);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.news .news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Imagem */
.news .news-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news .news-card:hover img {
  transform: scale(1.08);
}

/* Categoria */
.news .news-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  z-index: 2;
}

/* Conteúdo */
.news .news-content {
  padding: 24px;
}

.news .news-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news .news-excerpt {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

/* Botão */
.news .btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.news .btn-read-more i {
  transition: transform 0.3s ease;
}

.news .btn-read-more:hover {
  color: var(--heading-color);
}

.news .btn-read-more:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Estatísticas Académicas
--------------------------------------------------------------*/
.stats .stat-item {
  background: var(--surface-color);
  padding: 40px 20px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stats .stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Ícone */
.stats .icon {
  margin-bottom: 20px;
}

.stats .icon i {
  font-size: 48px;
  color: var(--accent-color);
}

/* Número */
.stats h3 {
  font-size: 42px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 10px;
}

/* Texto */
.stats p {
  font-size: 15px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  color: var(--heading-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

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

.features .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

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

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

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

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

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

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

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

.features .tab-pane img {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.features .tab-pane ul li span {
  font-size: 15px;
}


/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.projects .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  margin: 0 10px;
  padding: 2px 10px;
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);

}

.projects .portfolio-filters li:hover,
.projects .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.projects .portfolio-filters li:first-child {
  margin-left: 0;
}

.projects .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .projects .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}

.projects .portfolio-content img {
  transition: 0.3s;
}

.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.projects .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.projects .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.projects .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  border-radius: 20px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

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

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

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

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

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

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

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

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-blog-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

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

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

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

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

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



#mensage-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 80%;
  object-fit: cover;
  object-position: center;
  margin-top: 90px;
  border-radius: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 1;
}


#cientifico-img img {
  position: absolute;
  margin-left: 100px;
  inset: 0;
  display: block;
  width: 85%;
  height: 80%;
  margin-top: 90px;
  border-radius: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 1;
}


/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats-counter .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats-counter .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Alt Services 2 Section
--------------------------------------------------------------*/
.alt-services-2 .features-image {
  position: relative;
  min-height: 400px;
}

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

.alt-services-2 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.alt-services-2 .icon-box {
  margin-top: 30px;
}

.alt-services-2 .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.alt-services-2 .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services-2 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards h3 {
  font-size: 20px;
  font-weight: 700;
}

.features-cards p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features-cards ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

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

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

.service-details h4 {
  font-size: 20px;
  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);
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details .swiper-wrapper {
  height: auto;
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}

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

.project-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.project-details .portfolio-description p {
  padding: 0;
}

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

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

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

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

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}


/* Card base reutilizável */
.card-soft {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Slider */
.project-details .portfolio-details-slider img {
  width: 100%;
  border-radius: 16px;
}

/* Sidebar */
.project-details .portfolio-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.project-details .portfolio-info ul li {
  margin-bottom: -2px;
}

.project-details .portfolio-info ul strong {
  display: block;
  font-size: 13px;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Título */
.project-details .portfolio-description h2 {
  font-size: 28px;
  font-weight: 700;
}

/* Swiper botões */
.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 44px;
  height: 44px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

/* Mobile */
@media (max-width: 768px) {
  .card-soft {
    padding: 24px;
  }

  .project-details .portfolio-description h2 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
  margin-top: 20px;
}

.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

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

}

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

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

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

/* Badges de Anúncios */
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  width: fit-content;
}

.badge-anuncio {
  background-color: #FFC300;
  color: #fff;
}

.badge-comunicado {
  background-color: #198754;
  color: #fff;
}

.badge-oportunidade {
  background-color: #6c757d;
  color: #fff;
}

/* Ajuste visual dos cards */
.recent-blog-posts .post-item {
  background-color: var(--surface-color);
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.recent-blog-posts .post-item:hover {
  transform: translateY(-5px);
}

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

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

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

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

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

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

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

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.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: var(--surface-color);
  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 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  background-color: var(--surface-color);
  padding: 40px 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}

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

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

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

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}
/*--------------------------------------------------------------
# Page Sub Navigation
--------------------------------------------------------------*/

.page-subnav-wrapper {
  background-color: var(--surface-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 15%, transparent);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background-color: color-mix(in srgb, var(--surface-color) 95%, transparent);
}

.page-subnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md, 20px);
  padding: var(--spacing-sm, 15px) 0;
}

/* Title */
.page-subnav-title {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs, 10px);
  font-size: var(--font-size-lg, 18px);
  font-weight: var(--font-weight-bold, 700);
  color: var(--heading-color);
  flex-shrink: 0;
}

.page-subnav-title i {
  color: var(--accent-color);
  font-size: var(--font-size-xl, 20px);
  transition: transform 0.3s ease;
}

.page-subnav-title:hover i {
  transform: scale(1.1);
}

/* Links Container */
.page-subnav-links {
  padding: 10px 10px;
  list-style: none;
  display: flex;
  gap: var(--spacing-lg, 25px);
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) transparent;
}

.page-subnav-links::-webkit-scrollbar {
  height: 4px;
}

.page-subnav-links::-webkit-scrollbar-track {
  background: transparent;
}

.page-subnav-links::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 20px;
}

/* Links */
.page-subnav-links li {
  position: relative;
  padding: 6px 0px;
}

.page-subnav-links li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs, 8px);
  font-size: var(--font-size-md, 15px);
  font-weight: var(--font-weight-semi-bold, 600);
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  padding: var(--spacing-xs, 8px) var(--spacing-sm, 12px);
  border-radius: var(--border-radius-sm, 6px);
  transition: all 0.3s var(--transition-easing, ease);
  text-decoration: none;
  outline-offset: 2px;
}

.page-subnav-links li a:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}

/* Hover State */
.page-subnav-links li a:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 8%, transparent);
}

/* Active State */
.page-subnav-links li a.active {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 12%, transparent);
  font-weight: var(--font-weight-bold, 700);
}

.page-subnav-links li a.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 20px;
  animation: slideIn 0.3s var(--transition-easing, ease);
}

/* Mobile Toggle Button */
.page-subnav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs, 8px);
  border-radius: var(--border-radius-sm, 6px);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.page-subnav-toggle:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.page-subnav-toggle:hover {
  background-color: color-mix(in srgb, var(--default-color) 10%, transparent);
}

.toggle-icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  position: relative;
  transition: background-color 0.3s ease;
}

.toggle-icon::before,
.toggle-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  left: 0;
  transition: transform 0.3s ease;
}

.toggle-icon::before {
  top: -6px;
}

.toggle-icon::after {
  bottom: -6px;
}

.page-subnav-toggle[aria-expanded="true"] .toggle-icon {
  background-color: transparent;
}

.page-subnav-toggle[aria-expanded="true"] .toggle-icon::before {
  transform: rotate(45deg) translate(4px, 4px);
}

.page-subnav-toggle[aria-expanded="true"] .toggle-icon::after {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Animations */
@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 24px;
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .page-subnav {
    gap: var(--spacing-sm, 16px);
  }
  
  .page-subnav-links {
    gap: var(--spacing-md, 20px);
  }
}

@media (max-width: 768px) {
  .page-subnav {
    position: relative;
    flex-wrap: wrap;
  }
  
  .page-subnav-title {
    flex: 1;
  }
  
  .page-subnav-toggle {
    display: block;
  }
  
  .page-subnav-links {
    display: none;
    flex-direction: column;
    gap: var(--spacing-xs, 8px);
    width: 100%;
    overflow-x: visible;
    padding: var(--spacing-sm, 16px) 0 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    margin-top: var(--spacing-sm, 16px);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  .page-subnav-links[aria-expanded="true"] {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  
  .page-subnav-links li a {
    padding: var(--spacing-sm, 12px) var(--spacing-md, 16px);
    border-radius: var(--border-radius-sm, 6px);
  }
  
  .page-subnav-links li a.active::before {
    left: 0;
    transform: none;
    width: 4px;
    height: 100%;
    bottom: 0;
  }
}

@media (max-width: 480px) {
  .page-subnav-title span {
    font-size: var(--font-size-md, 16px);
  }
  
  .page-subnav-links li a {
    font-size: var(--font-size-sm, 14px);
    padding: var(--spacing-xs, 10px) var(--spacing-sm, 14px);
  }
}



/* ============================================
   TOPBAR E HEADER - CLASSES ESPECÍFICAS
   ============================================ */

/* Topbar específica do seu site */
#topbar.custom-topbar {
  height: 45px;
  background: rgba(33, 37, 41, 0.9);
  font-size: 13px;
  color: #ffffff;
  z-index: 1001;
  transition: all 0.5s;
  transform: translateY(0);
}

/* Header específico do seu site */
#header.custom-header {
  --custom-bg-color: rgba(255, 255, 255, 0);
  --custom-default-color: #ffffff;
  --custom-heading-color: #ffffff;
  --custom-nav-color: #ffffff;
  --custom-nav-hover-color: #ffffff;
  color: var(--custom-default-color);
  background-color: var(--custom-bg-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 1000;
  position: fixed;
  width: 100%;
  top: 45px;
}

/* Classe específica para estado de scroll */
body.custom-scroll-effect {
  --custom-scrolled-bg: rgba(255, 255, 255, 0.95);
  --custom-scrolled-text: #3c3c3c;
  --custom-scrolled-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Topbar ao rolar - específico */
body.custom-scroll-effect #topbar.custom-topbar {
  transform: translateY(-45px);
  opacity: 0;
  visibility: hidden;
}

/* Header ao rolar - específico */
body.custom-scroll-effect #header.custom-header {
  top: 0;
  --custom-bg-color: var(--custom-scrolled-bg);
  --custom-heading-color: var(--custom-scrolled-text);
  --custom-nav-color: var(--custom-scrolled-text);
  --custom-nav-hover-color: var(--custom-scrolled-text);
  box-shadow: var(--custom-scrolled-shadow);
}

body.custom-scroll-effect #header.custom-header .logo h1 {
  color: var(--custom-scrolled-text);
}

/* Submenu específico */
.custom-subnav {
  position: relative;
  transition: all 0.5s;
  margin-top: 16px;
  z-index: 999;
}

/* Submenu fixo quando em scroll */
body.custom-scroll-effect .custom-subnav {
  position: fixed;
  top: 70px;
  width: 100%;
  z-index: 998;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Quando o submenu está fixo */
.custom-subnav.custom-subnav-fixed {
  position: fixed;
  top: 70px;
  width: 100%;
  animation: customSlideDown 0.3s ease-out;
  background-color: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(10px);
}

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

/* Container do submenu específico */
.custom-subnav .page-subnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.custom-subnav .page-subnav-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #333;
  font-size: 18px;
}

.custom-subnav .page-subnav-title i {
  color: var(--accent-color, #FFC300);
  font-size: 20px;
}

/* Links do submenu específico */
.custom-subnav .page-subnav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
}

.custom-subnav .page-subnav-links li {
  position: relative;
}

.custom-subnav .page-subnav-links a {
  color: #555;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 5px 0;
  transition: color 0.3s;
  position: relative;
}

.custom-subnav .page-subnav-links a:hover {
  color: var(--accent-color, #FFC300);
}

.custom-subnav .page-subnav-links a.active {
  color: var(--accent-color, #FFC300);
}

.custom-subnav .page-subnav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color, #FFC300);
}

/* Botão toggle específico */
.custom-subnav .page-subnav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  padding: 5px;
}

/* ============================================
   RESPONSIVIDADE ESPECÍFICA
   ============================================ */

/* Mobile - Topbar específica */
@media (max-width: 768px) {
  #topbar.custom-topbar {
    display: none;
  }

  #header.custom-header {
    top: 0;
  }

  body.custom-scroll-effect #header.custom-header {
    top: 0;
  }

  body.custom-scroll-effect .custom-subnav {
    top: 60px;
  }

  .custom-subnav.custom-subnav-fixed {
    top: 60px;
  }
}

/* Responsividade para o submenu específico */
@media (max-width: 992px) {
  .custom-subnav .page-subnav {
    flex-wrap: wrap;
    position: relative;
  }

  .custom-subnav .page-subnav-toggle {
    display: block;
  }

  .custom-subnav .page-subnav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 5px 5px;
    z-index: 1000;
  }

  .custom-subnav .page-subnav-links.expanded {
    display: flex;
  }

  .custom-subnav .page-subnav-links li {
    width: 100%;
  }

  .custom-subnav .page-subnav-links a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .custom-subnav .page-subnav-links a:last-child {
    border-bottom: none;
  }
}

/* ============================================
   ESTILOS EXISTENTES DO SEU SITE (MANTIDOS)
   ============================================ */

#header {
  top: 40px;
  z-index: 999;
}



/* Apenas sobrescrevemos quando as classes customizadas estão presentes */
#header.custom-header {
  /* Estilos específicos para o header customizado */
  top: 45px !important; /* Usamos !important apenas para garantir */
}

body.custom-scroll-effect #header.custom-header {
  top: 0 !important;
}



#organigrama-img img{
  width: 370%;
  height: 100%;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/

.faq-section {
  padding: 60px 0;
}

.faq-section-title {
  text-align: center;
  margin-bottom: 40px;
}
.faq-section-title h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.faq-section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
}

/* Wrapper */
.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ Item */
.faq-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Question Button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  cursor: pointer;
  transition: 0.3s;
}

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

/* Icon */
.faq-icon {
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
}

.faq-answer p {
  padding-bottom: 20px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}


/*--------------------------------------------------------------
# decretos Pagination
--------------------------------------------------------------*/
.anuncios-legal-section {
  background-color: #f4f7f6;
  padding: 70px 0;
}

/* Pesquisa */
.anuncios-legal-search {
  position: relative;
}

.anuncios-legal-search i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #888;
}

.anuncios-legal-search input {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border-radius: 50px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  outline: none;
}

.anuncios-legal-search input:focus {
  border-color: #1E7F3D;
}

/* Cards */
.anuncios-legal-card {
  display: block;
  height: 100%;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

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

.anuncios-legal-card-body {
  padding: 28px;
}

.anuncios-legal-icon {
  font-size: 2.4rem;
  color: #d32f2f;
  margin-bottom: 15px;
}

.anuncios-legal-card-title {
  font-size: 1.05rem;
  font-weight: 600;
}

.anuncios-legal-card-text {
  font-size: 0.92rem;
  color: #666;
}

.anuncios-legal-action {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #1E7F3D;
}

/* Mobile ajustes */
@media (max-width: 576px) {
  .anuncios-legal-card-body {
    padding: 22px;
  }

  .anuncios-legal-title {
    font-size: 1.6rem;
  }
}



.reg-inst-section {
  padding: 80px 0;
  background: #ffffff;
}

.reg-inst-title {
  font-size: 2rem;
  font-weight: 700;
}

.reg-inst-subtitle {
  max-width: 750px;
  margin: auto;
  color: #666;
}

/* Pesquisa */
.reg-inst-search {
  position: relative;
}

.reg-inst-search i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.reg-inst-search input {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* Card */
.reg-inst-card {
  display: flex;
  gap: 20px;
  background: #f8f9fa;
  padding: 28px;
  border-radius: 16px;
  transition: 0.3s ease;
  height: 100%;
}

.reg-inst-card:hover {
  background: #eef4ff;
  transform: translateY(-4px);
}

.reg-inst-icon {
  font-size: 2.2rem;
  color: #1E7F3D;
  flex-shrink: 0;
}

.reg-inst-content h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.reg-inst-content p {
  font-size: 0.95rem;
  color: #555;
}

/* Mobile */
@media (max-width: 576px) {
  .reg-inst-card {
    flex-direction: column;
    text-align: center;
  }

  .reg-inst-icon {
    margin-bottom: 10px;
  }
}


.reg-pdf-section {
  padding: 80px 0;
  background: #f9fafb;
}

.reg-pdf-title {
  font-size: 2rem;
  font-weight: 700;
}

.reg-pdf-subtitle {
  max-width: 760px;
  margin: auto;
  color: #666;
}

/* Pesquisa */
.reg-pdf-search {
  position: relative;
}

.reg-pdf-search i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

.reg-pdf-search input {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* Card */
.reg-pdf-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: 0.3s;
}

.reg-pdf-card:hover {
  transform: translateY(-4px);
}

.reg-pdf-header {
  display: flex;
  gap: 18px;
}

.reg-pdf-icon {
  font-size: 2.4rem;
  color: #d32f2f;
  flex-shrink: 0;
}

.reg-pdf-info h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.reg-pdf-info p {
  font-size: 0.95rem;
  color: #555;
}

/* Botão */
.reg-pdf-footer {
  margin-top: 20px;
  text-align: right;
}

.reg-pdf-btn {
  padding: 10px 20px;
  background: #A8D973;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.reg-pdf-btn:hover {
  background: #FFFFFF;
  border: 2px solid #A8D973;
}

/* Mobile */
@media (max-width: 576px) {
  .reg-pdf-header {
    flex-direction: column;
    text-align: center;
  }

  .reg-pdf-footer {
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Unidades Orgânicas Section
--------------------------------------------------------------*/

.unidades-organicas {
  background-color: var(--background-color);
}

.unidades-organicas .section-title h2 {
  font-size: 32px;
  font-weight: 700;
}

.unidades-organicas .section-title p {
  max-width: 650px;
  margin: 0 auto;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Card */
.unidade-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 30px 25px;
  height: 100%;
  display: block;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.unidade-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Icon */
.unidade-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border-radius: 50%;
}

.unidade-icon i {
  font-size: 32px;
  color: var(--accent-color);
}

/* Title */
.unidade-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Text */
.unidade-card p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Link */
.unidade-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.unidade-link i {
  transition: transform 0.3s ease;
}

.unidade-card:hover .unidade-link i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .unidade-card {
    padding: 25px 20px;
  }
}

/*--------------------------------------------------------------
# Comment Form
--------------------------------------------------------------*/

/* ===============================
   Unidade Orgânica - Detalhes
================================ */

.unit-details {
  padding: 4rem 0;
  background-color: #f8f9fb;
}

/* Título principal */
.unit-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 1rem;
}

/* Descrição */
.unit-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

/* Card suave */
.card-soft {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #1E7F3D;
}

/* Informações gerais */
.unit-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0d1b2a;
}

.unit-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unit-info li {
  font-size: 0.95rem;
  padding: 0.4rem 0;
  color: #444;
}

.unit-info li strong {
  color: #0d1b2a;
}

/* Subtítulos */
.section-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0d1b2a;
}

.section-subtext {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.3rem;
}

/* ===============================
   Tabela de Cursos
================================ */

.course-table {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Cabeçalho */
.course-table thead {
  background: #1E7F3D;
  color: #fff;
}

.course-table th {
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem;
  border: none;
}

/* Linhas */
.course-table td {
  padding: 1rem;
  font-size: 0.95rem;
  vertical-align: middle;
  border-top: 1px solid #f1f1f1;
}

/* Hover interativo */
.course-table tbody tr {
  cursor: pointer;
  transition: all 0.25s ease;
}

.course-table tbody tr:hover {
  background-color: #f1f6ff;
  transform: scale(1.01);
}

/* Ícones */
.course-table i {
  font-size: 1.2rem;
}

/* Botão */
.course-table .btn-outline-primary {
  border-radius: 20px;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
}

/* ===============================
   Responsividade
================================ */

@media (max-width: 768px) {
  .unit-title {
    font-size: 1.8rem;
  }

  .card-soft {
    margin-top: 2rem;
  }

  .course-table td,
  .course-table th {
    font-size: 0.85rem;
  }
}


/*--------------------------------------------------------------
# Eventos Page
--------------------------------------------------------------*/
    /* Estilos para a página de eventos */
    .eventos-page {
        padding: 80px 0;
    }

    .page-title {
        font-size: 2.5rem;
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .filter-card {
        border-radius: 12px;
        border: none;
    }

    .btn-filter {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 50px;
        padding: 8px 20px;
        font-weight: 500;
        color: #495057;
        transition: all 0.3s ease;
    }

    .btn-filter:hover {
        background-color: #e9ecef;
        transform: translateY(-2px);
    }

    .btn-filter.active {
        background-color: #A8D973;
        color: white;
        border-color: #A8D973;
    }

    .btn-view {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 8px 12px;
        color: #495057;
        margin-left: 5px;
    }

    .btn-view.active {
        background-color: #A8D973;
        color: white;
        border-color: #A8D973;
    }

    .post-item {
        background-color: white;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .post-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    }

    .post-img {
        height: 220px;
    }

    .post-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .post-item:hover .post-img img {
        transform: scale(1.05);
    }

   

    .post-overlay {
        position: absolute;
        bottom: 15px;
        right: 15px;
    }

    .post-content {
        padding: 25px;
        height: calc(100% - 220px);
    }

    .post-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .post-excerpt {
        color: #6c757d;
        font-size: 0.95rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .badge {
        padding: 6px 12px;
        font-weight: 600;
        font-size: 0.75rem;
        border-radius: 6px;
    }

    .badge-anuncio {
        background-color: #e3f2fd;
        color: #A8D973;
    }

    .badge-comunicado {
        background-color: #e8f5e9;
        color: #A8D973;
    }

    .badge-oportunidade {
        background-color: #fff3e0;
        color: #ef6c00;
    }

    .badge-evento {
        background-color: #f3e5f5;
        color: #7b1fa2;
    }

    .readmore {
        color: #A8D973;
        text-decoration: none;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        margin-top: auto;
    }

    .readmore i {
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .readmore:hover i {
        transform: translateX(5px);
    }

    .meta {
        color: #6c757d;
        font-size: 0.9rem;
    }

    .meta i {
        color: #A8D973;
    }

    /* Responsividade */
    @media (max-width: 768px) {
        .eventos-page {
            padding: 40px 0;
        }

        .page-title {
            font-size: 2rem;
        }

        .post-img {
            height: 180px;
        }

        .post-content {
            padding: 20px;
        }

        .btn-filter {
            padding: 6px 15px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 576px) {
        .page-title {
            font-size: 1.75rem;
        }

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

    .dropdown-menu-select.show {
        display: block;
    }

    .dropdown-select-wrapper {
        position: relative;
    }
    
    .btn-dropdown-select {
        width: 100%;
        text-align: left;
        background-color: #ffffff;
        border: 2px solid #e0e6ed;
        border-radius: 10px;
        padding: 12px 20px;
        font-size: 0.95rem;
        font-weight: 500;
        color: #2c3e50;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    }
    
    .btn-dropdown-select:hover {
        border-color: #A8D973;
        box-shadow: 0 6px 12px rgba(52, 152, 219, 0.1);
        color: #2c3e50;
        background-color: #ffffff;
    }
    
    .btn-dropdown-select:focus {
        border-color: #A8D973;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    }
    
    .btn-dropdown-select::after {
        margin-left: auto;
        color: #7b8a8b;
    }
    
    .select-text {
        flex: 1;
    }
    
    .dropdown-menu-select {
        width: 100%;
        border: 2px solid #e0e6ed;
        border-radius: 10px;
        padding: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin-top: 5px;
    }
    
    .dropdown-item.select-option {
        padding: 10px 15px;
        border-radius: 6px;
        margin: 2px 0;
        color: #2c3e50;
        display: flex;
        align-items: center;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    
    .dropdown-item.select-option:hover {
        background-color: #f8f9fa;
        color: #A8D973;
    }
    
    .dropdown-item.select-option.active {
        background-color: #f0f7ff;
        color: #A8D973;
    }
    
    .dropdown-item.select-option .bi-check-lg {
        margin-left: auto;
        opacity: 0;
        color: #A8D973;
    }
    
    .dropdown-item.select-option.active .bi-check-lg {
        opacity: 1;
    }
    
    .dropdown-item.select-option i:first-child {
        width: 20px;
        text-align: center;
        margin-right: 10px;
    }


    /* Estilos para paginação */
.pagination {
    margin-bottom: 0;
}

.page-link {
    border: none;
    color: #5a6c7d;
    font-weight: 500;
    padding: 10px 16px;
    margin: 0 4px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.page-link:hover {
    background-color: #e9ecef;
    color: #A8D973;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #A8D973, #A8D973);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.page-item.disabled .page-link {
    color: #bdc3c7;
    background-color: #f8f9fa;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.page-link i {
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .page-link {
        padding: 8px 12px;
        margin: 0 2px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .page-link {
        padding: 6px 10px;
        margin: 0 1px;
        font-size: 0.85rem;
    }
}



.news-header {
  display: flex;
  align-items: center;
  border-left: 4px solid #FFC300; padding-left: 15px;
  margin-bottom: 20px;
}

.news-nav {
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
}

.news-featured {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

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

.badge-featured {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffc107;
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
}

.news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-overlay h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-read {
  border: 1px solid #fff;
  padding: 8px 16px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.news-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.news-card-body {
  padding: 15px;
}

.news-card-body h4 {
  font-size: 16px;
  font-weight: 600;
}

.news-subject {
  font-size: 14px;
  color: #777;
}

.news-card-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 14px;
}

.news-card-footer a {
  color: #00a6c8;
  text-decoration: none;
  font-weight: 600;
}





