/* Base Styles and Reset */
:root {
  --primary-color: #06b25f;
  --primary-gradient: linear-gradient(135deg, #06b25f 0%, #05884a 100%);
  --secondary-color: #0d1e30;
  --secondary-gradient: linear-gradient(135deg, #0d1e30 0%, #1a3b5d 100%);
  --dark-color: #0a192f;
  --light-color: #f4f7fb;
  --gray-color: #667085;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Common Components */
.btn-primary {
  display: inline-block;
  background-image: var(--primary-gradient);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  background-image: linear-gradient(135deg, #05884a 0%, #06b25f 100%);
  transform: translateY(-3px);
  box-shadow: var(--hover-shadow);
}

.btn-grande {
  padding: 16px 36px;
  font-size: 18px;
}

.btn-whatsapp {
  background-image: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border-radius: 4px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.btn-whatsapp i {
  margin-right: 8px;
}

.btn-whatsapp:hover {
  background-image: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  transform: translateY(-3px);
  box-shadow: var(--hover-shadow);
}

.animate-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 178, 95, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(6, 178, 95, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(6, 178, 95, 0);
  }
}

.glow-effect {
  box-shadow: 0 0 5px #06b25f, 0 0 10px #06b25f, 0 0 15px #06b25f;
  animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 5px #06b25f, 0 0 10px #06b25f, 0 0 15px #06b25f;
  }
  to {
    box-shadow: 0 0 10px #06b25f, 0 0 20px #06b25f, 0 0 30px #06b25f;
  }
}

.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  20%,
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-image: var(--primary-gradient);
  border-radius: 2px;
}

/* Header & Navigation */
header {
  position: relative;
  background-color: var(--dark-color);
  color: white;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(
      to right,
      rgba(10, 25, 47, 0.7) 0%,
      rgba(10, 25, 47, 0.5) 100%
    ),
    url("assets/oficina-mecanica-especializada-fachada-florianopolis.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.navbar {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: var(--transition);
  background-color: transparent;
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(13, 30, 48, 0.9);
  backdrop-filter: blur(15px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-3px);
}

.logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 2rem;
  position: relative;
}

.nav-menu a {
  font-weight: 500;
  transition: var(--transition);
  padding: 5px 0;
  display: inline-block;
  position: relative;
}

.nav-menu a:not(.btn-whatsapp)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:not(.btn-whatsapp):hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right, #fff, #ccc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Marcas Section */
.marcas-section {
  background-color: var(--light-color);
  padding: 40px 0;
  overflow: hidden;
}

.marcas-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 30px;
  overflow: hidden;
}

.marcas-track {
  display: flex;
  width: fit-content;
}

/* Efeitos de animação para as trilhas */
.marcas-track-left {
  animation: slide-left 15s linear infinite;
}

.marcas-track-right {
  animation: slide-right 15s linear infinite;
}

.marca-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  transition: transform 0.3s ease;
  height: 200px;
  text-align: center;
  margin: 0 auto;
}

.marca-item:hover {
  transform: translateY(-5px);
}

.marca-item img {
  max-width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  margin: 0 auto;
}

@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slide-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.marcas-track:hover {
  animation-play-state: paused;
}

/* Sobre Section */
.about {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2306b25f' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 25px;
}

.about-text p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}

.image-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}

.image-overlay img {
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    to top,
    rgba(13, 30, 48, 0.8) 0%,
    rgba(13, 30, 48, 0) 60%
  );
  opacity: 0;
  transition: all 0.5s ease;
  padding: 20px;
  text-align: center;
}

.image-overlay:hover .overlay-content {
  opacity: 1;
}

.overlay-content h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.5rem;
  transform: translateY(20px);
  transition: all 0.5s ease;
  transition-delay: 0.2s;
}

.image-overlay:hover .overlay-content h3 {
  transform: translateY(0);
}

.overlay-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
  transition-delay: 0.3s;
}

.image-overlay:hover .overlay-btn {
  transform: translateY(0);
  opacity: 1;
}

.image-overlay:hover .overlay-btn {
  background-color: white;
  color: var(--primary-color);
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateX(10px);
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature i {
  color: var(--primary-color);
  font-size: 24px;
}

.feature span {
  font-weight: 500;
  color: var(--secondary-color);
}

/* Serviços Especiais Section */
.servicos-especiais {
  background-image: var(--secondary-gradient);
  color: white;
  position: relative;
  overflow: hidden;
}

.servicos-especiais::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.03) 25%,
      transparent 25%
    ),
    linear-gradient(225deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%);
  background-position: 10px 0, 10px 0, 0 0, 0 0;
  background-size: 20px 20px;
  background-repeat: repeat;
}

