:root {
  --primary-gold: #dcb424;
  --secondary-gold: #c9a220;
  --light-gold: #e6c547;
  --dark-gold: #b8961d;
  --primary-black: #000000;
  --secondary-black: #1a1a1a;
  --tertiary-black: #2d2d2d;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #999999;
  --gray-dark: #333333;

  --font-primary: "Playfair Display", serif;
  --font-secondary: "Inter", sans-serif;

  --shadow-gold: 0 10px 30px rgba(220, 180, 36, 0.3);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.3);
  --gradient-gold: linear-gradient(135deg, #dcb424 0%, #c9a220 100%);
  --gradient-black: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background: var(--primary-black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Loader com Leão */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

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

.lion-icon {
  font-size: 4rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  animation: lionRoar 2s infinite;
}

.lion-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lionRoar 2s infinite;
}

.lion-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.3);
}

.loader-text {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: var(--secondary-black);
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: var(--gradient-gold);
  width: 0%;
  animation: loading 3s ease-in-out;
}

@keyframes lionRoar {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Header Limpo */
.clean-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(220, 180, 36, 0.2);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-clean {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.2);
}

.logo-text {
  position: relative;
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--gray-medium);
  font-weight: 500;
}

.verified-badge {
  color: var(--primary-gold);
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--gray-light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-gold);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  background: var(--gradient-gold);
  color: var(--primary-black);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(220, 180, 36, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-gold);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hero Limpo */
.hero-clean {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--primary-black);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 16px;
  background: rgba(220, 180, 36, 0.1);
  border: 1px solid var(--primary-gold);
  border-radius: 50px;
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.highlight-gold {
  color: var(--primary-gold);
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--gray-medium);
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-medium);
  margin-top: 0.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-gold.primary {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(220, 180, 36, 0.4);
}

.btn-gold.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-gold.secondary:hover {
  background: var(--white);
  color: var(--primary-black);
  transform: translateY(-3px);
}

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

.hero-visual {
  position: relative;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

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

/* Seções Gerais */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 16px;
  background: rgba(220, 180, 36, 0.1);
  border: 1px solid var(--primary-gold);
  border-radius: 50px;
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.badge-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transform: scale(1.3);
}

.section-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Sobre a Empresa */
.about-clean {
  padding: 6rem 0;
  background: var(--secondary-black);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-description {
  font-size: 1.1rem;
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 180, 36, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.about-stat:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stat-info h4 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.2rem;
}

.stat-info span {
  color: var(--gray-medium);
  font-size: 0.9rem;
}

.about-video {
  position: relative;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 2px solid rgba(220, 180, 36, 0.3);
}

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

.video-container:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

/* Serviços Limpos */
.services-clean {
  padding: 6rem 0;
  background: var(--primary-black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 180, 36, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-gold);
}

.service-title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.service-description {
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-btn:hover {
  gap: 1rem;
}

/* Processo Simplificado */
.process-clean {
  padding: 6rem 0;
  background: var(--secondary-black);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 180, 36, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-gold);
}

.step-content h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--white);
}

.step-content p {
  color: var(--gray-medium);
  line-height: 1.6;
}

/* Depoimentos com Vídeos - ATUALIZADO */
.testimonials-clean {
  padding: 6rem 0;
  background: var(--primary-black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 180, 36, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

.testimonial-video {
  width: 100%;
  height: 400px; /* Altura fixa para vídeos verticais */
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--secondary-black);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(220, 180, 36, 0.3);
  position: relative;
}

.testimonial-video:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

/* Player de vídeo personalizado */
.testimonial-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantém proporção e preenche o container */
  border-radius: 13px;
  background: #000;
}

/* Controles customizados do vídeo */
.testimonial-video video::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.testimonial-video video::-webkit-media-controls-current-time-display,
.testimonial-video video::-webkit-media-controls-time-remaining-display {
  color: var(--white);
}

/* Placeholder para vídeos não carregados */
.testimonial-video.placeholder {
  color: var(--gray-medium);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-video.placeholder i {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

/* Overlay de play customizado */
.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(220, 180, 36, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.testimonial-video:hover .video-overlay {
  opacity: 1;
}

.video-overlay:hover {
  background: var(--primary-gold);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Responsividade para vídeos */
@media (max-width: 768px) {
  .testimonial-video {
    height: 350px; /* Menor em mobile */
  }

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

@media (max-width: 480px) {
  .testimonial-video {
    height: 300px;
  }
}

.testimonial-content {
  flex: 1;
  margin-bottom: 2rem;
}

.testimonial-content p {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-gold);
  flex-shrink: 0;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-info h4 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.author-info span {
  color: var(--gray-medium);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating i {
  color: var(--primary-gold);
  font-size: 0.9rem;
}

/* Contato Limpo */
.contact-clean {
  padding: 6rem 0;
  background: var(--secondary-black);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-description {
  font-size: 1.1rem;
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 180, 36, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.method-info h4 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.method-info span {
  color: var(--gray-medium);
  font-size: 0.9rem;
}

.contact-form-clean {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 180, 36, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--gray-medium);
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  color: var(--primary-gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(220, 180, 36, 0.3);
  border-radius: 10px;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(220, 180, 36, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-medium);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ff4444;
  box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group select option {
  background: var(--secondary-black);
  color: var(--white);
}

.field-help {
  display: block;
  color: var(--gray-medium);
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.field-help.error {
  color: #ff4444;
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--gray-medium);
  font-size: 0.8rem;
}

.form-security i {
  color: var(--primary-gold);
}

/* Footer Limpo */
.footer-clean {
  background: var(--primary-black);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin: 1rem 0 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  order: 2;
  margin: 0.5rem 0;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(220, 180, 36, 0.1);
  border: 1px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gradient-gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}

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

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: var(--gray-medium);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-gold);
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--gray-medium);
  font-size: 0.9rem;
  justify-content: center;
}

.footer-contact .contact-item i {
  color: var(--primary-gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-brand .logo-image {
  width: 60px;
  height: 60px;
  padding: 8px;
}

.footer-brand .logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.2);
}

.footer-brand .brand-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-divider {
  height: 1px;
  background: rgba(220, 180, 36, 0.2);
  margin-bottom: 1rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-medium);
  font-size: 0.8rem;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

/* Adicionando estilos para o selo do Reclame Aqui no rodapé */
.footer-verification {
  order: 1;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(220, 180, 36, 0.1);
}

#ra-verified-seal {
  max-width: 200px;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: brightness(0.9);
}

#ra-verified-seal:hover {
  opacity: 1;
  filter: brightness(1);
  transform: scale(1.02);
}

.footer-info {
  order: 2;
}

.social-links {
  order: 3;
}

/* WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: var(--gradient-gold);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(220, 180, 36, 0.4);
}

.whatsapp-float i {
  font-size: 1.3rem;
}

.whatsapp-text {
  font-size: 0.9rem;
}

/* Botão Voltar ao Topo */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: var(--shadow-gold);
}

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

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(220, 180, 36, 0.4);
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-stats {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

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

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* Responsividade para o selo do Reclame Aqui */
  .footer-verification {
    margin-bottom: 0.8rem;
    padding: 0.8rem 0;
  }

  #ra-verified-seal {
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }

  .section-container {
    padding: 0 1rem;
  }

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

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

  .service-card,
  .contact-form-clean {
    padding: 1.5rem;
  }

  .contact-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .logo-image {
    width: 40px;
    height: 40px;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estados de Loading */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-gold);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Scroll Personalizado */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--secondary-black);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-gold);
}

.btn-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transform: scale(1.3);
}
