
:root {
  --default-font: "Leelawadee",  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: "Lato",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}


:root {
  --background-color: #e6e6fa;
  /* Background color for the entire website, including individual sections */
  --default-color: #073839;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #073839;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #833082;
  /* 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: #eaeff5;
  /* The default color of the main navmenu links */
  --nav-hover-color: #f3993e;
  /* 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: #555555;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #70b9b0;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


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

.dark-background {
  --background-color: #30ac9d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #44cbbb;
  --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);
}

/* 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: #4b009a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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;
  }

/* ===== ÍCONES DO MENU ===== */
#header .navmenu > ul > li.nav-item {          
  margin-left: 10px !important;
}

#header .navmenu > ul > li > a.nav-icon {      
  padding: 0 6px !important;
  line-height: 1 !important;
  display: inline-flex;
  align-items: center;
  color: #eaeff5 !important;                       
}

#header .navmenu > ul > li > a.nav-icon i {     
  font-size: 20px !important;                   
  vertical-align: middle;
  transition: color .2s ease;
}

#header .navmenu > ul > li > a.nav-icon:hover i {
  color: #f3993e !important;                    
}
/* Desktop: afasta o bloco de ícones do último link de texto */
@media (min-width: 1200px) {
  #header .navmenu > ul > li:not(.nav-item) + li.nav-item {
    margin-left: 26px !important; /* ajuste o valor */
  }
}

/* FIM ICONES */

  .navmenu a,
.navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
.navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
    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;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a,
.navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
.navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
.navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
.navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all .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: #4b0799;
  font-size: 18px;
  padding: 40px 0 0 0;
  position: relative;
}

.footer .icon {
  color: #f3b73f;
  margin-right: 15px;
  font-size: 26px;
  line-height: 0;
}

.footer h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.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(--accent-color);
  border-color: var(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

.page-title .heading p {
  font-size: 24px;
  font-weight: 500;
  font-family: "Lato", Arial, sans-serif !important;
  letter-spacing: 1px;
}

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

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  font-family: "Lato", Arial, sans-serif !important;
}

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

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

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

@media (max-width: 1199px) {
  section,
.section {
    scroll-margin-top: 66px;
  }
}

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

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

.section-title p {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: "Lato", Arial, sans-serif !important;
}

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

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

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

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

.hero h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.hero p {
  font-family: 'Marcellus', serif;
  margin: 10px 0 0 0;
  font-size: 48px;
  color: var(--heading-color);
   font-style: italic;
}

.verse-quote {
  padding-left: 15px;
  font-size: 28px;
  font-style: italic;
  color: #fff; /* texto branco no banner */
}

.verse-quote footer {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--contrast-color);
}


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

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color) transparent 80%;
  border-color: var(--contrast-color);
  
  
}

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

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

.about .content .fst-italic {
  color: #073839;
  font-size: 1.2rem;
  
}
#sobre .fst-italic { 
  font-style: normal !important;
}
.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
  font-size: 1.2rem;
  font-weight: 700;
  
}

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

.about .content p:last-child {
  margin-bottom: 0;
  color: #073839;
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

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

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card-item {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  padding: 20px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
  border: solid 1px var(--accent-color);
}

.cards .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 32px;
  font-weight: 700;
}

.cards .card-item h4 {
  font-size: 26px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards .card-item h4 a {
  color: var(--heading-color);
}

.cards .card-item p {
  font-size: 20px;
  color: #073839;
  margin: 0;
  padding: 0;
}

.cards .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.cards .card-item:hover span,
.cards .card-item:hover h4 a,
.cards .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  padding-top: 20px;
}

.services .service-item .icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  z-index: 2;
  position: relative;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 24px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

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

.services .service-item .description {
  font-size: 18px;
}

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

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

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: '';
  background: color-mix(in srgb, var(--nav-dropdown-color), transparent 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.call-to-action h3 {
  font-size: 38px;
  font-weight: 700;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.call-to-action p {
  color: var(--default-color);
  font-size: 22px;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.call-to-action .cta-btn {
  background: color-mix(in srgb, var(--accent-color), transparent 30%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  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 {
  color: var(--contrast-color);
  background: var(--accent-color) transparent 80%;
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px 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;
  margin-bottom: 5px;
  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 {
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

.pricing .pricing-item h4 {
  color: var(--accent-color);
  font-size: 42px;
  font-family: var(--default-font);
  font-weight: 500;
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  text-decoration: line-through;
}

.pricing .pricing-item .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .pricing-item .btn-buy {
  color: var(--accent-color);
  background-color: transparent;
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

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

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

.pricing .recommended .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 50px;
}

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

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .team .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.team .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team .team-member:hover {
  transform: translateY(-10px);
}

.team .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .team .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

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

.team .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .team-member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .team .team-member span::after {
    left: calc(50% - 25px);
  }
}

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

.team .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .team .team-member .social {
    justify-content: center;
  }
}

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

.team .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

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

.team .team-member .social a:hover i {
  color: var(--contrast-color);
}

.team .team-member .social a + a {
  margin-left: 8px;
}

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

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

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

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 20px;
  
  font-family: "Lato", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  
  
}

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

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

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

.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: 4px;
  font-size: 20px;
  font-family: "Lato", Arial, sans-serif;
  
  letter-spacing: 2px;
}

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

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

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

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

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

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# 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;
  font-size: 22px;
  font-family: "Lato", Arial, sans-serif !important;
  letter-spacing: 1px;
}

.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: 28px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 24px;
  font-weight: 700;
}

.service-details p {
  font-size: 22px;
  font-family: "Lato", Arial, sans-serif !important;
  letter-spacing: 2px;
}

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

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-family: "Lato", Arial, sans-serif !important;
}

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

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