.servicos-especiais h2 {
  color: white;
  position: relative;
  z-index: 2;
}

.servico-especial {
  padding: 20px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.servico-especial:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(6, 178, 95, 0.3);
}

.servico-especial i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 20px;
  padding: 8px;
  background: rgba(6, 178, 95, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  min-width: 36px;
  text-align: center;
}

.servico-especial:hover i {
  background: rgba(6, 178, 95, 0.2);
  transform: rotateY(360deg);
}

.servico-especial span {
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.4;
}

/* Serviços Especiais Section - Expandable */
.servico-especial.expandable {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}

.servico-especial.active {
  margin-bottom: 15px;
  z-index: 3;
}

.servico-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.servico-icon {
  color: var(--primary-color);
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background-color: rgba(6, 178, 95, 0.1);
  border-radius: 50%;
  margin-left: auto;
}

.servico-header i:first-child {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 20px;
  padding: 8px;
  background: rgba(6, 178, 95, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  min-width: 36px;
  text-align: center;
}

.servico-header span:not(.servico-icon) {
  flex: 1;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.4;
}

.servico-especial.active .servico-icon {
  transform: rotate(45deg);
  background-color: var(--primary-color);
  color: white;
}

.servico-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  opacity: 0;
  width: 100%;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: none;
}

.servico-especial.active .servico-details {
  max-height: 500px; /* Aumentado para acomodar mais texto */
  opacity: 1;
  margin-top: -1px;
  transition: max-height 0.6s ease, opacity 0.3s ease, margin 0.3s ease;
}

.servico-details p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .servico-header {
    padding: 15px;
  }

  .servico-header i:first-child {
    font-size: 18px;
    padding: 6px;
    min-width: 30px;
  }

  .servico-header span:not(.servico-icon) {
    font-size: 0.95rem;
  }

  .servico-details p {
    font-size: 0.9rem;
    padding: 15px;
  }

  .servico-especial.active .servico-details {
    max-height: 350px; /* More space for mobile */
  }

  .marcas-slider {
    border-radius: 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-shadow: none;
  }

  .marcas-slider::before,
  .marcas-slider::after {
    display: none;
  }

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

.especiais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.satisfaction {
  text-align: center;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.satisfaction p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Equipe Section */
.team {
  text-align: center;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2306b25f' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.team-image {
  margin: 0 auto 40px;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.team-image img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.team-image:hover img {
  transform: scale(1.05);
}

.team-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(13, 30, 48, 0.8) 0%,
    rgba(13, 30, 48, 0) 50%
  );
  pointer-events: none;
}

.team-description {
  max-width: 700px;
  margin: 0 auto 30px;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  top: -60px;
  z-index: 10;
}

.team-description p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--secondary-color);
}

