
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #222222; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #172a28; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #004607; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #008374; /* 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: #01433c; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #008374; /* 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: #f2f9f9;
  --surface-color: #ffffff;
}

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

.accent-background {
  --background-color: #008374;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #00b6a1;
  --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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #008374;
  --heading-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: #0c2034;
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  height: 100px;
  padding: 10px 0;
}

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

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

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

.header .logo span {
  font-size: 32px;
  margin-left: 2px;
  color: var(--nav-hover-color);
}

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

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu>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: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .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(--nav-hover-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-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;
    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 200px 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: 'Poppins', sans-serif;
    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;
  }
}

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

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

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

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

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

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

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

.footer .social-links a:hover {
  color: var(--default-color);
  border-color: var(--default-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(--default-color);
}

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

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

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

.footer .credits {
  margin-top: 4px;
  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: #1a331c;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: var(--accent-color);
  --default-color: #fff;
  --heading-color: #fff;
  color: var(--default-color);
  background-color: #004607;
  position: relative;
  padding-top: 60px;
}

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

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

@media (max-width: 768px) {
  .page-title .heading {
    padding: 20px 0 20px 0;
  }
}

@media (max-width: 768px) {

  .page-title .heading h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .page-title .heading p {
    font-size: 14px;
    line-height: 1.4;
  }

}

@media (max-width: 768px) {
  .page-title .heading {
    border-top: none;
  }
}

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

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

.page-title nav ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title nav ol a:hover {
  color: var(--default-color);
}

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

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

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

@media (max-width: 1199px) {

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

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

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

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

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

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

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

.hero h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h2 .accent {
  color: var(--conrast-color);
}

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

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .btn-get-started:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: var(--default-color);
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 22px;
    margin-bottom: 3px;
  }

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

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

@media (min-width: 1200px) {
  .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: var(--default-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

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

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.hero .icon-box .title a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .icon-box:hover {
  background-color: color-mix(in srgb, var(--background-color), white 10%);
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color: var(--contrast-color);
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
  padding: 10px 0;
}

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

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

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

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

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

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

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

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

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

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

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

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

.call-to-action .play-btn {
  width: 94px;
  height: 94px;
  margin-bottom: 20px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 60%) 52%);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: 0.3s;
}

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

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .service-item:hover .icon i {
  color: var(--heading-color);
}

.services .service-item:hover .icon:before {
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.services .service-item:hover h3 {
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--heading-color);
}

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.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;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

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

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

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

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

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

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 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: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

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

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

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

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

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

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

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

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

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

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

.portfolio .portfolio-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-content .portfolio-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-content .portfolio-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

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

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 15px;
  padding: 15px;
  overflow: hidden;
}

.team .member img {
  border-radius: 15px;
  overflow: hidden;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 20px;
}

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

.team .member .social {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.team .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
}

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

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

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

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  background-color: #004607;
  height: 100%;
  padding: 20px;
}

.contact .info-item {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
}

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

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

.contact .info-item h3 {
  color: var(--contrast-color);
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

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

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

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

/*--------------------------------------------------------------
# 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;
  text-align: center;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

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

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

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

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

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

.portfolio-details .swiper-button-prev:after,
.portfolio-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;
}

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

@media (max-width: 575px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 4px;
}

.blog-posts .title {
  font-size: 18px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 6px 0;
  font-family: "Montserrat", sans-serif;
}

.blog-posts .title a {
  color: #666;
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.blog-card-link:hover {
  text-decoration: none;
  color: inherit;
}


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

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

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

/* ESTILO ADICIONAL */

/* HERO SLIDER BACKGROUND - CORRETO E SEM QUEBRAR O TEMA */

#hero {
    position: relative;
    padding: 140px 0 0 0; /* mantém o espaçamento original do tema */
    background: none !important;
    
    height: 100vh; 
    min-height: 500px;
    
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    background-size: cover !important;
    background-position: center 30% !important;
    background-repeat: no-repeat !important;
}

@media (max-width: 768px) {
  .hero-slider .swiper-slide {
    background-position: 40% center !important;
  }
}

/* deixa o conteúdo por cima do slide */
.content-on-slider {
    position: relative;
    z-index: 3;
}

/* mantém os cards exatamente como o template original */
.hero .icon-boxes {
    position: relative;
    z-index: 4;
    margin-top: -80px;
}

.hero .icon-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 0 29px rgba(0,0,0,0.1);
}

.icon-boxes::before {
    display: none !important;
}


.navmenu a {
    color: #000000 !important;
}

.navmenu a:hover,
.navmenu .active {
    color: #008374 !important; /* verde forte do tema */
}

.mobile-nav-toggle {
    color: #000 !important;
}

/* Deixar título e subtítulo do banner em branco */
.hero h2,
.hero p,
.hero .content-on-slider h2,
.hero .content-on-slider p {
    color: #ffffff !important;
}

/* Botão branco no hero */
.hero .btn-get-started {
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    background: transparent !important;
    transition: all 0.3s ease-in-out !important;
}

/* Hover estiloso */
.hero .btn-get-started:hover {
    background: rgba(255, 255, 255, 0.2) !important; /* leve brilho branco */
    border-color: #ffffff;
    transform: translateY(-3px);
}


/* BOTÃO ASSISTA - Estilo branco com borda e hover */
.btn-watch-video {
    color: #ffffff !important;
    
    padding: 12px 25px !important;
    border-radius: 40px !important;
    background: transparent !important;
    transition: 0.3s ease !important;
    font-weight: 600;
}

/* Ícone play dentro do botão */
.btn-watch-video i {
    color: #ffffff !important;
    font-size: 22px;
    margin-right: 10px;
    transition: 0.3s ease;
}

/* Hover elegante */
.btn-watch-video:hover {
    
    transform: translateY(-3px);
}

.btn-watch-video:hover i {
    color: #ffffff !important;
}

/* ============================
   CARDS HERO – TRANSPARENT + WHITE STYLE
   ============================ */
.hero .icon-boxes {
    position: relative;
    z-index: 10;
}

.hero .icon-box {
    background: transparent !important;
    border: 2px solid rgba(255,255,255,0.8) !important;
    color: #fff !important;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.35s ease;
    backdrop-filter: blur(2px);
}

/* Ícones brancos */
.hero .icon-box .icon {
    color: #ffffff !important;
}

/* Títulos brancos */
.hero .icon-box .title a,
.hero .icon-box .title {
    color: #ffffff !important;
}

/* Texto branco */
.hero .icon-box p {
    color: #ffffff !important;
}