/* Bolinha pequena 
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2147483647;
} */

/* Bolinha grande 
.cursor-outline {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2147483646;
} */

/* === Hero Carousel === */
#hero { position: relative; }

#hero .carousel-item{
  height: 80vh;
  min-height: 520px;
  position: relative;
}

#hero .hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



#hero .container{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

#hero .btn-get-started{
  padding: .9rem 1.6rem;
  font-weight: 600;
}


/* === FIXES HERO/CAROUSEL === */

/* 1) Tira paddings/margens do bloco do hero */
#hero.hero.section {
  padding: 0 !important;
  margin: 0 !important;
}

/* 2) Remove qualquer overlay/gradiente do tema no hero */

#hero.dark-background,
#hero.hero.section.dark-background {
  background: transparent !important;
}
#hero::before,
#hero::after {
  content: none !important;
  display: none !important;
}
  

/* 3) Garante que o carrossel ocupe a largura/altura totais do hero */
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item {
  width: 100%;
  height: 80vh;              /* altura do banner */
  min-height: 520px;
  position: relative;
}

/* 4) A imagem de fundo cobre tudo */
#hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 5) Nosso overlay (o que você quer manter) */
#hero .hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 105, 112, .0); /* pode reduzir para .35 se o texto estiver muito claro */
}

/* 6) Conteúdo centralizado por cima da imagem */
#hero .container{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* (opcional) Centraliza os indicadores no rodapé do slide */
#hero .carousel-indicators {
  bottom: 18px;
}

/* Camadas do hero: imagem (0) < overlay (1) < texto/botões (2) < setas/bolinhas (3) */
#hero .carousel-item { position: relative; }

#hero .hero-bg { 
  z-index: 0; 
}

#hero .hero-overlay{
  z-index: 1;
  pointer-events: none; /* não bloqueia cliques no botão */
}

#hero .container{
  position: relative;
  z-index: 2;           /* texto/botões acima do overlay */
}

#hero .carousel-control-prev,
#hero .carousel-control-next,
#hero .carousel-indicators{
  z-index: 3;           /* controles por cima de tudo */
}

/* Se o tema tiver um véu via ::before/::after, mantém, mas lá no fundo */
#hero::before,
#hero::after{
  z-index: 0 !important;
}

/* Animação pulsante */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


.goldDetail {
    color: #f3b73f;
}

/* Mantém proporção e viabiliza posicionamento em % */
.hero-steps { position: relative; aspect-ratio: 1366 / 520; } /* ajuste p/ seu banner */
.hero-steps .hero-img { object-fit: cover; width: 100%; height: 100%; }

/* Container dos steps */
.steps { position: absolute; inset: 0;  z-index: 4; pointer-events: none;

     /* >>> OFFSET GLOBAL <<< */
  --offset-y: 12%;   /* + desce | - sobe */
  --offset-x: 2%;   /* opcional: + direita | - esquerda */
}

/* Pontos clicáveis (bolinhas) */
.step {
  --size: 22px;
  position: absolute;

  /* usa os offsets, com fallback 0% */
  top:  calc(var(--top)  + var(--offset-y, 0%));
  left: calc(var(--left) + var(--offset-x, 0%));

  transform: translate(-50%, -50%);
  width: var(--size); height: var(--size);
  border-radius: 50%;
  background: #4b009a;
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
  pointer-events: auto;
  outline: none;
}

/* Animação de “pulsar” sutil */
.step::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(252,188,26,.55);
  opacity: .8;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity:.8 }
  70% { transform: scale(1.35); opacity:0 }
  100% { transform: scale(1.35); opacity:0 }
}

/* Rótulo (tooltip) acima do degrau */
.step::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  white-space: nowrap;
  font: 600 13px/1.2 "Poppins", system-ui, sans-serif;
  color: #fff;
  background: rgba(34, 0, 68, .55);    /* roxo com transparência p/ combinar com sua marca */
  padding: 12px 12px;
  border-radius: 10px;
  backdrop-filter: blur(2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  
  pointer-events: auto;  /* permite clique no balão */
  cursor: pointer;
}

/* Linha ligando a bolinha ao rótulo (opcional) */
.step:hover::after, .step:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* Acessibilidade/hover */
.step:hover, .step:focus-visible {
  box-shadow: 0 0 0 4px rgba(252,188,26,.25), 0 6px 16px rgba(0,0,0,.35);
}

/* Responsivo: torna os rótulos sempre visíveis em telas grandes */
@media (min-width: 992px) {
  .step::after { opacity: .95; }
}