/* FAQ Section */
.faq {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      135deg,
      rgba(6, 178, 95, 0.03) 25%,
      transparent 25%
    ),
    linear-gradient(225deg, rgba(6, 178, 95, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, rgba(6, 178, 95, 0.03) 25%, transparent 25%),
    linear-gradient(315deg, rgba(6, 178, 95, 0.03) 25%, transparent 25%);
  background-position: 10px 0, 10px 0, 0 0, 0 0;
  background-size: 20px 20px;
  background-repeat: repeat;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-left: 4px solid var(--primary-color);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.faq-icon {
  color: var(--primary-color);
  font-size: 18px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: rgba(6, 178, 95, 0.1);
  border-radius: 50%;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: var(--primary-color);
  color: white;
}

.faq-question h3 {
  color: var(--secondary-color);
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 600;
  flex: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 2000px; /* Aumentado para acomodar mais texto nas perguntas frequentes */
  opacity: 1;
  transition: max-height 0.8s ease, opacity 0.3s ease;
  padding: 0 20px 20px;
}

.faq-answer p {
  color: var(--gray-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Estilos adicionais para o FAQ expandido */
.faq-answer h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.faq-answer h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.faq-answer ul,
.faq-answer ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.faq-answer ul li,
.faq-answer ol li {
  margin-bottom: 8px;
}

.faq-answer ul ul,
.faq-answer ol ol,
.faq-answer ul ol,
.faq-answer ol ul {
  margin-top: 8px;
  margin-left: 20px;
}

.faq-answer hr {
  margin: 20px 0;
  border: none;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.faq-answer .btn {
  display: inline-block;
  margin-top: 10px;
}

.faq-answer strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.faq-answer em {
  font-style: italic;
  opacity: 0.8;
}

/* CTA Section */
.cta {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  flex: 1;
  text-align: left;
  margin-bottom: 0;
  padding: 30px;
  background: rgba(6, 178, 95, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-content h2 {
  margin-bottom: 20px;
}

.parallax-bg {
  background-image: linear-gradient(
      rgba(6, 178, 95, 0.9),
      rgba(6, 178, 95, 0.9)
    );
  padding: 100px 0;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05) 25%,
      transparent 25%
    ),
    linear-gradient(225deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
  background-position: 10px 0, 10px 0, 0 0, 0 0;
  background-size: 20px 20px;
  background-repeat: repeat;
}

.cta h2 {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cta p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cta .btn-large {
  background-color: white;
  color: var(--primary-color);
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid white;
}

.cta .btn-large i {
  font-size: 1.5rem;
}

.cta .btn-large:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Footer Section */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 25%,
      transparent 25%
    ),
    linear-gradient(225deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%);
  background-position: 10px 0, 10px 0, 0 0, 0 0;
  background-size: 20px 20px;
  background-repeat: repeat;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  text-align: left;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

footer h3 {
  margin-bottom: 25px;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

footer h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

footer p {
  margin-bottom: 15px;
  color: var(--light-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

footer p i {
  color: white;
  font-size: 1.2rem;
}

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

.social-icon-hover {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-image: var(--primary-gradient);
  transition: all 0.4s ease;
  z-index: -1;
}

.social-icon-hover:hover::before {
  left: 0;
}

.social-icon-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon-hover i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.copyright p {
  font-size: 0.9rem;
  color: var(--gray-color);
  justify-content: center;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 50px;
  width: 50px;
  background-image: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.scroll-top:hover {
  background-image: none;
  background-color: white;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Animations */
.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Additional Media Queries for better responsiveness */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .about-text h2 {
    text-align: center;
  }

  h2 {
    font-size: 2rem;
  }

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

  .team-description {
    top: -40px;
  }

  .cta h2 {
    font-size: 2.2rem;
  }

  .reviews-average {
    flex-direction: column;
    gap: 20px;
  }

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

  .review-card {
    min-height: 320px;
  }

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

  .cta-content {
    text-align: center;
    margin-top: 2rem;
  }

  .map-container {
    width: 100%;
  }

  .video-hero .hero-content h1 {
    font-size: 2.8rem;
  }
  .subtitle-container p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    background-color: var(--secondary-color);
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
    width: 100%;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  .footer-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }

  footer p {
    justify-content: center;
  }

  .team-description {
    top: -20px;
    padding: 20px;
  }

  .satisfaction {
    padding: 20px;
  }

  .review-card {
    padding: 20px;
    min-height: auto;
  }

  .review-text {
    max-height: none;
  }

  .video-hero {
    height: 100vh;
    overflow: hidden;
    max-height: 100vh;
  }

  .video-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
  }

  #youtube-player {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 150% !important;
    min-height: 150% !important;
    width: auto !important;
    height: auto !important;
    transform: translate(-50%, -50%) scale(1.8) !important;
    pointer-events: none; /* Prevents interaction with the video */
    z-index: 1;
  }

  .video-background iframe {
    position: absolute;
    width: 100vw !important;
    height: 100vh !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.3); /* Amplia para eliminar barras pretas */
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
  }

  /* Para o overlay ficar na frente do vídeo */
  .video-overlay {
    z-index: 2;
  }

  /* Ajuste para o conteúdo ficar na frente */
  .hero-content {
    z-index: 3;
    position: relative;
  }

  .map-container iframe {
    height: 350px;
  }

  .video-hero .hero-content {
    gap: 1.5rem;
    margin-top: 4rem;
  }
  .video-hero .hero-content h1 {
    font-size: 2.2rem;
  }
  .subtitle-container p {
    font-size: 1.1rem;
  }
  .hero-content .agendamento-btn {
    font-size: 1.1rem;
    padding: 12px 30px;
  }

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

  .footer-logo {
    text-align: center;
    margin: 0 auto;
  }

  .footer-logo img {
    margin: 0 auto 20px;
  }

  .footer-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    justify-content: center;
  }

  footer p {
    justify-content: center;
  }
}

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

  h2 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .especiais-grid {
    grid-template-columns: 1fr;
  }

  .scroll-top {
    height: 40px;
    width: 40px;
    bottom: 20px;
    right: 20px;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .team-description {
    margin-top: -30px;
    padding: 15px;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .cta p {
    font-size: 1.1rem;
  }

  .reviews-slider {
    padding-bottom: 40px;
  }

  .review-author {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-container iframe {
    height: 300px;
  }

  .video-hero .hero-content {
    margin-top: 2rem;
    gap: 1rem;
  }
  .video-hero .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
  }
  .subtitle-container {
    padding: 10px 20px;
    border-radius: 30px;
  }
  .subtitle-container p {
    font-size: 0.9rem;
  }
  .hero-content .agendamento-btn {
    font-size: 1rem;
    padding: 10px 25px;
  }

  .service-image {
    display: none; /* Hide image on smallest screens */
  }

  .service-text {
    width: 100%;
  }

  .service-list li {
    margin-bottom: 8px;
  }

  .service-highlight .agendamento-btn {
    width: 100%;
    text-align: center;
  }

  .marca-item img {
    height: 160px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
  }

  .marca-item {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 400px) {
  .video-hero .hero-content h1 {
    font-size: 1.3rem;
  }

  .video-hero .hero-content {
    gap: 0.8rem;
  }

  .subtitle-container p {
    font-size: 0.9rem;
  }

  .hero-content .agendamento-btn {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

/* Botão de Agendamento com Bordas Laterais */
.agendamento-btn {
  position: relative;
  border-radius: 8px;
  padding: 12px 28px;
  box-shadow: 0 4px 15px rgba(6, 178, 95, 0.3);
  transition: all 0.3s ease;
  background-image: var(--primary-gradient);
  color: white;
  border: none;
}

.agendamento-btn:hover {
  background-image: linear-gradient(135deg, #05884a 0%, #06b25f 100%);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(6, 178, 95, 0.4);
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.video-container:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

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

/* Reviews Section */
.reviews {
  background-color: white;
  position: relative;
}

.reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2306b25f' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.reviews-slider {
  margin-top: 40px;
  padding-bottom: 50px;
  position: relative;
}

.reviews-slider .swiper-button-next,
.reviews-slider .swiper-button-prev {
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
}

.reviews-slider .swiper-button-next:after,
.reviews-slider .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.reviews-slider .swiper-pagination-bullet {
  background-color: var(--primary-color);
  opacity: 0.7;
}

.reviews-slider .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  opacity: 1;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 178, 95, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 15px;
  min-height: 280px;
}

.review-card:hover {
  box-shadow: 0 20px 40px rgba(6, 178, 95, 0.15);
  transform: translateY(-10px);
}

.review-stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 15px;
}

.review-text {
  flex-grow: 1;
  margin-bottom: 20px;
  overflow-y: auto;
  max-height: 200px;
}

.review-text p {
  font-style: italic;
  color: #555;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.author-info {
  text-align: center;
}

.author-info h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.google-badge {
  background-color: #f5f5f5;
  color: #555;
  font-size: 0.9rem;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0 auto;
}

.google-badge i {
  color: #4285f4;
}

.reviews-average {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.average-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
}

.rating-stars {
  color: #ffc107;
  font-size: 20px;
  margin: 10px 0;
}

.rating-count {
  color: #777;
  font-size: 0.9rem;
}

.btn-review {
  background-color: white;
  color: #444;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #ddd;
}

.btn-review i {
  color: #4285f4;
  font-size: 1.2rem;
}

.btn-review:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Video Hero Section */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background-color: #000;
}

#youtube-player {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.5);
  pointer-events: none;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 30, 48, 0.8) 0%,
    rgba(10, 25, 47, 0.75) 100%
  );
  z-index: 10;
  pointer-events: none;
}

.fallback-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      to right,
      rgba(10, 25, 47, 0.7) 0%,
      rgba(10, 25, 47, 0.5) 100%
    ),
    url("assets/equipe.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 1;
  transition: opacity 1s ease;
}

.youtube-loaded .fallback-image {
  opacity: 0;
}

/* Responsivo para vídeo em mobile */
@media (max-width: 768px) {
  .video-hero {
    height: 100vh;
    max-height: 100vh;
  }
  
  #youtube-player {
    min-width: 150% !important;
    min-height: 150% !important;
    transform: translate(-50%, -50%) scale(1.8) !important;
  }
}

/* Ajustes para telas muito estreitas */
@media (max-width: 480px) and (orientation: portrait) {
  #youtube-player {
    transform: translate(-50%, -50%) scale(2.2) !important;
  }
}

