/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #ffffff;
  --secondary-color: #FFC107;
  --white-color: #ffffff;
  --black-color: #000000;
  --dark-surface: #212121;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--white-color);
  background: var(--black-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 80px;
  z-index: 996;
  background: var(--secondary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i { font-size: 24px; color: #000; line-height: 0; }

.back-to-top:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--white-color);
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: var(--black-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

#header .logo {
  background: black;
  border-radius: 40px;
}

#header .logo a {
  color: var(--primary-color);
}

#header .logo a span {
  color: var(--secondary-color);
}

#header .logo img {
  width: 60px;
  height: 60px;
}



/* Country Flags */
.country-flags {
  display: flex;
  margin-left: 20px;
}

.country-flags img {
  width: 30px;
  height: 20px;
  margin-left: 10px;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.country-flags img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white-color);
  white-space: nowrap;
  transition: 0.3s;
}

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

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

/* Language switcher */
.language-switcher {
  margin-left: 10px;
}
.language-switcher .dropdown-menu {
  border-radius: 8px;
  border: 1px solid rgba(23, 73, 93, 0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.language-switcher .dropdown-item {
  font-weight: 600;
  color: var(--primary-color);
}
.language-switcher .dropdown-item:hover {
  background: rgba(23, 73, 93, 0.06);
  color: var(--primary-color);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--black-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
  padding: 0;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--primary-color);
}

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

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

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

/* Mobile Navigation */
.mobile-nav-toggle {
  color: var(--primary-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--black-color);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--white-color);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--secondary-color);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--dark-surface);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .language-switcher .dropdown-menu {
  position: static;
  float: none;
  width: auto;
  margin: 10px 20px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--secondary-color);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: calc(100% - 40px);
  min-height: 80vh;
  margin: 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/hero-bg.jpg") center center;
  background-size: cover;
  position: relative;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
  margin-top: 110px;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white-color);
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 15px 0 0 0;
  font-size: 24px;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--white-color);
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: var(--white-color);
  transition: ease-in-out 0.3s;
}

#hero .icon-box:hover {
  border-color: var(--secondary-color);
  background: var(--secondary-color);
}

#hero .icon-box:hover h3 a, #hero .icon-box:hover i {
  color: var(--primary-color);
}

/* Hero Button */
.hero-btn {
  background: rgba(255, 193, 7, 0.3);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.hero-btn:hover {
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

@media (max-width: 768px) {
  #hero {
    height: auto;
    padding: 80px 0;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sidebar Social
--------------------------------------------------------------*/
.sidebar-social {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 99;
  background: var(--dark-surface);
  padding: 10px;
  border-radius: 10px 0 0 10px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.6);
}

.sidebar-social a {
  display: block;
  color: var(--white-color);
  margin: 10px 0;
  font-size: 20px;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.sidebar-social a:hover {
  color: var(--secondary-color);
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--primary-color);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
  bottom: 0;
  left: calc(50% - 40px);
}

.section-title p {
  margin-bottom: 0;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  color: var(--primary-color);
}

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

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

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

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


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  color: var(--primary-color);
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--secondary-color);
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

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

#services{
  /* Centralizado - removida margem esquerda */
}
.services .icon-box-service {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: var(--dark-surface);
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services .icon-box-service .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--secondary-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .icon-box-service .icon i {
  color: var(--primary-color);
  font-size: 28px;
  line-height: 1;
}

.services .icon-box-service h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box-service h4 a {
  color: var(--white-color);
  transition: ease-in-out 0.3s;
}

.services .icon-box-service .btn-primary { background-color: var(--secondary-color); border-color: var(--secondary-color); color: #000; }

.services .icon-box-service .btn-primary:hover {
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.25);
}

.services .icon-box-service .btn-primary {
  margin-top: auto;
}

.services .icon-box-service p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  flex-grow: 1;
}