/* HOVER estiloso */
.hero .icon-box:hover {
    transform: translateY(-12px);
    border-color: #ffffff;
    box-shadow: 0 0 25px rgba(255,255,255,0.35);
    backdrop-filter: blur(6px);
}


/* Garante que os slides acompanhem a altura */
#hero .hero-slider,
#hero .swiper-wrapper,
#hero .swiper-slide {
    height: 100% !important;
}

/* Remove interferência do padding interno */
#hero .content-on-slider {
    padding-top: 120px !important; /* ajusta o texto verticalmente */
}

/* Dá espaçamento natural entre banner e cards */
#hero .icon-boxes {
    margin-top: 40px !important;
}



/* ============================
   GALERIA DE IMAGENS
   ============================ */

.galeria-item {
  text-align: left;
}

.galeria-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.galeria-categoria {
  margin: 10px 0 0;
  font-size: 14px;
  color: #666;
}

.galeria-titulo {
  font-size: 16px;
  margin-top: 4px;
  font-weight: bold;
  color: #666;
}

/* ====== GALERIA HOME (MINIATURAS PADRONIZADAS) ====== */

.galeria-home-img {
  width: 100%;
  height: 260px;        /* altura fixa — pode ajustar */
  object-fit: cover;    /* corta de forma elegante */
  border-radius: 6px;   /* igual à galeria interna */
  display: block;
}

/* remove área branca e o card full box */
.portfolio-item .portfolio-content {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* título */
.portfolio-info {
  padding: 8px 4px 0 4px;
  text-align: center;
}

.portfolio-info h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.portfolio-info p {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
}

/* === Miniaturas com tamanho padronizado === */

/* Força todas as células da galeria a terem a mesma altura */
.portfolio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Container da imagem com altura fixa */
.portfolio-content {
  width: 100%;
  height: 260px;              /* Ajuste como quiser */
  overflow: hidden;
  border-radius: 8px;
}

/* A imagem preenche o container */
.portfolio-content img,
.galeria-home-img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* Corta perfeito sem distorcer */
  object-position: center;    /* Centraliza o corte */
  border-radius: 8px;
}

/* Título */
.portfolio-info {
  padding-top: 10px;
  text-align: center;
}

.portfolio-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.portfolio-info p {
  margin: 0;
  opacity: .6;
  font-size: 14px;
}

/* Container geral dos cards */
.icon-boxes {
  padding: 60px 0;
}

/* GRID dos cards */
.icon-boxes .row {
  justify-content: center;
}

/* CARD */
.icon-box {
  background: #fff;
  border: 1px solid #000;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 180px; /* card maior */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Ícone */
.icon-box .icon {
  font-size: 42px;
  color: #0a3a1a;
  margin-bottom: 15px;
}

/* Título */
.icon-box .title {
  font-size: 20px;
  font-weight: 600;
  color: #0a3a1a;
  margin-top: 8px;
}

/* HOVER — premium */
.icon-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  border-color: #0a3a1a;
}

/* Responsivo */
@media (max-width: 991px) {
  .icon-box {
    height: 170px;
  }
}

@media (max-width: 767px) {
  .icon-box {
    margin-bottom: 20px;
    height: 160px;
  }
}

/* Corrige o stretched-link bloqueando o hover */
.icon-box a.stretched-link {
  position: relative;
  z-index: 3;
}

/* Garante que o hover do card esteja acima do link invisível */
.icon-box:hover {
  z-index: 10;
}

/* ================================
   EVENTOS — LISTAGEM + MODAL
=================================== */

/* Bloco geral */
.eventos-bloco {
  margin-left: 10px;
  border-left: 3px solid #0a3a1a;
  padding-left: 25px;
}

/* Item do evento */
.evento-item {
  margin-bottom: 25px;
}

/* Card visual */
.evento-card {
  padding: 12px 20px;
  border-radius: 12px;
  background: #f6f6f6;
  border: 1px solid #ddd;
  transition: all .3s ease;
  cursor: pointer;
}

.evento-card:hover {
  transform: translateX(5px);
  background: #e9efe9;
  border-color: #0a3a1a;
}

/* Data */
.evento-data {
  font-size: 14px;
  color: #0a3a1a;
  font-weight: 600;
  margin-bottom: 4px;
}

/* Título */
.evento-titulo {
  font-size: 18px;
  color: #222;
  font-weight: 700;
}

/* MODAL */
.event-modal {
  display: none;
  max-width: 800px;
}

.event-modal img {
  border-radius: 12px;
}

.eventos-pagina .section-title {
    padding-top: 1px !important;
    padding-bottom: 5px !important;
}


/* ============================
   CRUD PAINEL - LISTAGEM TABELAS
   ============================ */

.painel-container {
    font-family: Arial, sans-serif;
    padding: 20px;
}

.painel-container h2 {
    margin-bottom: 20px;
}

.painel-btn {
    padding: 8px 12px;
    background: #1a73e8;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 15px;
}

.painel-btn-danger {
    background: #d93025;
}

.painel-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.painel-table th,
.painel-table td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.painel-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

/* Formulário */
.painel-form {
    max-width: 500px;
}

.painel-form input[type="text"],
.painel-form input[type="date"],
.painel-form textarea,
.painel-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}

.painel-form button {
    padding: 10px 18px;
    border: 0;
    border-radius: 5px;
    background: #1a73e8;
    color: #fff;
    cursor: pointer;
}

.painel-form button.cancelar {
    background: #888;
}

/* =========================================================
   PAINEL ADMINISTRATIVO - LAYOUT
   ========================================================= */

.admin-body {
    margin: 0;
    display: flex;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    padding: 0 !important;   /* ← ISSO resolve o problema */
  min-height: 100vh;
  overflow: hidden;
}

.admin-sidebar {
    width: 230px;
    background: #0a3a1a;
    color: #fff;
    height: 100vh;
    padding: 30px 20px;
    position: fixed;
    top: 0;
    left: 0;
}

.admin-sidebar h3 {
    margin-bottom: 25px;
    font-size: 20px;
}

.admin-sidebar a {
    display: block;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: 0.3s ease;
}

.admin-sidebar a:hover {
    padding-left: 6px;
    color: #c9ffd8;
}

.admin-content {
    margin-left: 250px;
    padding: 30px;
    width: calc(100% - 250px);
    overflow-y: auto;        /* ✅ permite rolagem */
    max-height: 100vh;       /* limita à tela */
}
}

/* =========================================================
   LOGIN PAGE
   ========================================================= */

.admin-login-body {
    background: #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-bottom: 100px;
}

.admin-login-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.admin-login-box h2 {
    margin-bottom: 25px;
}

.admin-login-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #bbb;
}