/* Ajustes para telas em landscape */
@media (max-width: 900px) and (orientation: landscape) {
  #youtube-player {
    transform: translate(-50%, -50%) scale(1.5) !important;
  }
}

/* Classe auxiliar adicionada via JavaScript */
body.mobile-video #youtube-player {
  min-width: 150% !important;
  min-height: 150% !important;
  transform: translate(-50%, -50%) scale(1.8) !important;
}

/* Estilos específicos para mobile */
@media (max-width: 768px) {
  .video-hero {
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
  }

  .video-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
  }

  #youtube-player {
    min-width: 150% !important;
    min-height: 150% !important;
    width: auto !important;
    height: auto !important;
    transform: translate(-50%, -50%) scale(1.8) !important;
  }
}

/* Específicos para dispositivos em portrait muito estreitos */
@media (max-width: 480px) and (orientation: portrait) {
  #youtube-player {
    transform: translate(-50%, -50%) scale(2.2) !important;
  }
}

/* Específicos para dispositivos em landscape */
@media (max-width: 900px) and (orientation: landscape) {
  #youtube-player {
    transform: translate(-50%, -50%) scale(1.5) !important;
  }
}

/* Estilos para quando a classe mobile-video é adicionada pelo JS */
body.mobile-video .video-background {
  overflow: hidden;
  background-color: #000;
}