.services .icon-box-service:hover {
  border-color: var(--white-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.services .icon-box-service:hover h4 a {
  color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(135deg, #000000, #212121);
  padding: 80px 0;
  text-align: center;
  border-radius: 10px;
  margin: 20px;
}

.cta h3 {
  color: var(--white-color);
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: var(--white-color);
  margin-bottom: 30px;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--white-color);
  color: var(--white-color);
  background: transparent;
}

.cta .cta-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white-color);
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #000;
  background: var(--secondary-color);
}

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

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: var(--white-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: var(--white-color);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: var(--secondary-color);
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

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

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



/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events .card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.events .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.events .card-img {
  overflow: hidden;
  height: 200px;
}

.events .card-img img {
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.events .card-body {
  padding: 25px;
}

.events .card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.events .card-title a:hover {
  color: var(--secondary-color);
}

.events .fst-italic {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.events .card-text {
  color: #6c757d;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

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

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: var(--dark-surface);
  border-radius: 10px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
  color: var(--white-color);
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--secondary-color);
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed { color: #bdbdbd; }

.faq .faq-list a.collapsed:hover {
  color: var(--primary-color);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-card {
  background: var(--dark-surface);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(23, 73, 93, 0.3);
}

.contact-icon i {
  font-size: 32px;
  color: #000000;
}

.contact-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-content p {
  color: #bdbdbd;
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.whatsapp-link {
  color: #25D366;
}

.whatsapp-link:hover {
  color: #128C7E;
}

.phone-list {
  text-align: left;
  margin-bottom: 15px;
}

.phone-list p {
  margin-bottom: 5px;
}

.phone-list a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-list a:hover {
  color: var(--secondary-color);
}

.contact-cta {
  background: linear-gradient(135deg, #000000, #212121);
  padding: 50px 30px;
  border-radius: 20px;
  color: var(--white-color);
  margin-top: 40px;
}

.contact-cta h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-buttons .btn {
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.btn-whatsapp:hover {
  background: #128C7E;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-email {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.btn-email:hover {
  background: #f8d373;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 199, 96, 0.3);
}

.btn-phone {
  background: transparent;
  color: var(--white-color);
  border-color: var(--white-color);
}

.btn-phone:hover {
  background: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-buttons .btn {
    width: 200px;
    justify-content: center;
  }
  
  .contact-cta {
    padding: 30px 20px;
  }
  
  .contact-cta h3 {
    font-size: 24px;
  }
  
  .contact-cta p {
    font-size: 16px;
  }
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
  border-radius: 5px;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: 5px;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 5px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: var(--secondary-color);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

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

.contact .php-email-form button[type="submit"]:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--black-color);
  padding: 0 0 30px 0;
  color: var(--white-color);
  font-size: 14px;
}

#footer .logo img {
  width: 100px;  /* Ajuste conforme necessário */
  height: 100px; /* Deve ser igual à largura para manter o círculo */
  border-radius: 50%;
  object-fit: cover; /* Garante que a imagem preencha o espaço corretamente */
  border: 2px solid black; /* Opcional: adiciona uma borda */
  top: 0%;
  background: black;
  
}

#footer .footer-top {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--secondary-color);
  font-size: 18px;
  line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--secondary-color);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  background: none;
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #f8d373;
}

/* Improve visibility of terms link in footer */
#footer .footer-top .footer-newsletter .footer-terms-link {
  color: #f1f1f1;
  text-decoration: underline;
  font-weight: 600;
}

#footer .footer-top .footer-newsletter .footer-terms-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.7);
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

#footer .credits a {
  color: var(--secondary-color);
}

/*--------------------------------------------------------------
# WhatsApp Button
--------------------------------------------------------------*/
/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

/*--------------------------------------------------------------
# Tour Details Page (gold theme)
--------------------------------------------------------------*/
.tour-hero {
  padding: 40px 0 10px 0;
}

.tour-hero .tour-hero-card {
  background: linear-gradient(135deg, rgba(255,193,7,0.12), rgba(255,193,7,0.05));
  border: 1px solid rgba(255,193,7,0.35);
  border-radius: 16px;
  padding: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tour-hero h1 { color: var(--white-color); font-weight: 800; }
.tour-hero p { color: rgba(255,255,255,0.85); }

.badge-gold {
  display: inline-block;
  background: rgba(255,193,7,0.15);
  border: 1px solid rgba(255,193,7,0.45);
  color: var(--secondary-color);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

.tour-details { padding-top: 20px; }

.tour-info-card {
  background: var(--dark-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.tour-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary-color);
}

.tour-section-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-color);
}

.tour-stops { list-style: none; padding: 0; margin: 0; }
.tour-stops li { display: flex; align-items: center; gap: 10px; padding: 8px 0; color: rgba(255,255,255,0.9); }
.tour-stops li i { color: var(--secondary-color); }

/* Gold Buttons */
.btn-gold {
  background: var(--secondary-color);
  color: #000;
  border: 2px solid var(--secondary-color);
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 18px;
}
.btn-gold:hover { background: transparent; color: var(--secondary-color); }

.btn-outline-gold {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 18px;
}
.btn-outline-gold:hover { background: var(--secondary-color); color: #000; }

/* Swiper customizations for gold theme */
.tour-swiper { --swiper-navigation-color: var(--secondary-color); --swiper-pagination-color: var(--secondary-color); }
.tour-swiper .swiper-pagination-bullet { background: rgba(255,193,7,0.5); opacity: 1; }
.tour-swiper .swiper-pagination-bullet-active { background: var(--secondary-color); }

.tour-thumbs .swiper-slide { opacity: 0.6; border-radius: 8px; overflow: hidden; border: 1px solid transparent; }
.tour-thumbs .swiper-slide img { width: 100%; height: 70px; object-fit: cover; }

/* Padronizar tamanho das imagens principais */
.tour-swiper .swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Garantir que todas as imagens tenham o mesmo tamanho */
.tour-swiper .swiper-slide {
  height: 400px;
  overflow: hidden;
}

.tour-swiper .swiper-slide a {
  display: block;
  height: 100%;
}

.tour-swiper .swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-thumbs .swiper-slide-thumb-active { opacity: 1; border-color: var(--secondary-color); }

@media (max-width: 991px) {
  .tour-hero .tour-hero-card { flex-direction: column; align-items: flex-start; }
}