.admin-login-box button {
    width: 100%;
    padding: 12px;
    background: #0a3a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.admin-login-box button:hover {
    opacity: 0.9;
}

.admin-login-error {
    background: #c62828;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
}

/* =========================================================
   CRUD TABLES
   ========================================================= */

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.admin-table th {
    background: #e9e9e9;
    padding: 12px;
    text-align: left;
}

.admin-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.admin-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.admin-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #0a3a1a;
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 8px;
    margin-bottom: 5px;
}

.admin-btn-danger {
    background: #c62828 !important;
}

/* ===========================
   PAINEL ADMIN - LAYOUT BASE
   =========================== */
.admin-panel {
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
    font-family: inherit; /* mantém fonte do site */
}

.admin-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0a3a1a;
    margin-bottom: 5px;
}

.admin-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

/* ===========================
   CARDS DO DASHBOARD
   =========================== */
.admin-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.admin-card {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    padding: 25px;
    width: 30%;
    min-width: 260px;
    border-radius: 14px;
    text-decoration: none;
    color: #0a3a1a;
    transition: all 0.25s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.admin-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
}

.admin-card p {
    font-size: 15px;
    color: #444;
}

.admin-card:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: #0a3a1a;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* ===========================
   RESPONSIVO
   =========================== */
@media (max-width: 768px) {
    .admin-panel {
        padding: 20px;
    }

    .admin-cards {
        flex-direction: column;
        gap: 18px;
    }

    .admin-card {
        width: 100%;
    }
}

.admin-sidebar h3 {
    color: #fff;
}

/* ============================================================
   HEADER FIXO - BRANCO PREMIUM
   ============================================================ */

.header {
    background: #F5F5F5 !important;         
    border-bottom: 1px solid #e9ecef;       
    box-shadow: 0 2px 10px rgba(0,0,0,0.06); 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: background .3s ease, box-shadow .3s ease;
}

/* Ao rolar a página (efeito moderno, opcional) */
.header.scrolled {
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

/* ============================================================
   AJUSTE DO BODY PARA NÃO DEIXAR O CONTEÚDO ATRÁS DO HEADER
   ============================================================ */

body {
    padding-top: 0px !important; /* ajuste fino conforme tamanho real do header */
}

.header.hide-on-scroll .menu-logo-center img {
    opacity: 0;
    transform: translateX(-50%) translateY(-40px);
    transition: all 0.3s ease;
}

/* ============================================================
   MOBILE (MENU MOBILE FECHADO)
   ============================================================ */

@media (max-width: 991px) {
    .header {
        background: #f0efd6; !important;   
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    body {
        padding-top: 95px !important;     /* header geralmente menor no mobile */
    }
}

/* ============================================================
   MOBILE ALERTA — menu mobile aberto não deve sobrepor conteúdo
   ============================================================ */

.mobile-nav-toggle {
    z-index: 10000 !important;
}

.mobile-nav-active .header {
    background: #ffffff !important; /* quando abre menu, mantém branco */
}

#como-chegar {
  position: relative;
  padding: 100px 50px !important;
}

#como-chegar img {
  width: 100%;
  border-radius: 12px;
  opacity: 0.9;
}

#como-chegar .text-center h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

#como-chegar .text-center p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 20px;
}

#como-chegar .cta-btn {
  background: #004607;
  padding: 12px 28px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

#como-chegar .cta-btn:hover {
  background: rgba(0, 70, 7, 0.65);
  border: 2px solid var(--contrast-color);
}

.location-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #0a3a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.location-icon::before {
  content: "\f3c5"; /* Font Awesome map-marker-alt */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 28px;
  color: #fff;
}

.cta-icon {
    width: 110px !important;
    height: 110px !important;
    background: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 25px auto !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.18) !important;
    border: 3px solid #d93025 !important;
}

.cta-icon i {
    font-size: 60px !important;
    color: #d93025 !important;
}

/* Remove o text-white que o template aplica no Hero */
#hero .text-white {
  color: inherit !important;
}

/* ======== TÍTULO PRINCIPAL ======== */
.titulo-gaia {
  display: inline-block;
  background: #f5f5f5;
  color: #0c2034 !important;
  padding: 6px 14px;        /* reduzido */
  font-weight: 700;
  font-size: 32px;          /* ligeiramente menor e proporcional */
  line-height: 1.1;
  border-radius: 3px;
  margin: 0;                /* garante zero margem */
}

/* ======== SUBTÍTULO ======== */
.subtitulo-gaia {
  display: inline-block;
  /*background: #f5f5f5;*/
  color: #0c2034 !important;
  padding: 6px 14px;        /* reduzido */
  margin-top: 8px;
  margin-bottom: 0;         /* não deixa espaço extra */
  font-size: 20px;
  border-radius: 3px;
  font-weight: 600 !important;
}


/* ======== FRASE FINAL — DUAS LINHAS ======== */
.frase-gaia {
  margin-top: 18px;
}

.frase-gaia span {
  display: inline-block;
  background: #0c2034;   /* azul escuro */
  color: #f5f5f5;        
  padding: 10px 16px;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;    /* separa as duas caixas */
  border-radius: 3px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

/* Forçar cor nos elementos do hero que têm estilos brancos com !important */
#hero h2.titulo-gaia {
    color: #0c2034 !important;
}

#hero p.subtitulo-gaia {
    color: #0c2034 !important;
}

/* Forçar o h2 do banner a não ocupar a linha inteira */
#hero h2.titulo-gaia {
    display: inline-block !important;
    width: auto !important;
    max-width: fit-content !important;
}

#hero p.subtitulo-gaia {
    display: inline-block !important;
    width: auto !important;
    max-width: fit-content !important;
    padding: 6px 14px !important;
    margin: 0 !important;
}

#hero p.subtitulo-gaia span {
    display: inline-block !important;
}

/* Estilo base */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 17px;
    font-weight: 600;

    /* Normal */
    background: rgba(240, 239, 214, 0.25); /* bege com transparência */
    color: #f0efd6; 
    border: 2px solid rgba(240, 239, 214, 0.5);
    
    backdrop-filter: blur(4px);
    border-radius: 50px;
    transition: all 0.35s ease;
    text-decoration: none;
    cursor: pointer;
}

/* Seta */
.btn-hero .arrow {
    display: inline-block;
    transition: transform 0.35s ease, color 0.35s ease;
    font-size: 18px;
    margin-top: 1px;
    color: #f0efd6; /* azul normal */
}