/* Mobile: se ficar poluído, mostra só bolinhas e coloca uma lista abaixo */
@media (max-width: 576px) {
  .step::after { display: none; }
}

/* ==== Versículo (versão final) ==== */
#versiculo.verse-section{
  padding: 2px 0 2px;                 /* menos espaço abaixo */
  background: var(--background-color);
}

.verse-box{
  max-width: 880px;
  margin: 0 auto;
  padding: 2px 2px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  text-align: center;
}

.verse-box i{
  display: inline-block;
  margin: 0 auto 6px;
  font-size: 36px;
  color: var(--accent-color);
  opacity: .75;
}

.verse-box blockquote{
  margin: 0;
  font-family: 'Marcellus', serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.45;
  color: var(--heading-color);
  font-style: italic;
  quotes: "“" "”" "‘" "’";
}

.verse-box blockquote p{
  margin: 0 auto;
  max-width: 760px;
}

.verse-box blockquote p::before{ content: open-quote;  margin-right: .05em; color: var(--accent-color); }
.verse-box blockquote p::after { content: close-quote; margin-left:  .05em; color: var(--accent-color); }

.verse-box figcaption{
  margin-top: 8px;
  font-weight: 600;
  color: var(--accent-color);
  opacity: .9;
  letter-spacing: .2px;
  font-size: 22px;
}

/* opção “flat” (sem cartão) */
.verse-section.is-flat .verse-box{
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* aproxima a seção ‘Sobre’ um pouco */
#sobre.about.section { padding-top: 10px; }


/* divisor simples entre seções */
.section-hr{
  border: 0;
  height: 1px;
  width: min(900px, 92%);
  margin: 18px auto 28px;
  background: color-mix(in srgb, var(--heading-color), transparent 80%);
  opacity: .9;
}

/* WhatsApp – verde da marca */
#header .navmenu > ul > li > a.nav-icon i.bi-whatsapp {
  color: #25D366 !important;              /* cor padrão */
}
#header .navmenu > ul > li > a.nav-icon:hover i.bi-whatsapp {
  color: #1ebe57 !important;              /* leve realce no hover */
}

/* Instagram – degradê da marca */
#header .navmenu > ul > li > a.nav-icon i.bi-instagram {
  /* fallback se o degradê não for suportado */
  color: #E4405F !important;

  /* degradê “real” aplicado ao glifo */
  background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;   /* Safari/Chrome */
}
#header .navmenu > ul > li > a.nav-icon:hover i.bi-instagram {
  filter: brightness(1.08);               /* leve destaque no hover */
}

/* === Altura do banner (hero) === */
:root{
  --hero-altura-desktop: 90vh;   /* 90% da altura da tela */
  --hero-altura-mobile: 70vh;    /* ajuste para celulares */
}

#hero{
  min-height: var(--hero-altura-desktop);
}

/* Se algum dia usar carousel, mantém coerente */
#hero .carousel-item{
  height: var(--hero-altura-desktop);
}

/* Mobile: não deixar gigante */
@media (max-width: 768px){
  #hero{
    min-height: var(--hero-altura-mobile);
  }
  #hero .carousel-item{
    height: var(--hero-altura-mobile);
  }
}

.contact-info i {
  font-size: 22px;   /* aumenta o tamanho do ícone */
  margin-right: 8px; /* espaço entre ícone e texto */
  color: #fff;   
  vertical-align: middle; /* alinha melhor com o texto */
}


/* CSS BLOG */

/* ========== BLOG BASE ========== */
.blog-container{
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}

.blog-title{
  font: 700 43px/1.25 "Leelawadee", sans-serif;
  margin: -20px 0 30px 0;
  color: #1f1f1f;
  font-family: var(--heading-font);
  text-align: center;
}

/* ========== GRID 1/2/3 COLUNAS ========== */
.blog-grid{
  display: grid;
  grid-template-columns: 1fr;      /* mobile */
  gap: 28px;
}
@media (min-width: 768px){
  .blog-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1200px){
  .blog-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}

/* ========== CARD ========== */
.blog-card{
  background: #fff;
  border: 1px solid rgba(90,13,173,.09);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.blog-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  border-color: rgba(90,13,173,.16);
}

/* estrutura interna p/ altura igual */
.blog-card .card-inner{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 22px 20px;
}

