:root {
  --primary-color: #000000;
  --secondary-color: #d4af37;
  --light-color: #ffffff;
  --dark-color: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--primary-color);
  color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--light-color);
}

p, li, a, span {
  color: var(--light-color);
}

/* Barra de navegação */
.navbar {
  background-color: var(--primary-color);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-brand img {
  height: 50px;
  transition: all 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link {
  color: var(--light-color) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--secondary-color) !important;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Link ativo no menu */
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
  font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link.active:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/home-three-3-1011x800-white.jpg');
  background-size: cover;
  background-position: center;
  color: var(--light-color);
  padding: 150px 0;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

/* Botões */
.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.btn-outline-light {
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--dark-color) !important;
}

/* Seções */
.about-section,
.services-section,
.barbers-section,
.gallery-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--light-color);
}

.section-title {
  position: relative;
  margin-bottom: 50px;
  color: var(--light-color);
  text-align: center;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

/* Sobre */
.about-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.about-image:hover {
  transform: scale(1.02);
  border-color: var(--secondary-color);
}

/* Serviços (Home) */
.service-box {
  background: rgba(30,30,30,0.7);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  border-color: var(--secondary-color);
}

.service-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.service-icon img {
  filter: brightness(0) saturate(100%) invert(77%) sepia(29%) saturate(1203%) hue-rotate(5deg) brightness(92%) contrast(87%);
  transition: all 0.3s ease;
}

.service-box:hover .service-icon img {
  transform: rotate(5deg) scale(1.1);
}

/* Depoimentos */
.testimonials-section {
  background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('images/bg-image-1.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: var(--light-color);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card {
  background: rgba(30,30,30,0.7);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary-color);
  margin: 0 auto 20px;
}

/* Barbeiros */
.barber-card {
  background: rgba(30,30,30,0.7);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: 1px solid rgba(255,255,255,0.1);
}

.barber-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  border-color: var(--secondary-color);
}

.barber-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Galeria (Home) */
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  border-color: var(--secondary-color);
}

/* Contato */
.contact-info {
  margin-bottom: 30px;
}

.contact-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.form-control {
  border-radius: 0;
  margin-bottom: 15px;
  background-color: rgba(30,30,30,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--light-color);
}