/* HOVER — vira azul escuro */
.btn-hero:hover {
    background: #0c2034;   /* azul sólido */
    color: #f0efd6;        /* bege */
    border-color: #0c2034;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* A seta acompanha */
.btn-hero:hover .arrow {
    transform: translateX(6px);
    color: #f0efd6; /* bege */
}


/* ======================================================
   PAINEL CONTAINER – padrão global para NEW/EDIT
   ====================================================== */
.painel-container {
    max-width: 1200px;     /* LARGO E PREMIUM */
    width: 95%;
    margin: 40px auto;
    background: #ffffff;
    padding: 35px 45px;
    border-radius: 14px;
    border: 1px solid #dfe4e7;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    font-family: Arial, sans-serif;
}

/* Título */
.painel-container h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0a3a1a;
    margin-bottom: 25px;
}

/* Botão voltar */
.painel-back-btn {
    display: inline-block;
    padding: 9px 18px;
    background: #0a3a1a;
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 25px;
}

.painel-back-btn:hover {
    opacity: 0.85;
}

/* Labels */
.painel-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #222;
    font-size: 15px;
}

/* Inputs gerais */
.painel-form input[type="text"],
.painel-form input[type="date"],
.painel-form input[type="file"],
.painel-form textarea,
.painel-form select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #cfd8dc;
    background: #fafafa;
    transition: border-color .25s, background .25s;
    margin-bottom: 20px;
}

/* Focus */
.painel-form input:focus,
.painel-form select:focus,
.painel-form textarea:focus {
    border-color: #0a3a1a;
    background: #fff;
    outline: none;
}

/* Textarea padrão */
.painel-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Botões */
.painel-form button {
    padding: 12px 26px;
    background: #0a3a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
    margin-right: 10px;
}

.painel-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.painel-form .cancelar {
    background: #777 !important;
}

/* Mini preview de imagem */
.painel-thumb {
    width: 120px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Responsivo */
@media (max-width: 768px) {
    .painel-container {
        margin: 20px 10px;
        padding: 25px;
    }

    .painel-container h2 {
        font-size: 24px;
    }
}


/* Remove o padding do header APENAS no painel admin */
body.admin-page {
    padding-top: 2px !important;   /* 🔥 anula o padding do site */
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    box-sizing: border-box;
}


/* Ajuste para não ficar grudado no topo */
.admin-box {
    margin-top: 20px !important;
}

body.posts-page .painel-container {
    max-width: 100% !important;
    width: 100%;
    border-radius: 0;
    padding: 40px 60px;
}

/* Remover limite do formulário */
.painel-form {
    max-width: 100% !important;
    width: 100% !important;
}

/* EVITA QUE CAMPOS ULTRAPASSEM O CARD */
.painel-container * {
    max-width: 100% !important;
    box-sizing: border-box;
}

/* GARANTE QUE INPUTS FIQUEM DENTRO DO CARD */
.painel-form input,
.painel-form select,
.painel-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

/* TinyMCE ajustado ao card */
.tox-tinymce {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Remove qualquer margem lateral do editor */
.tox-editor-container {
    padding: 0 !important;
    margin: 0 !important;
}

/* Corrige imagens do conteúdo do post (TinyMCE) */
.content img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 10px; /* opcional */
    object-fit: cover;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.video-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  margin: 8% auto;
  background: #000;
}

#videoFrame {
  width: 100%;
  height: 450px;
}

.close-video {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.video-btn {
    display: inline-block;
    margin-top: 15px; /* ajuste o valor como quiser */
}

/* GAIA VILLAGE */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
}

/* ============================
   OVERLAY
   ============================ */
.gaia-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* ============================
   MODAL BOX
   ============================ */
.gaia-box {
  position: relative;
  width: 85%;
  max-width: 750px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

/* Botão de fechar */
.close-gaia {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 100;
}

/* Imagem topo */
.gaia-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Conteúdo com scroll */
.gaia-content {
  overflow-y: auto;
  max-height: calc(90vh - 300px);
}

/* Texto */
.gaia-text {
  padding: 25px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Mapa */
.gaia-map a {
  display: inline-block;
  margin-top: 12px;
  font-weight: bold;
  color: #0b6b3c;
  text-decoration: none;
}
.gaia-map a:hover {
  text-decoration: underline;
}

/* ============================
   RESPONSIVO TABLET
   ============================ */
@media (max-width: 1024px) {
  .gaia-box {
    width: 90%;
  }
  .gaia-img {
    height: 260px;
  }
  .gaia-content {
    max-height: calc(90vh - 260px);
  }
}

/* ============================
   RESPONSIVO MOBILE
   ============================ */
@media (max-width: 600px) {
  .gaia-box {
    width: 95%;
    max-height: 95vh;
  }
  .gaia-img {
    height: 220px;
  }
  .gaia-content {
    max-height: calc(95vh - 220px);
  }
  .gaia-text {
    padding: 18px;
    font-size: 15px;
  }
}


.gaia-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0b6b3c, #1ea463);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
  margin-top: 20px;
}

.gaia-map-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

/* Botão Ler Mais nos Cards do Blog */
.btn-readmore {
    display: inline-block;
    width: auto;             
    max-width: fit-content;
    margin-top: 10px;
    padding: 10px 22px;
    background: #004607; /* verde Gaia */
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-readmore:hover {
    background: rgba(0, 70, 7, 0.85);
    color: #fff;
    transform: translateY(-2px);
}

.modal-title {
  font-weight: 600;
  color: #022208;
}

.modal-body h5 {
  margin-top: 20px;
  color: #022208;
  font-weight: 600;
}

#modalComoAjudar .modal-dialog {
  max-width: 600px !important;
  transform: none !important;
  margin-top: 180px !important;
}

#modalComoAjudar .modal-content {
  max-height: 70vh;
  overflow-y: auto;
  border-radius: 10px;
}

.btn-success {
  background: #0a3a1a !important;
  border-color: #0a3a1a !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 10px;
}

.btn-success:hover {
  background: #0c4a22 !important;
  border-color: #0c4a22 !important;
}

/* ALTURA BANNER MOBILE */

@media (max-width: 768px) {
  #hero .content-on-slider {
    padding-top: 140px !important;
  }

  #hero .titulo-gaia,
  #hero .subtitulo-gaia,
  #hero .frase-gaia {
    margin-top: 0 !important;
  }

  #hero .hero-slider {
    height: 100% !important;
  }
}

@media (max-width: 768px) {
  .frase-gaia span {
    font-size: 13px !important;
    padding: 6px 12px !important; /* opcional, deixa mais compacto */
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  #hero p.subtitulo-gaia {
    margin-bottom: 5px !important; /* aumenta o espaço abaixo */
  }
}

/* ---------------------------
   MOBILE MENU - MELHORADO
----------------------------*/