/* topo: título + data */
.card-header{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.card-title{
  font: 700 18px/1.3 "Lato", sans-serif;
  margin: 0;
}
.card-title a{
  color: #1f1f1f;
  text-decoration: none;
}
.card-title a:hover{ color: #5a0dad; }

.card-date{
  color: #6f6f6f;
  font: 500 12.5px/1 "Leelawadee", sans-serif;
  white-space: nowrap;
}

/* excerpt truncado em 3 linhas (altura uniforme) */
.card-excerpt{
  color: #343434;
  margin: 8px 0 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1em * 1.55 * 3);
}

/* footer gruda embaixo */
.card-footer{
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
}

/* botão */


/* ========== POST ÚNICO (post.php) ========== */
.post-hero{
  max-width: 920px;
  margin: 10px auto 20px;
  padding: 0 18px;
}
.post-title-lg{
  font: 700 2rem/1.25 "Lato", sans-serif;
  color: #222;
  margin: 6px 0 6px;
}
.post-meta-lg{
  font-size: 0.9rem;
  color: #737373;
  margin-bottom: 18px;
}

.post-content h2,
.post-content h3{
  margin: 22px 0 10px;
  line-height: 1.3;
  font-weight: 600;
}
.post-content blockquote{
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 4px solid #f0a500;
  background: #faf7ea;
  border-radius: 10px;
  color: #4a3f1e;
  font-style: italic;
}
.btn-back{
  font-size: 17px;
  display: inline-block;
  padding: 9px 16px;
  border-radius: 10px;
  border: 2px solid #5a0dad;
  color: #5a0dad;
  text-decoration: none;
  font-weight: 600;
  transition: .15s ease;
}
.btn-back:hover{
  background: #5a0dad;
  color: #fff;
}


/* POST */

/* POST ÚNICO – HERO + CARD */

.post-hero{
  background: #fff;
  padding: 0px 0 8px;
}

.post-hero .post-title-lg{
  max-width: 920px;
  margin: 0 auto 6px;
  padding: 0 18px;
  font: 800 2.2rem/1.22 "Leelawadee", sans-serif;
  color: #1f1f1f;
  letter-spacing: .2px;
}

/* linha de acento debaixo do título */
.post-hero .post-title-lg::after{
  content:"";
  display:block;
  height:4px;
  width: 86px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg,#5a0dad 0%,#8b43ff 60%,#d3b3ff 100%);
  opacity:.9;
}

.post-meta-lg{
  max-width: 920px;
  margin: 10px auto 22px;
  padding: 0 18px;
  color: #6f6f6f;
  font: 500 .95rem/1 "Lato", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* pontinho roxo antes da data */
.post-meta-lg::before{
  content:"";
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #aa85ff, #5a0dad 65%);
  box-shadow: 0 0 0 3px #efe7ff;
  display:inline-block;
}

/* Card do corpo do post */
.post-content{
  max-width: 920px;
  margin: 0 auto 28px;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid rgba(90,13,173,.10);
  border-radius: 16px;
  box-shadow:
    0 16px 36px rgba(13, 2, 45, .08),
    0 1px 0 rgba(90,13,173,.05) inset;
  color: #222;
  font: 400 1.5rem/1.75 "Lato", sans-serif;
}

/* tipografia interna */
.post-content p{ margin: 0 0 16px; }
.post-content h2{ font: 700 1.6rem/1.25 "Leelawadee",sans-serif; margin: 22px 0 10px; }
.post-content h3{ font: 700 1.3rem/1.25 "Leelawadee",sans-serif; margin: 18px 0 8px; }

.post-content img{
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 18px 0;
  display:block;
}

.post-content ul,
.post-content ol{
  padding-left: 22px;
  margin: 12px 0 18px;
}
.post-content li{ margin-bottom: 6px; }

.post-content a{
  color:#5a0dad;
  text-decoration: underline;
}
.post-content a:hover{
  color:#3b038e;
  text-decoration: none;
}

/* citação */
.post-content blockquote{
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 4px solid #f0a500;
  background: #faf7ea;
  border-radius: 10px;
  color: #4a3f1e;
  font-style: italic;
}

/* tabelas e códigos, se usar */
.post-content table{
  width:100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
  font-size: .98rem;
}
.post-content table th,
.post-content table td{
  border: 1px solid #e9e9ee;
  padding: 10px;
}
.post-content pre,
.post-content code{
  background: #f6f4ff;
  border: 1px solid #eadfff;
  border-radius: 8px;
  color: #3e2d6b;
}
.post-content pre{
  padding: 12px 14px;
  overflow: auto;
}

/* Ações / botão voltar */
.post-actions{
  max-width: 920px;
  margin: 0 auto 52px;
  padding: 0 18px;
}

.btn-back{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 10px;
  border: 2px solid #5a0dad;
  color: #5a0dad;
  font: 700 18px/1 "Lato", sans-serif;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s, transform .12s;
}
.btn-back:hover{
  background:#5a0dad;
  color:#fff;
  border-color:#5a0dad;
  transform: translateY(-1px);
}


.card-thumb {
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  max-height: 180px;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* imagem do card */
.card-thumb {
  width: 100%;
  height: 180px;              /* altura fixa */
  overflow: hidden;           /* corta o excesso */
  border-radius: 12px 12px 0 0; /* arredonda só em cima */
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* cobre o espaço sem distorcer */
  display: block;
}

/* Card com imagem no topo e botão sempre no rodapé */
.blog-card{
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;                 /* imagem herda o arredondado */
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

/* Thumb no topo */
.card-thumb{
  width: 100%;
  aspect-ratio: 16/9;               /* altura consistente (troque se quiser) */
  overflow: hidden;
  background: #f4f5f8;              /* cor de fundo enquanto carrega */
}

.card-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;                 /* preenche mantendo o recorte bonito */
  display: block;
}

/* Conteúdo do card */
.card-inner{
  flex: 1;                           /* ocupa o que sobrar de altura */
  display: flex;
  flex-direction: column;            /* empilha título, excerpt e footer */
  padding: 16px;
}

.card-header{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.card-title{
  font: 700 22px/1.3 "Lato", sans-serif;
  margin: 0;
}

.card-title a{
  color: #1f1f1f;
  text-decoration: none;
}

.card-title a:hover{
  color: #5a0dad;
}

.card-date{
  color: #6f6f6f;
  font: 500 14.5px/1 "Leelawadee", sans-serif;
  white-space: nowrap;
}

.card-excerpt{
  color: #3a3a3a;
  margin: 6px 0 14px;
  line-height: 1.55;
}

/* Rodapé do card (botão) */
.card-footer{
  margin-top: auto;                  /* empurra o botão para o final do card */
  display: flex;
  justify-content: flex-start;
}

.card-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 2px solid #5a0dad;
  color: #5a0dad;
  font: 700 18px/1 "Leelawadee", sans-serif;
  letter-spacing: .2px;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
}

.card-btn:hover{
  background: #5a0dad;
  color: #fff;
  border-color: #5a0dad;
  transform: translateY(-1px);
}

/* Excerpt dos cards do blog */
.blog-card .card-excerpt{
  font-size: 20px;        
  line-height: 1.6;       
  color: #3a3a3a;

  /* mantém o “3 linhas” alinhado ao novo tamanho */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1em * 1.6 * 3);  /* 3 linhas com line-height 1.6 */
  margin: 6px 0 14px;
}

/* 
   STEPS – MOBILE STACKED VIEW
   (não altera desktop)
    */
@media (max-width: 768px){
  /* mantém os steps dentro do banner e puxa a lista pra parte de baixo */
  .steps{
    position: absolute; inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    gap: 10px;
    z-index: 4;
    pointer-events: none; /* o clique vai ficar nos <a> */
  }

  /* cada <a.step> deixa de ser “bolinha absoluta” e vira pílula de largura total */
  .step{
    position: static;              
    transform: none;
    width: 100%;
    height: auto;
    margin: 0;
    background: transparent;       
    border: 0;
    box-shadow: none;
    pointer-events: auto;          
  }

  /* sem bolinha mobile */
  .step::before{ display: none; }

  /* o rótulo vira o próprio botão(usa o data-label como texto) */
  .step::after{
    content: attr(data-label);
    position: static;              
    transform: none;
    display: block;
    white-space: normal;
    text-align: center;

    font: 600 14px/1.2 "Poppins", system-ui, sans-serif;
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(75, 0, 154, 0.95);  
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    opacity: 1;                   
  }
}

/* CENTRALIZA OS STEPS NO MEIO DO BANNER  MOBILE */
@media (max-width: 768px){
  .steps{
    justify-content: center;   
    align-items: center;       
  }

  /* opcional: limitar largura das pílulas e centralizar melhor */
  .step::after{
    width: min(92%, 560px);
    margin: 0 auto;
  }
}


@media (max-width: 768px){
  
  .step,
  .step:hover,
  .step:focus,
  .step:active,
  .step:focus-visible{
    transform: none !important;
    outline: none;
  }

  
  .step::after,
  .step:hover::after,
  .step:focus::after,
  .step:active::after,
  .step:focus-visible::after{
    transform: none !important;
    opacity: 1 !important;      
    transition: none !important; 
  }

  
  .step { -webkit-tap-highlight-color: transparent; }
}

/*estilo "contador antigo" */
.visit-counter{
  display:flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 0; font-family: "Lato", Arial, sans-serif;
}

.vc-label{ font-weight:700; color:#eaeff5; opacity:.9; }
.vc-sep{ color:#eaeff5; opacity:.5; }

.odometer{
  display:inline-flex; gap:2px; padding:4px; border-radius:4px;
  background:#2b2b2b;             
}

.odometer .od-digit{
  display:inline-flex; align-items:center; justify-content:center;
  width:22px; height:24px; border-radius:2px;

  /* plaquinha branca com leve relevo */
  background: linear-gradient(#ffffff, #f2f2f2);
  border:1px solid #bfbfbf;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -1px 0 rgba(0,0,0,.08);

  font: 700 16px/1 "Roboto Mono", ui-monospace, "Courier New", monospace;
  color:#111; letter-spacing:.5px;
}

/* versão menor (paraHoje) */
.odometer.od-small .od-digit{
  width:18px; height:20px; font-size:14px;
}

/* responsivo: deixa tudo um pouco menor em telas estreitas */
@media (max-width: 480px){
  .visit-counter{ gap:8px; padding:10px 0; }
  .odometer .od-digit{ width:19px; height:22px; font-size:15px; }
  .odometer.od-small .od-digit{ width:16px; height:18px; font-size:13px; }
  .vc-label{ font-size:14px; }
}

/* contador no rodapé (coluna Visitas) */
.footer .visit-counter.visit-footer{
  justify-content: flex-start;
  gap: 8px;
  padding: 6px 0;
}
.footer .visit-counter .vc-label,
.footer .visit-counter .vc-sep{ 
  color:#fff; 
  opacity:.85; 
}
.footer .visit-counter .odometer{ 
  background:#8a4e8b; /* faixa escura que combina com o roxo */
}
.footer .visit-counter .odometer .od-digit{
  width: 20px; height: 22px; font-size: 15px;
}
.footer .visit-counter .odometer.od-small .od-digit{
  width: 18px; height: 20px; font-size: 14px;
}


/* Centraliza título e contador de visitas */
.footer .visits-box {
  display: flex;
  flex-direction: column;
  align-items: center;   
  text-align: center;    
}

.footer .visits-box .visit-counter {
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 6px;               
}


@media (max-width: 576px){
  /* centraliza a coluna toda (ícone + texto) */
  .footer .row .col-md-6.d-flex:last-child{
    justify-content: center;      
    text-align: center;            
  }

  /* título "Visitas" maior */
  .footer .row .col-md-6.d-flex:last-child h4{
    font-size: 22px;               /* ajuste fino aqui */
    margin-bottom: 10px;
    width: 100%;
  }

  
  .footer .row .col-md-6.d-flex:last-child .vc-label{
    font-size: 22px;               
    text-align: center;
    width: auto;                    
  }

  
  .footer .row .col-md-6.d-flex:last-child .visit-counter{
    justify-content: center;
  }

  
  .footer .row .col-md-6.d-flex:last-child .visit-counter .vc-row{
    display: flex;
    align-items: center;
    gap: 6px;
  }
}

  .footer .row .col-md-6.d-flex:last-child .odometer .od-digit{
    width: 22px; height: 24px; font-size: 16px;
  }


/* DENTRO DO POST*/


.post-content figure{ margin:18px 0; }
.post-content figure img{ display:block; margin:0 auto; }
.post-content figcaption{
  margin-top:8px;
  font: 600 0.95rem/1.35 "Lato", sans-serif;
  color:#6b6b6b;
  text-align:center;
}


.post-content .aligncenter{ display:block; margin:14px auto; text-align:center; }
.post-content .alignleft,
.post-content .alignright{ display:block; margin:14px 0; }

@media (min-width:768px){
  .post-content .alignleft{
    float:left;
    margin:6px 18px 12px 0;
    max-width:48%;
  }
  .post-content .alignright{
    float:right;
    margin:6px 0 12px 18px;
    max-width:48%;
  }
}


.post-content .size-thumbnail{ max-width:150px; }
.post-content .size-medium   { max-width:300px; }
.post-content .size-large    { max-width:1024px; }
.post-content .size-full     { max-width:100%; }

/* vídeos responsivos ( em <div class="embed">) */
.post-content .embed{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:#000;
  border-radius:12px;
  overflow:hidden;
  margin:18px 0;
}
.post-content .embed iframe,
.post-content .embed video{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}


.post-content::after{ content:""; display:block; clear:both; }

/* IMAGEM DESTACAA (capa do post) */
.post-cover img {
  width: 100%;              
  height: auto;             
  border-radius: 14px;      
  margin: 0 auto 28px;      
  display: block;           
  object-fit: cover;        
  max-height: 420px;        
}

/* IMAGENS DENTRO */
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 18px auto;        
  display: block;
}

/*  RESPONSIVO imagem destacada no mobil */
@media (max-width: 768px) {
  .post-cover img {
    max-height: 260px;   
    object-fit: cover;   
    border-radius: 10px; 
  }
}

/* === Ajuste do padding apenas da seção "Missão, Visão e Valores" === */

/* Reduz o espaçamento vertical da seção inteira */
#cards.section {
  padding: 5px 0 !important; /* era 20px 0 */
}

/* Reduz o espaçamento interno dos cards */
#cards .card-item {
  padding: 10px 12px !important; /* era 20px 20px */
}

/* Opcional: reduzir também o espaço entre os títulos e textos dentro do card */
#cards .card-item h4 {
  margin: 10px 0 !important; /* era 20px 0 */
}


/* === Espaço horizontal suave entre Horário e Contador === */
.footer .row {
  justify-content: space-between; /* distribui melhor as colunas */
}

.footer .col-lg-3:last-child {
  margin-left: 0 !important; /* remove o deslocamento que empurrava pra baixo */
  padding-left: 45px; /* aumenta o espaço interno apenas nessa coluna */
}

/* Responsivo — no mobile as colunas empilham naturalmente */
@media (max-width: 991px) {
  .footer .col-lg-3:last-child {
    padding-left: 0;
    margin-top: 10px;
  }
}


/* === Desativa TODAS as transições e animações do site === */
* {
  transition: none !important;
  animation: none !important;
  scroll-behavior: auto !important;
}

/* Remove animações do AOS */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ======================================================
   ESTILO PARA PÁGINA DE POST ÚNICO COM SIDEBAR
   ====================================================== */

.post-section {
  padding-top: 20px;
  padding-bottom: 40px;
}

.post-hero {
  margin-bottom: 25px;
}

.post-hero img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.post-title-lg {
  font-size: 1.9rem;
  font-weight: 700;
  color: #3a006e;
  margin-bottom: 10px;
}

.post-meta-lg {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.post-content {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  line-height: 1.8;
  color: #333;
  font-size: 1rem;
}

.post-content p {
  margin-bottom: 1rem;
}

.post-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

.post-actions {
  margin-top: 25px;
}

.btn-back {
  display: inline-block;
  background: #4b0082;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-back:hover {
  background: #2f005c;
  text-decoration: none;
  color: #fff;
}

/* ================================
   SIDEBAR
   ================================ */

.sidebar {
  background: #eef2f7;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  margin-top: 20px;
}

.sidebar-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #4b0082;
  margin-bottom: 15px;
  border-bottom: 2px solid #4b0082;
  display: inline-block;
  padding-bottom: 4px;
  text-align: center; /* Centraliza o texto dentro do elemento */
  width: 100%; /* Garante que o alinhamento ocupe toda a largura do container */
}

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

.sidebar ul li {
  margin-bottom: 12px;
}

.sidebar ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
  font-size: 1.5rem;
}