.form-control:focus {
  background-color: rgba(30,30,30,0.9);
  border-color: var(--secondary-color);
  color: var(--light-color);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.form-control::placeholder {
  color: #888;
}

.map-container {
  height: 400px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Rodapé */
footer {
  background-color: #111;
  color: var(--light-color);
  padding: 30px 0 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-links h5 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: var(--light-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-links a i {
  margin-right: 5px;
}

.social-icons a {
  color: var(--light-color);
  font-size: 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

.social-icons a[title="Instagram"]:hover {
  color: #e4405f;
}

.social-icons a[title="Facebook"]:hover {
  color: #1877f2;
}

.social-icons a[title="Telegram"]:hover {
  color: #0088cc;
}

.social-icons a[title="WhatsApp"]:hover {
  color: #25d366;
}

/* Botões flutuantes */
.float-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--light-color);
  text-decoration: none;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
  color: var(--light-color);
}

.telegram-float {
  background-color: #0088cc;
  order: 1;
}

.telegram-float:hover {
  background-color: #006699;
  animation: pulse-telegram 1.5s infinite;
}

.whatsapp-float {
  background-color: #25d366;
  order: 2;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  animation: pulse-whatsapp 1.5s infinite;
}

@keyframes pulse-telegram {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 136, 204, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 136, 204, 0);
  }
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Tooltip para botões flutuantes */
.float-btn::before {
  content: attr(title);
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.float-btn:hover::before {
  opacity: 1;
}

/* Página de Serviços */
.services-page-section {
  background-color: #f5f5f5;
  color: var(--dark-color);
  padding: 80px 0;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

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

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

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

.service-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.price-tag {
  background-color: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

.services-page-section .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.services-page-section .btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.services-page-section .section-title {
  color: var(--primary-color);
}

.services-page-section .section-title:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

/* Página de Galeria */
.gallery-page-section {
  padding: 80px 0;
  background-color: var(--primary-color);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  border-color: var(--secondary-color);
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption p {
  margin: 0;
  color: white;
  font-weight: 600;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-lightbox-close:hover {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.divider-white {
  display: none;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .navbar-brand img {
    height: 40px;
  }
  
  .float-buttons {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
  
  .float-btn::before {
    display: none;
  }
  
  .service-card img {
    height: 200px;
  }
  
  .service-card-body {
    padding: 20px;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
  
  .gallery-container {
    grid-template-columns: 1fr;
  }
  
  .gallery-page-section .gallery-img {
    height: 250px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Página de Contato */
.contact-page-section {
  padding: 80px 0;
  background-color: var(--primary-color);
}

.contact-info-card {
  background: rgba(30,30,30,0.7);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

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

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 20px;
  color: var(--secondary-color);
}

.contact-info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.contact-info-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--light-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--secondary-color);
}

.social-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.social-icons-large {
  display: flex;
  gap: 15px;
}

.social-icons-large a {
  width: 50px;
  height: 50px;
  background-color: rgba(30,30,30,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--light-color);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.social-icons-large a:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
}

.social-icons-large a[title="Instagram"]:hover {
  background-color: #e4405f;
  color: white;
}

.social-icons-large a[title="Facebook"]:hover {
  background-color: #1877f2;
  color: white;
}

.social-icons-large a[title="Telegram"]:hover {
  background-color: #0088cc;
  color: white;
}

.social-icons-large a[title="WhatsApp"]:hover {
  background-color: #25d366;
  color: white;
}

.contact-form-card {
  background: rgba(30,30,30,0.7);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-form-card .form-label {
  color: var(--light-color);
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-form-card .form-control {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--light-color);
  border-radius: 5px;
  padding: 12px;
}

.contact-form-card .form-control:focus {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.contact-form-card select.form-control option {
  background-color: var(--dark-color);
  color: var(--light-color);
}

.btn-whatsapp {
  background-color: #25d366;
  border-color: #25d366;
  color: white;
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

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

.map-section {
  padding: 80px 0;
  background-color: var(--primary-color);
}

.map-container-full {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Responsividade para página de contato */
@media (max-width: 768px) {
  .contact-info-card,
  .contact-form-card {
    padding: 20px;
  }
  
  .contact-info-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-info-icon {
    margin-bottom: 10px;
    margin-right: 0;
  }
  
  .social-icons-large {
    gap: 10px;
  }
  
  .social-icons-large a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .map-container-full iframe {
    height: 350px;
  }
}

/* Página Info - SEO */
.info-section {
  padding: 80px 0;
  background-color: var(--primary-color);
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
}

.info-text h2 {
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.info-text p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.info-text ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

.info-text ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.info-card {
  background: rgba(30,30,30,0.7);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
}

.info-card i {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.info-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.table-dark {
  background-color: rgba(30,30,30,0.7);
  border-radius: 10px;
  overflow: hidden;
}

.table-dark th {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 700;
}

.table-dark td {
  border-color: rgba(255,255,255,0.1);
}

/* Página Info - SEO */
.info-section {
  padding: 80px 0;
  background-color: var(--primary-color);
}

.info-content {
  max-width: 900px;
  margin: 0 auto;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 30px;
}

.breadcrumb-item a {
  color: var(--secondary-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--light-color);
}

.location-highlight {
  background: rgba(30,30,30,0.7);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  margin: 30px 0;
}

.location-highlight h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.location-highlight ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.location-highlight ul li {
  margin-bottom: 10px;
}

.location-highlight ul li i {
  color: var(--secondary-color);
}

.map-preview {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.info-text h2 {
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.info-text h3 {
  color: var(--light-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.info-text p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.info-text ul {
  margin-bottom: 30px;
  padding-left: 20px;
}

.info-text ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.info-card {
  background: rgba(30,30,30,0.7);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
}

.info-card i {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.info-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.table-dark {
  background-color: rgba(30,30,30,0.7);
  border-radius: 10px;
  overflow: hidden;
}

.table-dark th {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 700;
}

.table-dark td {
  border-color: rgba(255,255,255,0.1);
}

/* FAQ */
.faq-section {
  margin-top: 20px;
}

.faq-item {
  background: rgba(30,30,30,0.7);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--secondary-color);
}

.faq-item h3 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.faq-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.btn-info {
  background-color: #0088cc;
  border-color: #0088cc;
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-info:hover {
  background-color: #006699;
  border-color: #006699;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.btn-success {
  background-color: #25d366;
  border-color: #25d366;
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

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

/* Responsividade */
@media (max-width: 768px) {
  .location-highlight {
    padding: 20px;
  }
  
  .info-text h2 {
    font-size: 1.5rem;
  }
  
  .info-text h3 {
    font-size: 1.2rem;
  }
  
  .table {
    font-size: 0.9rem;
  }
}