/* FUNDO ESCURECIDO */
.mobile-nav-overly {
  background: rgba(0,0,0,0.6);
  position: fixed;
  inset: 0;
  z-index: 998;
  display: none;
}

.mobile-nav-active .mobile-nav-overly {
  display: block;
}

/* CAIXA DO MENU */
.mobile-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px 1px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-out;
}

/* QUANDO ABRE */
.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}

/* ITENS */
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  color: #1a1a1a !important;
  font-weight: 500;
  border: none !important;
}

/* ATIVO */
.mobile-nav a.active {
  color: #0c2034 !important;
  padding-left: 10px;
  border-left: 4px solid #0c2034;
  font-weight: 600;
}

/* HOVER */
.mobile-nav a:hover {
  color: #0c2034 !important;
  padding-left: 6px;
}

/* BOTÃO X */
.mobile-nav-toggle {
  font-size: 30px;
  cursor: pointer;
  z-index: 1001;
  transition: 0.3s;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff !important;
  position: fixed;
  top: 25px;
  right: 25px;
}

/* Centralização perfeita do menu com logo no meio */
.navmenu > ul {
  display: flex;
  justify-content: center;      /* centraliza tudo */
  align-items: center;          /* alinha verticalmente */
  gap: 25px;                    /* espaçamento igual entre itens */
}

/* Define tamanho do logo e impede que ele empurre os outros itens */
.navmenu .menu-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navmenu .menu-logo img {
  height: 48px;   /* ajuste conforme desejar */
  width: auto;
  display: block;
}

/* MENU DESKTOP — aparece apenas em telas grandes */
#navmenu-desktop {
  display: none;
}

/* MENU MOBILE — aparece apenas no mobile */
#navmenu-mobile {
  display: flex;
}

/* LOGO MOBILE — só mobile */
.logo-mobile {
  display: block;
}

/* LOGO CENTRAL DESKTOP — só desktop */
.menu-logo-center {
  display: none;
}

/* A PARTIR DE 1200px: ATIVA O DESKTOP */
@media (min-width: 1200px) {

  /* Menu desktop aparece */
  #navmenu-desktop {
    display: flex !important;
  }

  /* Logo central aparece */
  .menu-logo-center {
    display: block !important;
  }

  /* Some menu mobile */
  #navmenu-mobile {
    display: none !important;
  }

  /* Some logo mobile */
  .logo-mobile {
    display: none !important;
  }
}

/* quando abre o menu mobile */
.navmenu-mobile.mobile-active ul {
  display: block;
}

.navmenu-mobile ul {
  display: none;
}

/* Logo MOBILE */
.logo-mobile img {
  width: 80px;
  height: auto;
}

/* Logo CENTRAL DESKTOP */
.menu-logo-center img {
  width: 90px;
  height: auto;
}

/* Logo central maior no desktop */
@media (min-width: 1200px) {
  .menu-logo-center img {
    width: 160px;      /* ajuste como quiser (padrão deve ser ~80px) */
    height: auto;
    margin-top: -40px; /* faz o logo descer e vazar para baixo */
    z-index: 10;
    position: relative;
  }
}


.gaia-box .gaia-img {
    width: 100%;
    max-width: 260px;     /* tamanho final desejado */
    height: auto;
    display: block;
    margin: 20px auto;
    object-fit: contain;   /* <- evita cortes */
}

/* Botão fechar do modal Gaia */
.close-gaia-agri {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    color: #444;
    background: #ffffffcc;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Hover elegante */
.close-gaia-agri:hover {
    background: #0a3a1a;     /* verde do Gaia */
    color: #fff;
    transform: scale(1.1);
}

.share-box {
    padding: 20px;
    background: #f5f5f5;
    border-radius: 12px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    margin-right: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    color: #fff !important;
    transition: 0.25s ease;
}

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

/* WhatsApp */
.share-btn.whatsapp {
    background: #25d366;
}
.share-btn.whatsapp:hover {
    background: #1cae54;
}

/* Facebook */
.share-btn.facebook {
    background: #1877f2;
}
.share-btn.facebook:hover {
    background: #0f5bc9;
}


/* Menu desktop ocupa largura total */
#navmenu-desktop {
  width: 100%;
}

#navmenu-desktop ul {
  width: 100%;
  display: flex;
  justify-content: center; /* centraliza todos os itens */
  align-items: center;
  position: relative;
}

.menu-logo-center img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -20px; /* a altura que voce quiser */
  z-index: 10;
  margin: -20px 0px 5px 2px;
}

.menu-logo-center img {
  width: 158px;
  height: auto;
  
}

.menu-logo-center {
    margin: 0 60px; /* respiro dos dois lados da logo */
}

/* Ajustes simples para o mobile */
@media (max-width: 1199px) {

  /* Deixa o wrapper que contém logo + hamburguer alinhado */
  .branding {
    display: flex;
    align-items: center;     /* alinha verticalmente */
    justify-content: space-between; /* logo à esquerda, menu à direita */
    padding: 8px 12px;
    
  }

  /* Diminui a logo no mobile */
  .logo-mobile img {
    width: 80px;   /* ajuste como quiser */
    height: auto;
    margin-left: 20px;
  }

  /* Ajusta o ícone hambúrguer */
  .mobile-nav-toggle {
    font-size: 36px;
    margin-left: auto; /* vai para a direita automaticamente */
    margin-top: -60px;
    
  }
}

.header.hide-on-scroll {
    transform: translateY(-150%); /* empurra o header pra cima */
    transition: transform 0.35s ease;
}

.header {
    transition: transform 0.35s ease;
}

.whatsapp-float {
    position: fixed;
    left: 25px;               /* LADO ESQUERDO */
    bottom: 25px;             /* distância do rodapé */
    width: 62px;
    height: 62px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    z-index: 99999;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: all 0.3s ease;

    /* ✨ ANIMAÇÃO DE PULSAÇÃO */
    animation: whatsappPulse 2s infinite ease-in-out;
}

/* Hover mantém o efeito mas melhora o destaque */
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.15);
    box-shadow: 0 10px 26px rgba(0,0,0,0.28);
    background: #1ebe5d;
}

/* 🔥 Keyframes da pulsação */
@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 18px rgba(37, 211, 102, 0.55);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(37, 211, 102, 0.4);
    }
}

/* Cursor Leaf Follower */
.leaf-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    pointer-events: none; 
    z-index: 999999;       
    top: 0;
    left: 0;
}

.leaf-cursor img {
    width: 100%;
    height: 100%;
}

.leaf-cursor img {
    animation: leafHover 2.8s ease-in-out infinite;
}

/*  Leaf cursor — desativar em mobile e tablet */
@media (max-width: 1024px) {
  .leaf-cursor {
    display: none !important;
  }
}


