/**
* Template Name: iLanding
* Template URL: https://bootstrapmade.com/ilanding-bootstrap-landing-page-template/
* Updated: Nov 12 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #421022;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #421022;
  /* 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: #212529;
  /* The default color of the main navmenu links */
  --nav-hover-color: #8a9c6e;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #B49227;
  /* 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: #f3ffed;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #421022;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
  --orange-color: #0eb956;
}

/* 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, #B49227, 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: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
  max-width: 100vw;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 0px 0px 50px 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  max-width: 100vw;
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

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

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

.btn-getstarted,
.btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  /* margin: 0 0 0 30px; */
  border-radius: 50px;
  transition: 0.3s;
}

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
  color: var(--contrast-color);
  /* background: color-mix(in srgb, #B49227, transparent 15%); */
  background: #B49227;
}

.btn-getstarted-cta,
.btn-getstarted-cta:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  background: transparent;
  border: 1px solid var(--contrast-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: bold;
}

.btn-getstarted-cta:hover,
.btn-getstarted-cta:focus:hover {
  color: var(--contrast-color);
  /* background: color-mix(in srgb, #B49227, transparent 15%); */
  background: #B49227;
  border: 1px solid #B49227;
}

@media (max-width: 1200px) {
  .header {
    /* padding-top: 10px; */
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .btn-getstarted-cta {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# 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;
    padding: 0 10px;
  }

  .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: #421022;
    background: linear-gradient(135deg, #B88E2C 0%, transparent 100%) bottom / 100% 2px no-repeat;
    position: relative;
  }


  .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 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 {
  position: relative;
  background: linear-gradient(135deg, rgba(88, 20, 43, 0.95) 0%, rgba(138, 30, 58, 0.9) 100%);
  color: white;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.footer-top {
  position: relative;
  z-index: 2;
  padding: 80px 0 40px 0;
}

.footer-logo {
  height: 100%;
  width: 100%;
}

.footer-tagline {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-item i {

  color: #B88E2C;
  font-size: 1.2rem;
  width: 20px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item strong {
  font-size: 0.9rem;
  color: #421022;
}

.contact-item span {
  font-size: 0.95rem;
  color: #421022;
}

.social-links {
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: #B88E2C;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(184, 142, 44, 0.4);
}

.footer-links h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
  position: relative;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #B88E2C;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #B88E2C;
  transform: translateX(5px);
}

.footer-links i {
  color: #B88E2C;
  font-size: 1rem;
  width: 16px;
}

.footer-newsletter h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #B88E2C;
  box-shadow: 0 0 0 0.2rem rgba(184, 142, 44, 0.1);
  color: white;
}

.btn-newsletter {
  background: #B88E2C;
  border: none;
  color: white;
  border-radius: 8px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.btn-newsletter:hover {
  background: #d4af37;
  transform: translateY(-1px);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

.whatsapp-link {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-link:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #421022;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-link:hover .whatsapp-tooltip {
  opacity: 1;
  right: 75px;
}

/* Footer Bottom */
.footer-bottom {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom strong {
  color: #B88E2C;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #B88E2C;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-top {
    padding: 60px 0 30px 0;
  }

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

  .footer-newsletter {
    margin-top: 20px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-link {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }
  .footer-bottom p{
    margin: auto;
  }
}

@media (max-width: 576px) {
  .footer-top {
    padding: 40px 0 20px 0;
  }

  .footer-bottom .row {
    text-align: center;
  }

  .footer-bottom .developer {
    margin-top: 10px;
  }
}

/* Animações */
.footer-top {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-attendance h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
  position: relative;
}

.footer-attendance h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #B88E2C;
}

.attendance-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}

.channel-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.channel-icon {
  width: 40px;
  height: 40px;
  background: rgba(184, 142, 44, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B88E2C;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(184, 142, 44, 0.3);
}

.channel-info {
  flex: 1;
}

.channel-info strong {
  display: block;
  color: #B88E2C;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.channel-info span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.channel-numbers {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.channel-numbers a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.channel-numbers a:hover {
  color: #B88E2C;
}

.channel-email {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  word-break: break-all;
}

.channel-email:hover {
  color: #B88E2C;
}

/* Horários de Atendimento */
.attendance-hours {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.attendance-hours h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #B88E2C;
  margin-bottom: 15px;
  text-align: center;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hour-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.hour-item strong {
  color: white;
  font-size: 0.9rem;
}

.hour-item.emergency strong {
  color: #B88E2C;
  font-weight: 700;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-attendance {
    margin-top: 30px;
  }

  .attendance-channels {
    gap: 15px;
  }

  .channel-item {
    gap: 10px;
  }

  .channel-icon {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }

  .attendance-hours {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .channel-item {
    flex-direction: column;
    gap: 8px;
  }


  .hour-item {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

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

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

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

.page-title .breadcrumbs 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-top: 60px;
  padding-bottom: 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 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); */
  background: #B49227;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 160px;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--accent-color), transparent 95%) 50%,
      color-mix(in srgb, var(--accent-color), transparent 98%) 25%,
      transparent 50%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%,
      color-mix(in srgb, var(--accent-color), transparent 92%),
      transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: #B49227;
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  /* color: var(--accent-color); */
  color: #B49227;
}

.hero .stat-item:hover .stat-icon {
  /* background-color: var(--accent-color); */
  background-color: #B49227;
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

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

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

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

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

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

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px 100px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 64px;
  /* border-radius: 50px; */
  border: 6px solid var(--background-color);
  /* float: left; */
  margin: 0 10px 0 0;
}

.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 20%);
  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 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  background-color: white;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

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

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

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

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

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

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

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

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

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

.call-to-action-2 p {
  color: var(--default-color);
}

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

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
  background-color: #B49227;
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

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

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

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

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: var(--nav-dropdown-hover-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-justify {
  text-align: justify;
}

.text-primary {
  color: #421022 !important;
}

.text-secundary {
  color: #B49227 !important;
}



.bg-metricas {
  background-color: #421022;
  background-image: linear-gradient(to right, #bc522f, #547341);
}

.footer-contact p,
.footer-links ul li a .copyright p,
.copyright a,
.credits {
  color: white !important;
}

.footer-links:hover ul li:hover {
  i {
    color: rgb(250, 195, 176) !important;
  }

  a {
    color: rgb(250, 195, 176) !important;
  }
}

.footer-links ul li {
  font-weight: bold;
}

.footer-contact p {
  font-weight: bold;
}

.social-links a i {
  font-size: 32px;
}

.social-links a i:hover {
  color: rgb(250, 195, 176) !important;
}

/* ---------------------------------------------
# Cookies
-----------------------------------------------*/
.box-cookies.hide {
  display: none !important;
}

.bg-dash {
  background-image: linear-gradient(to right, #ebbcae, #547341);
}

.box-cookies {
  position: fixed;
  background-image: linear-gradient(to right, #bc522f, #547341);
  width: 98%;
  z-index: 999998;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  margin-bottom: 20px;
}

.box-cookies .msg-cookies,
.box-cookies .btn-cookies {
  text-align: center;
  padding: 5px;
  color: white !important;
  font-size: 18px;
  margin-bottom: 20px;
}

.msg-cookies {
  margin-left: 20px;
  margin-top: 20px;
}

.box-cookies .btn-cookies {
  background-color: white;
  border: 0;
  padding: 5px 20px;
  color: #b66f44;
  color: #bc522f;
  transition: 0.4s;
  /* border-radius: 4px; */
  margin-right: 20px;
  border-radius: 10px;
}

.box-cookies .btn-cookies {
  color: #f38221 !important;
  color: #bc522f;
}

.box-cookies .btn-cookies:hover {
  background: #ffc734;
  background: #bc522f;
  color: white !important;
  transition: 0.4s;
}

.box-cookies-size {
  justify-content: center;
  display: flex;
}

.color-cookies {
  color: #ffff;
  /* color: #060606; */
}

.color-cookies:hover {
  color: #ffff;
}

@media screen and (max-width: 600px) {
  .box-cookies {
    flex-direction: column;
  }

  .img-estrategia {
    max-width: 350px;
  }
}

.contact .php-email-form {
  /* margin-top: 80px; */
  width: 100%;
  padding: 30px;
  /* background: linear-gradient(136.12deg, #fff3f3 12.9%, #ffd0d0 100%); */
  background-color: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  border-radius: 20px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

svg {
  width: 2.25em;
  transform-origin: center;
  animation: rotate4 2s linear infinite;
}

#circle {
  fill: none;
  stroke: hsl(0, 0%, 100%);
  stroke-width: 2;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash4 1.5s ease-in-out infinite;
}

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

@keyframes dash4 {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dashoffset: -125px;
  }
}

.text-red {
  color: red;
}

/* .card-body-blog {
  max-height: 200px;
  overflow: hidden;
}

.card-body.expanded {
  max-height: none;
}

.card-blog {
  border: #421022;
  transition: 0.5s;
}

.card-blog:hover {
  box-shadow: 0 0 5px 0 black;
} */
/* Blog Moderno e Profissional */
.card-blog {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-blog:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(88, 20, 43, 0.15);
}

.card-blog img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-blog:hover img {
  transform: scale(1.05);
}

.card-blog .p-3 {
  padding: 24px !important;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-blog h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #58142b;
  margin-bottom: 12px;
  line-height: 1.3;
  text-align: left;
}

.card-blog h6 {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #8a1e3a;
  margin-bottom: 12px;
  line-height: 1.4;
  text-align: left;
}

.card-blog p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  font-size: 0.95rem;
  text-align: left;
}

.card-blog a {
  color: #8a1e3a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.card-blog a:hover {
  color: #B88E2C;
  gap: 12px;
}

.card-blog a::after {
  content: '→';
  transition: transform 0.3s ease;
}

.card-blog a:hover::after {
  transform: translateX(4px);
}

/* Badge de categoria (opcional) */
.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #B88E2C 0%, #d4af37 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Data do post (opcional) */
.blog-date {
  color: #999;
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-date i {
  color: #B88E2C;
}

/* Container da imagem com overlay */
.blog-image-container {
  position: relative;
  overflow: hidden;
}

.blog-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(88, 20, 43, 0.1) 0%, transparent 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-blog:hover .blog-image-container::before {
  opacity: 1;
}

/* Layout responsivo */
@media (max-width: 768px) {
  .card-blog {
    margin-bottom: 25px;
  }

  .card-blog img {
    height: 200px;
  }

  .card-blog .p-3 {
    padding: 20px !important;
  }

  .card-blog h5 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .card-blog {
    margin-bottom: 20px;
  }

  .card-blog img {
    height: 180px;
  }

  .card-blog .p-3 {
    padding: 18px !important;
  }

  .card-blog h5 {
    font-size: 1.1rem;
  }
}

/* Efeitos de animação */
.card-blog {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Grid layout moderno */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.btn-toggle {
  cursor: pointer;
}

.newsletter-container {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .bg-banner{
  height: auto;
  width: 100%;
  background-image: url(../../blog/assets/img/banner-blog.svg);
  background-size: cover;
  background-position: center!important;
} */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.popup-content {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: scaleIn 0.4s ease;
}

.popup-image {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 20px;
}

.popup-content h2 {
  font-size: 1.4em;
  margin-bottom: 20px;
  color: #333;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}

.close-btn:hover {
  color: #333;
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.page-title {
  background: #d1fdb7;
}

/* TopBar Premium */
.topbar-premium {
  /* background: linear-gradient(90deg, #ffffff00 50%, #B49227 100%); */
  background: #421022;
  color: white;
  padding: 4px 25px;
  font-size: 12px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-premium.hidden {
  transform: translateY(-100%);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-promo {
  background: linear-gradient(90deg, #B49227, #e67e22);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  animation: pulse 2s infinite;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-contact i {
  color: #1DB954;
}

.topbar-social {
  display: flex;
  gap: 12px;
}

.topbar-social a {
  color: white;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.topbar-social a:hover {
  opacity: 1;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.topbar-close {
  background: none;
  border: none;
  color: white;
  opacity: 0.7;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.topbar-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

/* Animações */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

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

/* Ajuste para quando topbar está visível */
body.has-topbar {
  margin-top: 40px;
}

/* Garantir que header fique abaixo da topbar */
header {
  position: relative;
  z-index: 9999;
}

premium {
  padding: 80px 0;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
}

.spotify-container iframe {
  border-radius: 8px 8px 0 0;
}

.video-item,
.podcast-item {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover,
.podcast-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-body-digital {
  padding: 1.5rem;
}

.card-title {
  color: #333;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 20px !important;
}

.card-text {
  color: #666;
  font-size: 0.9rem;
  text-align: start !important;
}

/* ===== BANNER SLIDER EM TELA CHEIA ===== */
.fullscreen-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  cursor: grab;
}

.fullscreen-slider:active {
  cursor: grabbing;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Efeito de zoom infinito */
  animation: zoomInfinite 25s linear infinite;
}

/* Efeito de zoom suave e contínuo */
@keyframes zoomInfinite {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Versão alternativa mais suave */
@keyframes zoomInfiniteSoft {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Versão com movimento sutil */
@keyframes zoomInfiniteEnhanced {
  0% {
    transform: scale(1) translateX(0);
  }

  25% {
    transform: scale(1.05) translateX(-5px);
  }

  50% {
    transform: scale(1.1) translateX(0);
  }

  75% {
    transform: scale(1.05) translateX(5px);
  }

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

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(0, 0, 0, 0.4) 0%, rgb(138, 30, 58, 0.7) 100%);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  /* Manter a animação apenas no slide ativo */
  animation: zoomInfinite 25s linear infinite;
}

.slide-1 {
  background-image: url('../img/banner/banner_consultoria_financeira.jpg');
}

.slide-2 {
  background-image: url('../img/banner/banner_valuation_empresarial.jpg');
}

.slide-3 {
  background-image: url('../img/banner/banner_capatacao_de_recursos.jpg');
}
.slide-4 {
  background-image: url('../img/banner/banner_capatacao_de_recursos.jpg');
}
.slide-5 {
  background-image: url('../img/banner/banner_capatacao_de_recursos.jpg');
}

.slide-content {
  max-width: 1300px;
  padding: 0 20px;
  z-index: 2;
  position: relative;
}

.slide-content h2 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: var(--accent-color) 1px 1px 1px;
}

.slide-content p {
  font-size: 24px;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-light {
  background-color: var(--accent-color);
  color: #ffb700;
  border: none;
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: #B49227 !important;
}

.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot.active {
  background-color: white;
  transform: scale(1.3);
  border-color: rgba(255, 255, 255, 0.8);
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  transform: translateY(-50%);
  z-index: 3;
}

.slider-control {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.slider-control:hover {
  border: 2px solid rgb(180, 146, 39);
  background-color: #421022;
color: rgb(180, 146, 39);
  transform: scale(1.1);
  
}

/* Seção de Conteúdo Abaixo do Slider */
.content-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 20px;
}

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

.stat-icon {
  background-color: rgba(59, 130, 246, 0.1);
  color: #ffb700;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.stat-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #421022;
  font-weight: 600;
}

.stat-content p {
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.6;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #421022;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title p {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Efeito de Zoom nas Imagens da Galeria */
.zoom-effect {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.zoom-effect img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.zoom-effect:hover img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2.5rem;
  }

  .slide-content p {
    font-size: 1.1rem;
  }

  .slider-controls {
    padding: 0 15px;
  }

  .slider-control {
    width: 40px;
    height: 40px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  /* Reduzir intensidade do zoom no mobile */
  .slide.active {
    animation: zoomInfiniteSoft 30s linear infinite;
  }
}

@media (max-width: 576px) {
  .slide-content h1 {
    font-size: 2rem;
  }

  .btn-light {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .slider-nav {
    bottom: 20px;
  }
}

/* quem somos home */
.about-compact {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #faf5f0 100%);
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #421022 0%, #8a1e3a 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.about-compact h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #421022;
  line-height: 1.2;
}

.about-compact .lead {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #555;
}

.highlight-item i {
  color: #B49227;
  font-size: 1.1rem;
}

.cta-buttons {
  margin-top: 2rem;
}



/* Image Stack Styles */
.image-stack {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.main-image-wrapper {
  position: relative;
  z-index: 2;
}

.main-image-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(88, 20, 43, 0.1);
  border: 3px solid #f8f0e5;
}

.floating-card {
  position: absolute;
  top: -20px;
  right: -20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(88, 20, 43, 0.15);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
  border: 2px solid #f8f0e5;
}

.card-content {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #421022;
  line-height: 1;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, #B49227 0%, #d4af37 100%);
  color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(184, 142, 44, 0.3);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
  animation-delay: 1s;
}

.badge-content {
  text-align: center;
}

.years {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.label {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 4px;
  line-height: 1.2;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .about-compact {
    padding: 60px 0;
  }

  .about-compact h2 {
    font-size: 2rem;
  }

  .image-stack {
    margin-top: 3rem;
  }

  .floating-card {
    top: -15px;
    right: -15px;
    padding: 15px;
  }

  .experience-badge {
    bottom: -15px;
    left: -15px;
    padding: 15px;
  }

  .stat-number,
  .years {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .about-compact h2 {
    font-size: 1.75rem;
  }

  .main-image-wrapper img {
    height: 280px;
  }

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

/* Estilo para o cursor piscante */
.typing-cursor {
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

.service {
  /* background-image: url("../img/background-02.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative; */
  background-color: #fff;
}

/* .service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(88, 20, 43, 0.9) 0%, rgba(138, 30, 58, 0.8) 100%);
  z-index: 1;
} */

/* Cards de Serviços - Estilo Atualizado */
.service-card {
  background: linear-gradient(135deg, #58142b 0%, #8a1e3a 100%);
  border-radius: 15px;
  padding: 35px 25px;
  height: 100%;
  /* box-shadow: 0 8px 25px rgba(88, 20, 43, 0.3); */
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid #B88E2C;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
  border-radius: 15px;
}

/* Efeito hover - imagem aparece com overlay preto */
.service-card:hover::before {
  opacity: 0.9;
  /* background-color: linear-gradient(135deg, #58142b 0%, #8a1e3a 100%); */
  background-color: rgba(0, 0, 0, 0.9);
}

.service-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 20px 40px rgba(88, 20, 43, 0.5); */
  border: 2px solid #B88E2C;
}

/* Conteúdo do card - visível normalmente */
.service-icon {
  font-size: 3rem;
  color: #B88E2C;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-card:hover .service-icon {
  color: #d4af37;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.service-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

.btn-primary {
  background: linear-gradient(135deg, #B88E2C 0%, #d4af37 100%);
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 142, 44, 0.3);
  position: relative;
  z-index: 2;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 142, 44, 0.5);
  background: linear-gradient(135deg, #d4af37 0%, #B88E2C 100%);
  color: white;
}

/* Imagens específicas para cada serviço - URLs do Unsplash */
.service-card[data-service="valuation"]::before {
  background-image: url('../img/valuation.jpg');
}

.service-card[data-service="viabilidade"]::before {
  background-image: url('../img/viabilidade.jpg');
}

.service-card[data-service="gestao"]::before {
  background-image: url('../img/gestao.jpg');
}

.service-card[data-service="captacao"]::before {
  background-image: url('../img/captacao.jpg');
}

.service-card[data-service="fiscais"]::before {
  background-image: url('../img/fiscal.jpg');
}

.service-card[data-service="analise"]::before {
  background-image: url('../img/analise.jpg');
}
.service-card[data-service="consultoria"]::before {
  background-image: url('../img/consultoria.jpg');
}

/* Efeito de overlay escuro na imagem ao passar o mouse */
.service-card:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: overlay;
}

/* Garantir que o conteúdo fique visível sobre a imagem */
.service-card>* {
  position: relative;
  z-index: 3;
}

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

  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .service-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .service-card {
    margin-bottom: 20px;
    border-width: 1px;
  }
}

.cta-section {
  background: linear-gradient(135deg, #58142b 0%, #8a1e3a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/cta_pronto_para_transformar_sua_estrategia.jpg') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-description strong {
  color: #B88E2C;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.feature-item i {
  color: #B88E2C;
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 2.5rem;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #B88E2C 0%, #d4af37 100%);
  border: none;
  color: white;
  padding: 16px 30px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(184, 142, 44, 0.4);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(184, 142, 44, 0.6);
  background: linear-gradient(135deg, #d4af37 0%, #B88E2C 100%);
  color: white;
}

.btn-cta-secondary {
  background: transparent;
  border: 2px solid #B88E2C;
  color: white;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.btn-cta-secondary:hover {
  background: #B88E2C;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 142, 44, 0.3);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #B88E2C;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #171717!important;
  font-weight: 500;
}

/* Responsividade */
@media (max-width: 992px) {
  .cta-title {
    font-size: 2.2rem;
  }

  .cta-buttons {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 2rem;
    text-align: center;
  }

  .cta-description {
    text-align: center;
    font-size: 1.1rem;
  }

  .cta-features {
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-item {
    margin-bottom: 15px;
  }
}

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

  .cta-description {
    font-size: 1rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 14px 25px;
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* Efeitos de animação suave */
.cta-content {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary {
  background: linear-gradient(135deg, #421022 0%, #8a1e3a 100%);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
}

.titulo_secoes {
  font-size: 48px;
  font-weight: 700;
}

.cta-simple {
  background: linear-gradient(135deg, #58142b 0%, #8a1e3a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/cta_vamos_juntos_transformar.jpg') center/cover;
  opacity: 0.05;
  z-index: 1;
}

.cta-simple-content {
  position: relative;
  z-index: 2;
  color: white;
}

.cta-subtitle {
  display: inline-block;
  background: rgba(184, 142, 44, 0.2);
  color: #B88E2C;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(184, 142, 44, 0.3);
}

.cta-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
}

.cta-main-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Features Grid */
.cta-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.feature-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(184, 142, 44, 0.3);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #B88E2C 0%, #d4af37 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 1.8rem;
}

.feature-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.feature-box p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

/* Action Buttons */
.cta-action-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-cta-whatsapp {
  background: #25D366;
  color: white;
  padding: 16px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  color: white;
  background: #128C7E;
}

.btn-cta-phone {
  background: transparent;
  color: white;
  padding: 16px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #B88E2C;
}

.btn-cta-phone:hover {
  background: #B88E2C;
  transform: translateY(-3px);
  color: white;
}

.btn-cta-email {
  background: transparent;
  color: white;
  padding: 16px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #B88E2C;
}

.btn-cta-email:hover {
  background: #B88E2C;
  transform: translateY(-3px);
  color: white;
}

/* Guarantee Section */
.cta-guarantee {
  background: rgba(184, 142, 44, 0.1);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(184, 142, 44, 0.3);
}

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #B88E2C;
  font-weight: 600;
}

.guarantee-text {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: center;
}

.guarantee-text strong {
  color: #B88E2C;
}

/* Social Proof */
.cta-social-proof {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-proof-item {
  text-align: center;
}

.proof-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #B88E2C;
  line-height: 1;
  margin-bottom: 5px;
}

.proof-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Responsividade */
@media (max-width: 768px) {
  .cta-simple {
    padding: 60px 0;
  }

  .cta-main-title {
    font-size: 2rem;
  }

  .cta-main-description {
    font-size: 1.1rem;
  }

  .cta-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-whatsapp,
  .btn-cta-phone,
  .btn-cta-email {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .cta-social-proof {
    gap: 30px;
  }

  .proof-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .cta-main-title {
    font-size: 1.8rem;
  }

  .cta-main-description {
    font-size: 1rem;
  }

  .feature-box {
    padding: 25px 20px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .cta-social-proof {
    gap: 20px;
  }

  .social-proof-item {
    flex: 1;
    min-width: 100px;
  }
}

/* Animações */
.cta-simple-content {
  animation: fadeInUp 0.8s ease-out;
}

.feature-box {
  animation: fadeInUp 0.6s ease-out;
}

.feature-box:nth-child(2) {
  animation-delay: 0.1s;
}

.feature-box:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #B88E2C 0%, #d4af37 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #58142b;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Card */
.contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  height: 100%;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f8f0e5;
}

.contact-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #58142b;
  margin-bottom: 0.5rem;
}

.contact-header p {
  color: #666;
  margin: 0;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-method {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #58142b 0%, #8a1e3a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.method-content {
  flex: 1;
}

.method-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #58142b;
  margin-bottom: 5px;
}

.method-content p {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

/* Phone Numbers */
.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #58142b;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.phone-link:hover {
  background: #f8f0e5;
  color: #8a1e3a;
  border-color: #B88E2C;
  transform: translateX(5px);
}

.phone-link i {
  color: #B88E2C;
}

/* Email Link */
.email-link {
  color: #58142b;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  display: inline-block;
}

.email-link:hover {
  background: #f8f0e5;
  color: #8a1e3a;
  border-color: #B88E2C;
  transform: translateX(5px);
}

/* Contact Info */
.contact-info {
  background: #f8f0e5;
  border-radius: 12px;
  padding: 25px;
  margin-top: 20px;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 20px;
}

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

.info-item i {
  color: #B88E2C;
  font-size: 1.2rem;
  margin-top: 2px;
}

.info-item div {
  flex: 1;
}

.info-item strong {
  display: block;
  color: #58142b;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.info-item span {
  color: #666;
  font-size: 0.9rem;
}

/* Map Card */
.map-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-header {
  text-align: center;
  margin-bottom: 30px;
}

.map-header h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #58142b;
  margin-bottom: 0.5rem;
}

.map-header p {
  color: #666;
  margin: 0;
}

.map-container {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
}

.map-footer {
  border-top: 2px solid #f8f0e5;
  padding-top: 25px;
}

.location-info {
  display: flex;
  gap: 15px;
  align-items: center;
}

.location-info i {
  color: #B88E2C;
  font-size: 1.5rem;
}

.location-info strong {
  display: block;
  color: #58142b;
  margin-bottom: 4px;
  font-size: 1rem;
}

.location-info span {
  color: #666;
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 992px) {

  .contact-card,
  .map-card {
    padding: 30px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }

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

  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    align-items: center;
  }

  .method-icon {
    align-self: center;
  }

  .phone-numbers {
    align-items: center;
  }

  .map-card {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {

  .contact-card,
  .map-card {
    padding: 25px 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .method-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* Animações */
.contact-card,
.map-card {
  animation: fadeInUp 0.6s ease-out;
}

.contact-method {
  animation: slideInLeft 0.6s ease-out;
}

.contact-method:nth-child(2) {
  animation-delay: 0.1s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.cta-conversion {
  background: linear-gradient(135deg, #58142b 0%, #8a1e3a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-conversion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
  opacity: 0.05;
  z-index: 1;
}

.cta-conversion-content {
  position: relative;
  z-index: 2;
}

.conversion-badge {
  display: inline-block;
  background: rgba(184, 142, 44, 0.2);
  color: #B88E2C;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(184, 142, 44, 0.3);
}

.conversion-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conversion-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.conversion-description strong {
  color: #B88E2C;
}

.conversion-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.conversion-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.conversion-feature i {
  color: #B88E2C;
  font-size: 1.1rem;
}

/* Action Card */
.action-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  backdrop-filter: blur(10px);
}

.action-header {
  margin-bottom: 25px;
}

.action-header i {
  font-size: 3rem;
  color: #B88E2C;
  margin-bottom: 15px;
}

.action-header h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.action-header p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-conversion-primary {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  color: white;
  padding: 14px 20px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-conversion-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  color: white;
}

.btn-conversion-secondary {
  background: transparent;
  border: 2px solid #B88E2C;
  color: white;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-conversion-secondary:hover {
  background: #B88E2C;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 142, 44, 0.3);
}

.action-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-guarantee i {
  color: #B88E2C;
}

/* Conversion Stats */
.conversion-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
}

.conversion-stat {
  text-align: center;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #B88E2C;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Responsividade */
@media (max-width: 992px) {
  .conversion-title {
    font-size: 2rem;
  }

  .conversion-actions {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .cta-conversion {
    padding: 60px 0;
  }

  .conversion-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .conversion-description {
    text-align: center;
  }

  .conversion-features {
    align-items: center;
  }

  .action-card {
    padding: 25px 20px;
  }

  .conversion-stats {
    gap: 20px;
  }

  .stat-value {
    font-size: 1.5rem;
  }
}

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

  .conversion-description {
    font-size: 1rem;
  }

  .action-buttons {
    gap: 10px;
  }

  .btn-conversion-primary,
  .btn-conversion-secondary {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .conversion-stats {
    flex-direction: column;
    gap: 15px;
  }
}

/* Animações */
.cta-conversion-content {
  animation: fadeInUp 0.8s ease-out;
}

.action-card {
  animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.conversion-feature {
  animation: slideInLeft 0.6s ease-out;
}

.conversion-feature:nth-child(2) {
  animation-delay: 0.1s;
}

.conversion-feature:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* TEAM */
.team-section {
  padding: 80px 0;
  background: #f8fafc;
}

.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #B88E2C 0%, #d4af37 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #58142b;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Team Member Card */
.team-member-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.member-image {
  position: relative;
  text-align: center;
}

.member-image img {
  width: 100%;
  max-width: 300px;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #58142b 0%, #8a1e3a 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 5px 15px rgba(88, 20, 43, 0.3);
}

.member-badge i {
  font-size: 0.9rem;
}

/* Member Content */
.member-content {
  padding-left: 30px;
}

.member-header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f8f0e5;
}

.member-name {
  font-size: 2rem;
  font-weight: 700;
  color: #58142b;
  margin-bottom: 10px;
}

.member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.member-tag {
  background: rgba(184, 142, 44, 0.1);
  color: #B88E2C;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(184, 142, 44, 0.2);
}

.member-subtitle {
  color: #666;
  font-size: 1rem;
  margin: 0;
  font-style: italic;
}

.member-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

/* Member Info */
.member-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-item i {
  color: #B88E2C;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-item div {
  flex: 1;
}

.info-item strong {
  display: block;
  color: #58142b;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.info-item span {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Expertise Areas */
.expertise-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.expertise-full {
  grid-column: 1 / -1;
}

.expertise-areas h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #58142b;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f8f0e5;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.expertise-list span {
  color: #555;
  font-size: 0.9rem;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #B88E2C;
  transition: all 0.3s ease;
}

.expertise-list span:hover {
  background: #f8f0e5;
  transform: translateX(5px);
}

/* Responsividade */
@media (max-width: 992px) {
  .member-content {
    padding-left: 0;
    padding-top: 30px;
  }

  .expertise-areas {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .team-member-card {
    padding: 30px 20px;
  }

  .member-name {
    font-size: 1.6rem;
  }

  .member-tags {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .member-image img {
    height: 300px;
  }
  .typing-title{
    font-size: 32px!important;
  }
  .slider-control{
    display: none;
  }
  .servicos-hero{
    height: 100vh!important;
  }
  .quem-somos-hero{
    height: 100vh !important;
  }
}

@media (max-width: 576px) {
  .team-section {
    padding: 60px 0;
  }

  .team-member-card {
    padding: 25px 15px;
    margin-bottom: 30px;
  }

  .member-name {
    font-size: 1.4rem;
  }

  .info-item {
    flex-direction: column;
    gap: 8px;
  }

  .member-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
}

/* Animações */
.team-member-card {
  animation: fadeInUp 0.6s ease-out;
}

.team-member-card:nth-child(2) {
  animation-delay: 0.1s;
}

.team-member-card:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bg-secundary{
  background: #B49227;
}
.bg-primario {
  background: linear-gradient(135deg, rgba(88, 20, 43) 0%, rgba(138, 30, 58) 100%);
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #fff!important;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-container {
  text-align: center;
  /* margin-bottom: -40px; */
}

.loading-text {
  font-size: 14px;
  color: var(--text-color, #421022)!important;
  text-align: center;
}

.dots-container {
  position: relative;
  height: 13px;
  width: 65px;
  margin: 15px auto 0;
}

/* Dots */
#preloader .dot {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  background-color: var(--accent-color, #ffb700);
  border-radius: 50%;
}

/* Correção das animações */
#preloader .dot:nth-child(1) {
  left: 0px;
  animation: animate-preloader-1 0.6s infinite;
}

#preloader .dot:nth-child(2) {
  left: 0px;
  animation: animate-preloader-2 0.6s infinite;
}

#preloader .dot:nth-child(3) {
  left: 24px;
  animation: animate-preloader-2 0.6s infinite;
}

#preloader .dot:nth-child(4) {
  left: 48px;
  animation: animate-preloader-3 0.6s infinite;
}

/* Keyframes */
@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

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

/* Ocultar preloader quando o body ganhar a classe .loaded */
.loaded #preloader {
  opacity: 0;
  visibility: hidden;
}


 /* Banner Principal */
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #421022;
   color: #ffffff;
   padding: 20px;
   z-index: 999999;
   box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
   border-top: 3px solid #ffb700;
   font-family: 'Inter', sans-serif;
   transform: translateY(100%);
   transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
   display: flex;
 }

 .cookie-banner.show {
   transform: translateY(0);
   display: block;
 }

 .cookie-content {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 20px;
 }

 .cookie-text {
   flex: 1;
   min-width: 300px;
 }

 .cookie-title {
   color: #ffb700;
   font-size: 1.2rem;
   font-weight: 600;
   margin-bottom: 8px;
 }

 .cookie-description {
   font-size: 0.95rem;
   line-height: 1.5;
   color: #ccc;
   margin-bottom: 0;
 }

 .cookie-description a {
   color: #ffb700;
   text-decoration: underline;
 }

 .cookie-buttons {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }

 .cookie-btn {
   padding: 10px 24px;
   border-radius: 8px;
   border: none;
   font-weight: 600;
   font-size: 0.95rem;
   cursor: pointer;
   transition: all 0.3s ease;
   font-family: 'Inter', sans-serif;
 }

 .cookie-btn-accept {
   background: #ffb700;
   color: #421022;
 }

 .cookie-btn-accept:hover {
   background: #e6a500;
   transform: translateY(-2px);
 }

 .cookie-btn-settings {
   background: transparent;
   color: #ffffff;
   border: 2px solid #fff;
 }

 .cookie-btn-settings:hover {
   border-color: #ffb700;
   color: #ffb700;
 }

 .cookie-btn-reject {
   background: transparent;
   color: #ffffff;
   border: 2px solid #dc3545;
   color: #fff;
 }

 .cookie-btn-reject:hover {
   background: #dc3545;
   color: #ffffff;
 }

 /* Modal de Configurações */
 .cookie-modal {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(0, 0, 0, 0.8);
   z-index: 1000000;
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   opacity: 0;
   transition: opacity 0.3s ease;
 }

 .cookie-modal.show {
   display: flex;
   opacity: 1;
 }

 .cookie-modal-content {
   background: #421022;
   border-radius: 8px;
   max-width: 800px;
   width: 100%;
   max-height: 90vh;
   overflow-y: auto;
   border: 2px solid #ffb700;
 }

 .cookie-modal-header {
   padding: 20px;
   border-bottom: 1px solid #333;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .cookie-modal-title {
   color: #ffb700;
   font-size: 1.5rem;
   font-weight: 600;
   margin: 0;
 }

 .cookie-modal-close {
   background: none;
   border: none;
   color: #ffffff;
   font-size: 1.5rem;
   cursor: pointer;
   padding: 0;
   width: 30px;
   height: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   transition: all 0.3s ease;
 }

 .cookie-modal-close:hover {
   background: #333;
   color: #ffb700;
 }

 .cookie-modal-body {
   padding: 20px;
 }

 .cookie-intro {
   color: #ccc;
   line-height: 1.6;
   margin-bottom: 25px;
   font-size: 0.95rem;
 }

 /* Categorias de Cookies */
 .cookie-category {
   background: #222;
   border-radius: 8px;
   padding: 20px;
   margin-bottom: 15px;
   border-left: 4px solid transparent;
   transition: all 0.3s ease;
 }

 .cookie-category.active {
   border-left-color: #ffb700;
   background: #2a2a2a;
 }

 .cookie-category-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 10px;
   cursor: pointer;
 }

 .cookie-category-title {
   color: #ffffff;
   font-size: 1.1rem;
   font-weight: 600;
   margin: 0;
 }

 .cookie-category-toggle {
   position: relative;
   width: 50px;
   height: 26px;
 }

 .cookie-category-toggle input {
   opacity: 0;
   width: 0;
   height: 0;
 }

 .cookie-category-slider {
   position: absolute;
   cursor: pointer;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: #555;
   transition: .4s;
   border-radius: 34px;
 }

 .cookie-category-slider:before {
   position: absolute;
   content: "";
   height: 18px;
   width: 18px;
   left: 4px;
   bottom: 4px;
   background-color: white;
   transition: .4s;
   border-radius: 50%;
 }

 .cookie-category-toggle input:checked+.cookie-category-slider {
   background-color: #ffb700;
 }

 .cookie-category-toggle input:checked+.cookie-category-slider:before {
   transform: translateX(24px);
 }

 .cookie-category-description {
   color: #aaa;
   font-size: 0.9rem;
   line-height: 1.5;
   margin-bottom: 15px;
 }

 .cookie-category-list {
   background: #1a1a1a;
   border-radius: 6px;
   padding: 15px;
   margin-top: 10px;
 }

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

 .cookie-category-list li {
   color: #ccc;
   padding: 8px 0;
   border-bottom: 1px solid #333;
   font-size: 0.9rem;
 }

 .cookie-category-list li:last-child {
   border-bottom: none;
 }

 .cookie-modal-footer {
   padding: 20px;
   border-top: 1px solid #333;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 15px;
 }

 .cookie-btn-save {
   background: #ffb700;
   color: #421022;
   padding: 12px 30px;
   border-radius: 8px;
   border: none;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
 }

 .cookie-btn-save:hover {
   background: #e6a500;
   transform: translateY(-2px);
 }

 .cookie-btn-cancel {
   background: transparent;
   color: #ffffff;
   padding: 12px 30px;
   border-radius: 8px;
   border: 2px solid var(--gray-color);
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
 }

 .cookie-btn-cancel:hover {
   border-color: #ffb700;
   color: #ffb700;
 }

 /* Botão Flutuante */
 .cookie-float-btn {
   position: fixed;
   bottom: 100px;
   right: 30px;
   background: #ffb700;
   color: #421022;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   display: none;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   z-index: 999998;
   box-shadow: 0 4px 15px rgba(255, 183, 0, 0.3);
   transition: all 0.3s ease;
   border: none;
   font-size: 1.2rem;
 }

 .cookie-float-btn.show {
   display: flex;
 }

 .cookie-float-btn:hover {
   transform: scale(1.1);
   box-shadow: 0 6px 20px rgba(255, 183, 0, 0.4);
 }

 /* Preloader */
 #preloader {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #171717;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   z-index: 9999999;
 }

 .logo-container {
   margin-bottom: 30px;
 }

 .dots-container {
   display: flex;
   gap: 10px;
   margin-bottom: 20px;
 }

 .dot {
   width: 15px;
   height: 15px;
   background: #ffb700;
   border-radius: 50%;
   animation: dotPulse 1.5s infinite ease-in-out;
 }

 .dot:nth-child(2) {
   animation-delay: 0.2s;
 }

 .dot:nth-child(3) {
   animation-delay: 0.4s;
 }

 .dot:nth-child(4) {
   animation-delay: 0.6s;
 }

 @keyframes dotPulse {

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

   50% {
     transform: scale(0.8);
     opacity: 0.5;
   }
 }

 .loading-text {
   color: #ffb700;
   font-size: 1rem;
   animation: fadeInOut 2s infinite;
 }

 @keyframes fadeInOut {

   0%,
   100% {
     opacity: 0.5;
   }

   50% {
     opacity: 1;
   }
 }

 body.loaded #preloader {
   opacity: 0;
   visibility: hidden;
   transition: opacity 0.5s, visibility 0.5s;
 }

 /* Responsividade */
 @media (max-width: 768px) {
   .cookie-content {
     flex-direction: column;
     text-align: center;
   }

   .cookie-buttons {
     width: 100%;
     justify-content: center;
   }

   .cookie-btn {
     flex: 1;
     min-width: 120px;
   }

   .cookie-modal {
     padding: 10px;
   }

   .cookie-modal-footer {
     flex-direction: column;
   }

   .cookie-float-btn {
     bottom: 80px;
     right: 15px;
   }
   .logo{
    margin: auto;
   }
   .mobile-largura{
    width: 100%!important;
    padding-left: 20px!important;
    padding-right: 20px!important;
    
   }
   .footer-links{
    padding-left: 50px;
   }
   .footer-attendance{
    padding-left: 50px;
   }
  /* blog */
  .mobile-title{
    font-size: 32px!important;
    margin: 50px 0!important;
  }
 }

 @media (max-width: 480px) {
   .cookie-banner {
     padding: 15px;
   }

   .cookie-btn {
     padding: 10px 15px;
     font-size: 0.9rem;
   }

   .cookie-modal-header,
   .cookie-modal-body,
   .cookie-modal-footer {
     padding: 15px;
   }
 }