.sidebar ul li a:hover {
  color: #4b0082;
  text-decoration: underline;
}

.sidebar small {
  color: #777;
  font-size: 0.95em;
}

/* Responsivo */
@media (max-width: 991px) {
  .sidebar {
    margin-top: 1px;
  }
}

/* ============================================
   AJUSTE DE ALINHAMENTO E ALTURA DA SIDEBAR
   ============================================ */

/* Faz a sidebar começar alinhada com o título */
.post-section .row {
  align-items: flex-start;
}

/* Sidebar com altura mínima e alinhamento correto */
.sidebar {
  background: #eef2f7;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  margin-top: 112px; /* Remove o pequeno deslocamento */
  min-height: 600px; /* Altura mínima para “reservar espaço” */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: 'Leelawadee', sans-serif;
}

/* Se quiser dar um leve espaçamento lateral */
@media (min-width: 992px) {
  .sidebar {
    margin-left: 15px;
  }
}

/* Garante que o título principal e a sidebar fiquem alinhados */
.post-hero {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  section.post-section .sidebar {
    margin-top: 1px !important;
  }
}

/* ================================
   ÍCONES DE COMPARTILHAMENTO
   ================================ */
.sidebar-share {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  margin-top: auto;
  text-align: center;
}

.sidebar-share .share-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4b0082;
  margin-bottom: 10px;
  font-family: 'Leelawadee', sans-serif;
}