@keyframes leafHover {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

/* ==============================
   LOGIN ADMIN — AJUSTES FUNCIONAIS
   ============================== */

.admin-login-body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;

  /* centralização */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* evita estouro no mobile */
.admin-login-box {
  max-width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
}

/* pequeno respiro no mobile, sem mudar layout */
@media (max-width: 768px) {
  .admin-login-box {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* =====================================
   LOGIN ADMIN — AJUSTES FINAIS
   ===================================== */

body.admin-login-body {
  /* anula herança do layout principal */
  margin: 0 !important;
  padding: 0 !important;

  /* ocupa a tela inteira */
  min-height: 100vh;
  overflow: hidden;

  /* centralização real */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* evita estouro no mobile */
.admin-login-box {
  max-width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
}

/* ajustes mínimos para telas menores */
@media (max-width: 768px) {
  .admin-login-box {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Logo do login admin */
.admin-login-logo {
  text-align: center;
  margin-bottom: 12px;
}

.admin-login-logo img {
  max-width: 120px;   /* controla o tamanho */
  width: 100%;
  height: auto;
  display: inline-block;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  body.mobile-nav-active .mobile-nav-toggle {
    margin-top: 20px;       /* traz o X para dentro da tela */
    position: fixed;        /* garante que não role */
    top: 0;
    right: 20px;
    z-index: 10001;
  }
}

/* Modal Gaia – refinamento visual */
.gaia-overlay {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
}

.gaia-box {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: modalFadeUp 0.35s ease;
}

.gaia-img {
  width: calc(100% + 40px);
  height: 260px;              /* altura do topo do modal */
  margin: -20px -20px 20px -20px;

  object-fit: cover;          /* 🔥 agora sim */
  display: block;

  border-radius: 20px 20px 0 0;
}


.gaia-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 128, 0, 0.25);
}

@keyframes modalFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Imagem topo do modal Gaia */
.gaia-modal-hero {
  width: calc(100% + 40px);
  height: 260px;

  margin: -20px -20px 20px -20px;

  object-fit: cover;
  display: block;

  border-radius: 20px 20px 0 0;
}

.share-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
  align-items: center;
}

.share-box span {
  font-weight: 600;
  margin-right: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.share-btn.whatsapp {
  background: #25D366;
}

.share-btn.facebook {
  background: #1877F2;
}

/* Mobile */
@media (max-width: 480px) {
  .share-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .share-btn {
    width: 100%;
    justify-content: center;
  }
}


/* BLOG CARDS */

.blog-posts article {
  display: flex;
  flex-direction: column;
  height: 100%;
  
}


.blog-posts .post-img {
  height: 220px;              
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  margin-bottom: 12px;
}

.blog-posts .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;          
  display: block;
}


.blog-posts .post-category,
.blog-posts .title,
.blog-posts .post-excerpt {
  flex-shrink: 0;
}


.blog-posts .post-excerpt {
  flex-grow: 1;
  margin-bottom: 0;
}


.blog-posts .post-meta {
  margin-top: auto;
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-thumb {
  width: 120px;
  max-height: 80px;
  object-fit: cover;
  border-radius: 6px;
  background: #000;
}

/* Imagens da galeria (referência) */
.galeria-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 5px;
}

/* Vídeos da galeria (igual às imagens) */
.galeria-video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 5px;
  background: #000;
}

/* Thumbnail de vídeo */
.galeria-video-thumb {
  width: 100%;
  height: 220px;
  background: #000;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

/* Ícone play antigo */
.galeria-video-thumb .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s;
}

.glightbox-play {
  display: none !important;
}


/* Modal Acervo */
.acervo-modal {
  background: rgba(0, 60, 30, 0.95);
  color: #fff;
  padding-top: 100px; 
}

.acervo-close {
  position: absolute;
  top: 30px;
  right: 30px;
  filter: invert(1);
  z-index: 10;
}

.acervo-card {
  display: block;
  padding: 35px 15px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  height: 100%;
}

.acervo-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-6px);
}

.acervo-card i {
  font-size: 64px;
  margin-bottom: 20px;
}

.acervo-card h3 {
  font-weight: 700;
  color: #fff;
  font-size: 24px;
}

.acervo-card p {
  opacity: 0.85;
}


.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #6c757d;
  line-height: 1.4;
}

.hero-text-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.hero-text-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.hero-text-header h3 {
    margin: 0;
    font-size: 18px;
}

.hero-text-badge {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.hero-text-body {
    display: grid;
    gap: 12px;
}

.hero-text-item label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.hero-text-item p {
    margin: 0;
    background: #f9f9f9;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
}

.hero-text-footer {
    margin-top: 15px;
    text-align: left;
}

.hero-text-item input,
.hero-text-item textarea {
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    background: #fff;
    font-family: inherit;
}

.hero-text-item textarea {
    resize: vertical;
}

/* Botão fixo - Dashboard */
.dashboard-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #0b3d2e; /* verde Gaia */
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: background 0.2s ease, transform 0.2s ease;
}

.dashboard-btn:hover {
    background: #0f5132;
    color: #fff;
    transform: translateY(-1px);
}

/* Galeria Rincão Gaia */
.rincao-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas fixas no desktop */
  gap: 24px; /* mais espaço entre as imagens */
  margin-top: 40px;
  margin-bottom: 60px; /* afasta bem do footer */
}

.rincao-gallery a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.rincao-gallery img {
  width: 100%;
  height: 180px; /* um pouco mais alto para valorizar as fotos */
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 12px;
}

/* Hover elegante */
.rincao-gallery a:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