body.mobile-video .video-hero {
  height: 100vh;
  max-height: 100vh;
  background-color: #000;
}

body.mobile-video #youtube-player {
  min-width: 150% !important;
  min-height: 150% !important;
  width: auto !important;
  height: auto !important;
  transform: translate(-50%, -50%) scale(1.8) !important;
}

/* Estilo específico quando o vídeo estiver carregado */
.youtube-loaded .fallback-image {
  opacity: 0;
}

.video-hero .hero-content {
  position: relative;
  z-index: 20;
  max-width: 900px;
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 1s ease;
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.video-hero .hero-content h1 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
}

.video-hero .hero-content .highlight {
  color: #b1cae4; /* Cor azul da logo */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
}

.video-hero .hero-content .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #06b25f, transparent);
}

.subtitle-container {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px 30px;
  border-radius: 50px;
  margin: 0.5rem 0 1.5rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.subtitle-container p {
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-text {
  color: #06b25f; /* Cor verde da logo */
  font-weight: 600;
}

.hero-content .agendamento-btn {
  font-size: 1.2rem;
  padding: 15px 35px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 50px;
  transform: scale(1);
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(6, 178, 95, 0.4);
}

.hero-content .agendamento-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(6, 178, 95, 0.6);
}

/* Google Map Container */
.map-container {
  width: 100%;
  /* margin-top: 3rem; removido para alinhamento vertical */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.map-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 3px;
  background: linear-gradient(135deg, #06b25f, #05884a);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Update CTA section for map integration */
.cta .container {
  max-width: 1400px;
}

.cta-flex-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.map-container {
  flex: 1;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cta-content {
  flex: 1;
  text-align: left;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .cta-flex-container {
    flex-direction: column;
  }

  .cta-content {
    text-align: center;
    margin-top: 2rem;
  }
}

/* Premium Effects & Styling */
.btn-primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(6, 178, 95, 0.2);
  transition: all 0.4s ease;
}

.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn-primary:hover:before {
  left: 100%;
}

.reviews-slider .swiper-slide {
  transition: transform 0.3s ease;
}

.reviews-slider .swiper-slide-active {
  transform: scale(1.05);
}

.review-card {
  border: 1px solid rgba(6, 178, 95, 0.1);
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
  box-shadow: 0 20px 40px rgba(6, 178, 95, 0.15);
  transform: translateY(-10px);
}

.footer {
  background: linear-gradient(135deg, #0d1e30 0%, #1a3b5d 100%);
}

/* Hide fallback when YouTube player is loaded */
.youtube-loaded .fallback-image {
  opacity: 0;
}

/* Service Highlight Section */
.service-highlight {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.service-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2306b25f' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.service-content {
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.service-text {
  flex: 3;
}

.service-image {
  flex: 2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

.service-highlight h3 {
  color: var(--secondary-color);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 25px 0 15px;
}

.service-highlight h3:first-child {
  margin-top: 0;
}

.service-highlight p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.service-list {
  margin: 15px 0 25px;
  list-style: none;
}

.service-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.service-list i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

.service-highlight .agendamento-btn {
  margin-top: 20px;
  display: inline-block;
}

@media (max-width: 992px) {
  .service-content {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .service-text {
    flex: 1;
  }

  .service-image {
    flex: 1;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .service-highlight h3 {
    font-size: 1.4rem;
  }

  .service-highlight p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .service-highlight h3 {
    font-size: 1.3rem;
  }

  .service-list {
    margin: 10px 0 20px;
  }
}

.mobile-hidden {
  display: block;
}

@media (max-width: 576px) {
  .mobile-hidden {
    display: none;
  }
}

.service-content.two-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service-column {
  flex: 1;
  min-width: 280px;
}

.service-action {
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  .service-content.two-columns {
    flex-direction: column;
  }

  .service-column {
    flex: 100%;
  }
}

/* Estilo específico quando o vídeo mobile está ativo */
body.mobile-video .video-background {
  overflow: hidden;
  background-color: #000; /* Fundo preto para evitar espaços vazios */
}

body.mobile-video .video-hero {
  height: 100vh;
  max-height: 100vh;
  background-color: #000;
}

body.mobile-video #youtube-player,
body.mobile-video .video-background iframe {
  width: 100vw !important;
  height: 100vh !important;
  transform: scale(
    1.5
  ) !important; /* Ampliação mais agressiva para eliminar barras */
  transform-origin: center center;
}

/* Estilos mobile para os serviços */
@media (max-width: 768px) {
  /* Estilos existentes para mobile */

  /* Ajustes para os serviços especiais */
  .servicos-especiais {
    padding: 40px 0;
  }

  .servicos-especiais .section-title {
    margin-bottom: 1.2rem;
  }

  .especiais-grid {
    gap: 10px;
  }

  .servico-header {
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
    border: none;
    box-shadow: none;
  }

  .servico-especial.expandable {
    margin-bottom: 2px;
  }

  .servico-especial.active {
    margin-bottom: 2px;
  }

  .servico-header i:first-child {
    font-size: 16px;
    padding: 6px;
    min-width: 30px;
    margin-right: 10px;
  }

  .servico-header span:not(.servico-icon) {
    font-size: 1rem;
  }

  .servico-details {
    max-height: 0;
    background: rgba(255, 255, 255, 0.05);
    border: none;
  }

  .servico-details p {
    padding: 10px 12px;
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .servico-especial.active .servico-details {
    max-height: 250px;
  }

  .satisfaction {
    margin-top: 20px;
    padding: 15px;
  }

  .satisfaction p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  /* Ajustes ainda mais compactos para telas pequenas */
  .servicos-especiais {
    padding: 30px 0;
  }

  .servico-header {
    padding: 10px 12px;
  }

  .servico-header i:first-child {
    font-size: 14px;
    padding: 5px;
    min-width: 24px;
  }

  .servico-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .servico-header span:not(.servico-icon) {
    font-size: 0.9rem;
  }

  .servico-details p {
    padding: 10px;
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .satisfaction {
    padding: 10px 15px;
  }
}

@media (max-width: 768px) {
  /* Estilos existentes para mobile */

  /* Otimização do grid na versão mobile */
  .especiais-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 20px;
  }

  /* Restante dos estilos... */
}

@media (max-width: 768px) {
  /* Remover efeitos hover e transformações */
  .servico-especial:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
  }

  .servico-especial i:hover {
    transform: none;
  }

  /* Reduzir margens e paddings */
  .section-title {
    margin-bottom: 15px;
  }

  .section-title:after {
    width: 60px;
    height: 3px;
  }

  .container {
    padding: 0 20px;
  }

  /* Espaçamento vertical entre seções */
  .servicos-especiais + .marcas-section {
    padding-top: 20px;
    margin-top: 0;
  }
}

/* Responsivo para as marcas */
@media (max-width: 992px) {
  .marca-item img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .marca-item img {
    height: 200px;
  }

  .marcas-container {
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .marca-item img {
    height: 160px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
  }

  .marca-item {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* Sobre Section */

/* Marcas Slider Styles */
.marcas-section {
  padding: 4rem 0;
  background-color: var(--light-color);
}

/* Car Slider Styles */
.marcas-slider {
  padding: 2rem 0;
  position: relative;
  margin-bottom: 3rem;
}

.marca-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  transition: transform 0.3s ease;
  height: 200px;
  text-align: center;
  margin: 0 auto;
}

.marca-item:hover {
  transform: translateY(-5px);
}

.marca-item img {
  max-width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  margin: 0 auto;
}

/* Navigation buttons */
.marcas-slider .swiper-button-next,
.marcas-slider .swiper-button-prev {
  color: var(--primary-color);
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.marcas-slider .swiper-button-next:after,
.marcas-slider .swiper-button-prev:after {
  font-size: 1.2rem;
}

/* Pagination */
.marcas-slider .swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.5;
}

.marcas-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Logo Marquee Styles */
.section-subtitle {
  text-align: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.marcas-container {
  overflow: hidden;
  padding: 1rem 0;
  position: relative;
}

.marcas-track {
  display: flex;
  white-space: nowrap;
  width: 100%;
}

.marcas-track-left {
  animation: marquee-left 25s linear infinite;
}

.marcas-track-right {
  animation: marquee-right 25s linear infinite;
  margin-top: 2rem;
}

.marca-logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 1.5rem;
  flex-shrink: 0;
  width: 100px;
  height: 60px;
}

.marca-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.marca-logo:hover img {
  opacity: 1;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .marcas-section {
    padding: 2rem 0;
  }

  .marcas-slider {
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .marca-item {
    padding: 0.5rem;
    height: 160px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .marca-item img {
    max-height: 140px;
    margin: 0 auto;
    object-fit: contain;
  }

  .marcas-slider .swiper-button-next,
  .marcas-slider .swiper-button-prev {
    display: none;
  }

  .section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .marca-logo {
    width: 80px;
    height: 40px;
    margin: 0 1rem;
  }

  .marca-logo img {
    max-height: 40px;
  }
}



/* Mobile Only Video Styles */
.mobile-only-video {
  display: block; /* Visível em todas as telas para teste */
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.mobile-only-video .video-container {
  position: relative;
  width: 100%;
  min-height: 230px;
  overflow: hidden;
  border-radius: 10px;
}

.mobile-only-video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .mobile-only-video {
    display: block; /* Mostrado apenas em telas menores que 768px */
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 10px;
  }
}

/* Hero Styles */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 30, 48, 0.8) 0%,
    rgba(10, 25, 47, 0.75) 100%
  );
  z-index: 10;
  pointer-events: none;
}

/* Mobile styles */
@media (max-width: 768px) {
  .video-hero {
    height: 100vh;
    max-height: 100vh;
  }
}

/* Extra adjustments for very narrow screens in portrait mode */
@media (max-width: 480px) and (orientation: portrait) {
  .hero-background {
    background-position: center center;
  }
}

/* Ajustes para centralização do footer no mobile */
@media (max-width: 768px) {
  .footer-content {
    text-align: center;
  }

  .footer-logo {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo img {
    margin: 0 auto 20px;
  }

  .footer-logo p {
    margin: 0 auto;
    text-align: center;
  }
}

/* YouTube Placeholder Styles */
.youtube-placeholder {
  position: relative;
  cursor: pointer;
  display: block;
  width: 100%;
  min-height: 200px;
  background: #000;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.youtube-placeholder:hover {
  transform: scale(1.02);
}

.youtube-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.youtube-placeholder .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.youtube-placeholder:hover .play-button {
  background: rgba(255, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.youtube-placeholder .play-button svg {
  width: 68px;
  height: 48px;
}

/* Estilos específicos para containers de vídeo */
.video-container {
  position: relative;
  width: 100%;
  min-height: 200px;
}

.about-image .video-container {
  min-height: 315px;
}

.mobile-only-video .video-container {
  min-height: 230px;
}

/* Mobile optimizations for YouTube placeholders */
@media (max-width: 768px) {
  .youtube-placeholder {
    min-height: 180px;
  }
  
  .youtube-placeholder img {
    min-height: 180px;
  }
  
  .youtube-placeholder .play-button {
    width: 60px;
    height: 42px;
  }
  
  .youtube-placeholder .play-button svg {
    width: 60px;
    height: 42px;
  }
  
  .about-image .video-container {
    min-height: 230px;
  }
  
  .mobile-only-video .video-container {
    min-height: 200px;
  }
}