.sidebar-share .share-icon {
  display: inline-block;
  margin: 0 8px;
  font-size: 2rem;
  transition: transform 0.2s, opacity 0.2s;
}

/* WhatsApp: verde oficial */
.sidebar-share .share-icon .bi-whatsapp {
  color: #25D366;
}

/* Instagram: degradê com máscara de texto */
.sidebar-share .share-icon .bi-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Efeitos ao passar o mouse */
.sidebar-share .share-icon:hover {
  transform: scale(1.2);
  opacity: 0.8;
}


/* ================================
   ÍCONES DE COMPARTILHAMENTO (AJUSTADOS)
   ================================ */
.sidebar-share {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  position: absolute;
  bottom: 20px; /* distancia do rodapé da sidebar */
  left: 20px;   /* distancia da lateral esquerda */
}

.sidebar {
  position: relative; /* importante para o posicionamento absoluto funcionar */
}

.sidebar-share .share-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4b0082;
  margin-bottom: 10px;
  font-family: 'Leelawadee', sans-serif;
  text-align: left;
}

.sidebar-share .share-icon {
  display: inline-block;
  margin-right: 10px;
  font-size: 2rem;
  transition: transform 0.2s, opacity 0.2s;
}

/* WhatsApp verde */
.sidebar-share .share-icon .bi-whatsapp {
  color: #25D366;
}