/* Ícone de zoom */
.rincao-gallery a::after {
  content: "🔍";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rincao-gallery a:hover::after {
  opacity: 1;
}

/* ========================= */
/* RESPONSIVIDADE */
/* ========================= */

/* Tablets */
@media (max-width: 992px) {
  .rincao-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .rincao-gallery img {
    height: 200px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .rincao-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rincao-gallery img {
    height: 220px;
  }
}

/* CTA Google Maps - Rincão Gaia */
.maps-cta {
  text-align: center;
  margin: 80px auto 100px;
  max-width: 600px;
}

.maps-cta-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.maps-cta-icon i {
  font-size: 36px;
  color: #dc3545;
}

.maps-cta-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.maps-cta-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  text-align: center !important;
}

.maps-cta-btn {
  display: inline-block;
  background: #0f5132;
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.maps-cta-btn:hover {
  background: #0c3f27;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  color: #fff;
}

/* Responsivo */
@media (max-width: 576px) {
  .maps-cta-title {
    font-size: 22px;
  }

  .maps-cta-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Botão Ver Mais - Galeria */
.gallery-more {
  margin-top: 10px;
  text-align: center;
}

.gallery-more-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: #0f5132; /* verde Fundação Gaia */
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.gallery-more-btn:hover {
  background-color: #0b3d25;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}


/* Modal Em Breve */
.em-breve-modal {
  position: relative; 
  border-radius: 16px;
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}


.em-breve-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1056;       
  pointer-events: auto;
}

.em-breve-icon {
  font-size: 48px;
  color: #2f6f4e; /* verde institucional */
}

.em-breve-modal h3 {
  font-weight: 700;
}

.em-breve-modal p {
  font-size: 16px;
  line-height: 1.6;
}

/* Sidebar do admin */
.admin-sidebar {
    display: flex;
    flex-direction: column;
}

/* Empurra o footer para o fundo */
.admin-sidebar-footer {
    margin-top: auto;
    padding: 15px 10px 35px;
    font-size: 12px;
    text-align: center;
    color: rgba(255,255,255,0.7);
    
}

/* Link Haniger */
.admin-sidebar-footer a {
    color: #9be3b1; /* verde elegante */
    font-weight: 600;
    text-decoration: none;
}

.admin-sidebar-footer a:hover {
    text-decoration: underline;
}

.leitura-single .texto-conteudo {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.leitura-single img {
  max-height: 480px;
  object-fit: cover;
}

.texto-hero {
  max-height: 480px;
  object-fit: cover;
}

.texto-titulo {
  font-size: 32px;
  font-weight: 700;
  color: #0a3a1a;
  margin: 20px 0 8px;
  text-align: center;
}

.texto-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 24px;
}

.texto-conteudo {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

/* Compartilhar */
.share-box {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-box span {
  font-weight: 600;
  margin-right: 6px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.facebook {
  background: #1877f2;
}

.aviso-reforma {
  background-color: #fff3cd; /* amarelo aviso */
  color: #664d03;
  border-left: 6px solid #ffc107;
  padding: 14px 20px;
  margin: 20px auto;
  font-weight: 600;
  font-size: 16px;
  max-width: 1200px;
  border-radius: 4px;
}

/* ================================
   MODAL ACERVO — PRIORIDADE MÁXIMA
=================================== */

/* Força o modal acima de tudo */
.modal.acervo-modal,
#acervoModal,
.modal.fade.show {
  z-index: 200000 !important;
}

/* Backdrop do modal */
.modal-backdrop {
  z-index: 199999 !important;
}

/* Garante fullscreen real no mobile */
.modal-dialog.modal-fullscreen {
  margin: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100% !important;
}

/* Conteúdo centralizado */
.acervo-modal .modal-content {
  min-height: 100vh;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Scroll interno (não o body) */
.acervo-modal .modal-body {
  overflow-y: auto;
  max-height: calc(100vh - 120px);
  padding: 24px;
}

/* Botão fechar sempre visível */
.acervo-close,
.acervo-modal .btn-close {
  z-index: 200001 !important;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Evita conflito com menu mobile */
body.modal-open {
  overflow: hidden !important;
}

@media (max-width: 768px) {

  /* container geral */
  .acervo-cards,
  .acervo-grid {
    gap: 16px;
    padding: 16px;
  }

  /* card */
  .acervo-card {
    min-height: auto;
    padding: 20px 16px;
    border-radius: 16px;
    background: rgba(10, 60, 35, 0.85);
    backdrop-filter: blur(6px);
  }

  /* ícone */
  .acervo-card svg,
  .acervo-card i {
    font-size: 36px;
    margin-bottom: 8px;
  }

  /* título */
  .acervo-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  /* subtítulo */
  .acervo-card p {
    font-size: 14px;
    opacity: 0.85;
  }
}

/* ===== Moldura para modais Gaia custom ===== */

#modalGaiaVillage .gaia-box,
#modalAgri .gaia-box {
    border: 2px solid #9e9e9e;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
    background: #ffffff;
    padding: 10px;
}

/* ===== Moldura para modal Em Breve ===== */

#modalEmBreve .modal-content {
    border: 2px solid #9e9e9e;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}


/* BANNER RESPONSIVO MOBILE */

@media (max-width: 768px) {

  #hero {
    height: 85vh !important;
  }

  .hero-slider .swiper-slide {
    background-position: center !important;
  }

}

@media (max-width: 768px) {
  .btn-hero {
    padding: 8px 18px !important;
    font-size: 14px !important;
    margin-top: 3px !important;
    margin-bottom: 40px !important;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ICONES REDES SOCIAIS A DIREITA */

.social-float {
  position: fixed;
  top: 70%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* CORES */
.social-btn.whatsapp {
  background: #25D366;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn.youtube {
  background: #ff0000;
}

/* HOVER */
.social-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

/* MOBILE */
@media (max-width: 768px) {
  .social-btn {
    width: 37px;
    height: 37px;
    font-size: 18px;
  }
}

/* estado padrão (desktop = visível) */
.social-float {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* MOBILE começa escondido */
@media (max-width: 768px) {
  .social-float {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
  }

  .social-float.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  .social-float {
    top: 60%; /* antes era 70% */
  }
}

/* ICONES PULSANDO */
@keyframes pulseSoft {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08); 
  }
}

.social-btn {
  animation: pulseSoft 4s ease-in-out infinite;
}

.social-btn:nth-child(1) { animation-delay: 0s; }
.social-btn:nth-child(2) { animation-delay: 0.5s; }
.social-btn:nth-child(3) { animation-delay: 1s; }
.social-btn:nth-child(4) { animation-delay: 1.5s; }

/* SANFONA PÁGINA LUTZ */


.accordion-button {
    background-color: #14551a !important;
    color: #fff !important;
    font-weight: 600;
    border: none;
}

/* Quando está aberta */
.accordion-button:not(.collapsed) {
    background-color: #14551a !important;
    color: #fff !important;
    box-shadow: none;
}

/* Remove foco azul */
.accordion-button:focus {
    box-shadow: none !important;
    border-color: #14551a !important;
}

/* Ícone branco */
.accordion-button::after {
    filter: brightness(0) invert(1);
}

/* Corpo */
.accordion-body {
    background: #f2f2f2;
}

/* Popup de últimos eventos  */

.popup-eventos-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .popup-eventos-box {
    background: #fff;
    max-width: 760px;
    width: 100%;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    animation: popupFadeIn .3s ease;
  }

  @keyframes popupFadeIn {
    from {
      opacity: 0;
      transform: scale(.94);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .popup-eventos-fechar {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 24px;
    line-height: 38px;
    cursor: pointer;
    z-index: 5;
  }

  .popup-eventos-slider {
    position: relative;
  }

  .popup-evento-slide {
    display: none;
  }

  .popup-evento-slide.active {
    display: block;
  }

  .popup-evento-img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    background: #e9e9e9;
  }

  .popup-evento-conteudo {
    padding: 28px;
    text-align: center;
  }

  .popup-evento-data {
    color: #0a3a1a;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 15px;
  }

  .popup-evento-titulo {
    font-size: 28px;
    font-weight: 800;
    color: #0a3a1a;
    margin-bottom: 12px;
  }

  .popup-evento-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .popup-evento-btn {
    display: inline-block;
    background: #0a3a1a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
  }

  .popup-evento-btn:hover {
    background: #145c2c;
    color: #fff;
  }

  .popup-eventos-nav {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 4;
  }

  .popup-eventos-prev {
    left: 14px;
  }

  .popup-eventos-next {
    right: 14px;
  }

  .popup-eventos-indicadores {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-bottom: 18px;
  }

  .popup-eventos-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
  }

  .popup-eventos-dot.active {
    background: #0a3a1a;
  }

 @media (max-width: 768px) {
  .popup-eventos-box {
    max-width: 95%;
  }

  .popup-evento-img {
    height: 170px;
  }

  .popup-evento-conteudo {
    padding: 16px 16px;
  }

  .popup-evento-data {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .popup-evento-titulo {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .popup-evento-desc {
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 14px;
  }

  .popup-evento-btn {
    padding: 9px 18px;
    font-size: 14px;
  }

  .popup-eventos-nav {
    top: 30%;
  }

  .popup-eventos-indicadores {
    padding-bottom: 12px;
  }
}

/*  Página Projeto Gaia Village  */

.gaia-village-page .gaia-text {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.gaia-village-page .gaia-text h2 {
  color: #0a3a1a;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 28px;
  text-align: center;
}

.gaia-village-page .gaia-text p {
  color: #444;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
  text-align: justify;
}

.gaia-map {
  margin-top: 30px;
  text-align: center;
}

.gaia-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a3a1a;
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.gaia-map-btn:hover {
  background: #145c2c;
  color: #fff;
}

.gaia-gallery {
  margin-top: 55px;
}

.gaia-gallery .section-title {
  text-align: center;
}

.gaia-gallery-item {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  background: #fff;
}

.gaia-gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

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

@media (max-width: 768px) {
  .gaia-village-page .gaia-text h2 {
    font-size: 26px;
  }

  .gaia-village-page .gaia-text p {
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
  }

  .gaia-gallery-item img {
    height: 220px;
  }
}

/*  Parceiros */

/* Parceiros */

.parceiros {
  padding: 60px 0 120px 0;
  background: #fff;
}

.parceiros .section-title {
  padding-bottom: 30px;
  margin-bottom: 0;
}

.parceiros .section-title h2 {
  margin-bottom: 12px;
}

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

.parceiros-logos {
  margin-top: 0;
}

.parceiro-card {
  background: #f0f0fb;
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  transition: all 0.3s ease;
}

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

.parceiro-logo {
  max-height: 110px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.parceiro-card:hover .parceiro-logo {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 576px) {
  .parceiros {
    padding: 45px 0 80px 0;
  }

  .parceiros .section-title {
    padding-bottom: 20px;
  }

  .parceiro-card {
    height: 140px;
    padding: 18px;
  }

  .parceiro-logo {
    max-height: 85px;
  }
}

/* Página Rincão Gaia */
.service-details .rincao-gaia-content {
  max-width: 980px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.service-details .rincao-gaia-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: #2f4a4f;
  margin-top: 45px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
}

.service-details .rincao-gaia-content p {
  margin-bottom: 18px;
}

.service-details .rincao-gaia-content ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 20px 0 30px 0 !important;
}

.service-details .rincao-gaia-content ul li {
  display: block !important;
  position: relative;
  background: #f8f9f6;
  border-left: 4px solid #7c8f3a;
  padding: 12px 16px 12px 40px !important;
  margin-bottom: 10px !important;
  border-radius: 8px;
}

.service-details .rincao-gaia-content ul li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  top: 12px;
  color: #6b7f2a;
  font-weight: 700;
}

/*  Página Rincão Gaia  */


.service-details .rincao-gaia-content.simples {
  max-width: 950px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.service-details .rincao-gaia-content.simples h3 {
  color: #2f4a4f;
  font-size: 28px;
  font-weight: 700;
  margin-top: 42px;
  margin-bottom: 16px;
}

.service-details .rincao-gaia-content.simples p {
  margin-bottom: 18px;
}

.service-details .rincao-gaia-content.simples ul {
  list-style: disc;
  padding-left: 24px;
  margin: 15px 0 28px 0;
}

.service-details .rincao-gaia-content.simples ul li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.service-details .rincao-gaia-content.simples a {
  color: #5f7f22;
  font-weight: 700;
  text-decoration: none;
  margin-left: 5px;
}

.service-details .rincao-gaia-content.simples a:hover {
  text-decoration: underline;
}

.service-details .rincao-gaia-content.simples small {
  color: #666;
}

.link-destaque {
  color: #14551a;
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.link-destaque:hover {
  color: #0d3d12;
}

.link-destaque i {
  font-size: 13px;
  margin-left: 3px;
}

.centenario-content p {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 24px;
}

.centenario-content a {
    color: #14551a;
    font-weight: 700;
    text-decoration: none;
}

.centenario-content a:hover {
    color: #0d3b12;
    text-decoration: underline;
}

.centenario-content .centenario-data {
    color: #14551a;
    font-weight: 700;
}

.centenario-content .centenario-evento {
    margin-top: 32px;
}

.imagem-equipe-modal {
    width: 100%;
    text-align: center;
    margin: 20px 0 24px 0;
}

.imagem-equipe-modal img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* BOTÃO ATIVAR/DESATIVAR POP-UP */

.admin-popup-form {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.admin-popup-toggle {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    padding: 14px 16px;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.admin-popup-toggle:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.admin-popup-toggle .popup-status-circle {
    display: inline-block;
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    border-radius: 50%;
}

.admin-popup-toggle.popup-on {
    color: #c8f7d4;
}

.admin-popup-toggle.popup-on .popup-status-circle {
    background-color: #39d353;
    box-shadow: 0 0 8px rgba(57, 211, 83, 0.65);
}

.admin-popup-toggle.popup-off {
    color: #ffd0d0;
}

.admin-popup-toggle.popup-off .popup-status-circle {
    background-color: #ff4d4d;
    box-shadow: 0 0 8px rgba(255, 77, 77, 0.55);
}