/* Instagram com degradê */
.sidebar-share .share-icon .bi-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover bonito */
.sidebar-share .share-icon:hover {
  transform: scale(1.2);
  opacity: 0.8;
}


/* === AJUSTE VISUAL DO VERSÍCULO === */
#versiculo.verse-section {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.verse-box {
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-align: center;
}

.verse-box blockquote {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 18px !important; /* diminui o tamanho da fonte */
  line-height: 1.2 !important;
  font-style: italic;
  display: inline !important;
  white-space: nowrap !important; /* força tudo em uma linha só */
}

.verse-box blockquote p {
  display: inline !important;
  margin: 0 !important;
}

.verse-box figcaption {
  display: inline !important;
  margin-left: 8px !important;
  font-size: 16px !important;
  font-weight: 600;
  color: var(--accent-color);
}


/* === AJUSTE VISUAL DO VERSÍCULO (RESPONSIVO) === */
#versiculo.verse-section {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.verse-box {
  margin: 0 auto !important;
  padding: 4px 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-align: center;
  max-width: 95%; /* margem lateral mínima */
}

#versiculo .verse-box blockquote {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#versiculo .verse-box blockquote p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  
}

.verse-box figcaption {
  display: inline !important;
  margin-left: 8px !important;
  font-size: clamp(14px, 1.8vw, 18px) !important;
  font-weight: 600;
  color: var(--accent-color);
}

/* === MOBILE: quebra o versículo em duas linhas para não cortar texto === */
@media (max-width: 768px) {
  .verse-box blockquote {
    display: block !important;
    white-space: normal !important; /* permite quebra natural */
    font-size: 19px !important;
    line-height: 1.4 !important;
  }

  .verse-box figcaption {
    display: block !important;
    margin: 4px 0 0 0 !important;
    font-size: 17px !important;
  }
}


/* === Ajuste fino do espaçamento entre o versículo e a linha === */

/* Remove qualquer espaço do bloco do versículo */
#versiculo.verse-section,
#versiculo .verse-box,
#versiculo .verse-box blockquote,
#versiculo .verse-box p,
#versiculo .verse-box figcaption {
  margin: 2 !important;
  padding: 2 !important;
  font-size: 19px !important;
}

/* Remove espaço da linha separadora logo abaixo */
.section-hr {
  margin-top: 0 !important;    /* gruda no versículo */
  margin-bottom: 10px !important; /* mantém leve espaço antes do “Sobre Nós” */
}

/* Garante que o Sobre Nós não adicione espaçamento extra */
#sobre.about.section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Espaço entre o texto e o figcaption do versículo */
#versiculo .verse-box figcaption {
  margin-left: 12px !important; /* aumenta o espaço horizontal */
  display: inline-block !important;
  vertical-align: middle;
  padding-bottom: 1px;
  margin-top: 0 !important;
}

/* === Ajustes personalizados do footer === */

/* === Ajustes visuais dos ícones do footer === */

/* Ícone do WhatsApp verde */
.footer .bi-whatsapp {
  color: #25D366 !important; /* verde oficial do WhatsApp */
  font-size: 1.3rem;
}

/* Ícone do telefone com fundo roxo translúcido quadrado */
.footer .bi-telephone-fill {
  background-color: rgba(151, 84, 154, 0.35); /* #97549a com transparência */
  color: #ffffff !important; /* mantém o ícone branco */
  padding: 6px; /* define o tamanho interno */
  border-radius: 2px; /* cantos levemente arredondados, pode usar 0 pra quadrado */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-sizing: content-box;
}

/* ===== Evita quebra de linha nos títulos da seção Serviços (somente desktop) ===== */
@media (min-width: 992px) {
  .services .service-item .title a {
    white-space: nowrap;          /* impede quebra de linha */
    font-size: 1.3rem !important;   /* reduz um pouco o tamanho da fonte */
    line-height: 1.2;             /* melhora o espaçamento vertical */
    display: inline-block;
  }
}


/* Fundo totalmente branco no post individual */
body.single-post,
.single-post section,
.single-post .post-section {
  background-color: #fff !important;
}

/* Garante que o conteúdo principal fique branco */
.post-content {
  background: #fff !important;
}

/* Mantém apenas a sidebar com o fundo lilás */
.sidebar {
  background: #eef2f7 !important;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}


/* === Fundo totalmente branco SOMENTE na página de post individual === */
body.single-post,
body.single-post section,
body.single-post .post-section {
  background-color: #fff !important;
}

/* Sidebar branca, mas mantendo sombra e bordas */
body.single-post .sidebar {
  background: #fff !important;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}


/* === SIDEBAR ESTILO PREMIUM === */
.sidebar {
  background: #fff !important;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(75, 0, 154, 0.08);
  padding: 28px 22px;
  border: 1px solid rgba(75, 0, 154, 0.08);
  transition: all 0.25s ease;
}

/* Efeito sutil de elevação no hover */
.sidebar:hover {
  box-shadow: 0 10px 28px rgba(75, 0, 154, 0.12);
  transform: translateY(-2px);
}

/* Título da seção */
.sidebar-title {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #4b0082;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 3px solid #8330b9;
  position: relative;
  text-align: center;
}



/* Lista de posts */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 10px;
}

.sidebar ul li:last-child {
  border-bottom: none;
}

/* Links dos posts */
.sidebar ul li a {
  display: block;
  color: #2e2e2e;
  font-size: 1.15rem;
  font-weight: 600;
  font-family: "Leelawadee", sans-serif;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sidebar ul li a:hover {
  color: #5a0dad;
  transform: translateX(4px);
}

/* Data dos posts */
.sidebar small {
  display: block;
  font-size: 0.9rem;
  color: #8b8b8b;
  margin-top: 0px;
}

/* Ícones sociais (parte de compartilhamento) */
.sidebar-share {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 28px;
  padding-top: 18px;
  text-align: center;
}

.sidebar-share .share-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4b0082;
  margin-bottom: 10px;
}

.sidebar-share .share-icon {
  font-size: 1.8rem;
  margin: 0 10px;
  transition: transform 0.2s, opacity 0.2s;
}

.sidebar-share .share-icon:hover {
  transform: scale(1.25);
  opacity: 0.8;
}

/* === Ajuste do espaçamento da data no sidebar === */
.sidebar ul li {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.sidebar ul li a {
  display: block;
  font-weight: 600;
  color: #2e2e2e;
  font-size: 1.15rem;
  text-decoration: none;
  margin-bottom: -15px; /* aproxima o título da data */
}

.sidebar ul li small {
  display: block;
  font-size: 0.9rem;
  color: #8b8b8b;
  margin-top: -2px; /* aproxima ainda mais da linha de cima */
}

.post-section {
  background-color: #fff !important;
  margin-top: 0 !important;
}
