:root {
  --amarelo: #f5c518;
  --amarelo-escuro: #d4a017;
  --preto: #0a0a0a;
  --cinza-escuro: #1a1a1a;
  --cinza: #666;
  --cinza-claro: #f4f4f4;
  --branco: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--preto);
  background: var(--branco);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--preto);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
  padding: 15px 0;
}

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

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

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--amarelo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--preto);
  font-size: 1.2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--branco);
}

.logo-sub {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--amarelo);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--branco);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

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

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

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

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--branco);
  border-radius: 2px;
  transition: 0.3s;
}

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

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

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

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

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--preto);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 25px;
    transition: right 0.4s;
  }

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

  .nav-link {
    font-size: 1.1rem;
  }
}
.hero {
  min-height: 100vh;
  background: radial-gradient(
      ellipse at top right,
      rgba(245, 197, 24, 0.15),
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(245, 197, 24, 0.08),
      transparent 50%
    ),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--amarelo);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 197, 24, 0.1);
  backdrop-filter: blur(10px);
  color: var(--amarelo);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 197, 24, 0.3);
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.1);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 10px #25d366;
  animation: blink 1.5s infinite;
}

.badge-live {
  color: #25d366;
  font-size: 0.8rem;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--amarelo) 0%,
    #ffd966 50%,
    var(--amarelo-escuro) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 550px;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--amarelo);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #25d366 0%, #20b858 100%);
  color: var(--branco);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--branco);
  border-color: var(--amarelo);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--amarelo);
  color: var(--preto);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 197, 24, 0.4);
}

.btn-outline i {
  transition: transform 0.3s;
}

.btn-outline:hover i {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--amarelo);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.stat-number i {
  font-size: 1rem;
  color: var(--amarelo);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-visual-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
}

.hero-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle-inner {
  width: 220px;
  height: 220px;
  background: linear-gradient(
    135deg,
    var(--amarelo) 0%,
    var(--amarelo-escuro) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(245, 197, 24, 0.4),
    inset 0 -10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 3;
  animation: pulse 3s ease-in-out infinite;
}

.hero-circle-inner i {
  font-size: 6rem;
  color: var(--preto);
  transform: rotate(-45deg);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(245, 197, 24, 0.3);
}

.ring-1 {
  width: 320px;
  height: 320px;
  animation: rotate 20s linear infinite;
  border-style: dashed;
}

.ring-2 {
  width: 380px;
  height: 380px;
  border-color: rgba(245, 197, 24, 0.15);
  animation: rotate 30s linear infinite reverse;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 60px rgba(245, 197, 24, 0.4),
      inset 0 -10px 30px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 100px rgba(245, 197, 24, 0.6),
      inset 0 -10px 30px rgba(0, 0, 0, 0.2);
  }
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--preto);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 4;
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
  color: var(--amarelo-escuro);
  font-size: 1.1rem;
}

.card-1 {
  top: 20px;
  left: 0;
  animation-delay: 0s;
}

.card-2 {
  top: 60px;
  right: 10px;
  animation-delay: 1s;
}

.card-3 {
  bottom: 60px;
  left: 20px;
  animation-delay: 2s;
}

.card-4 {
  bottom: 20px;
  right: 0;
  animation-delay: 1.5s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 40px;
  display: block;
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 0 80px;
  }

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

  .hero-visual-wrapper {
    width: 300px;
    height: 300px;
  }

  .hero-circle {
    width: 200px;
    height: 200px;
  }

  .hero-circle-inner {
    width: 160px;
    height: 160px;
  }

  .hero-circle-inner i {
    font-size: 4rem;
  }

  .ring-1 {
    width: 240px;
    height: 240px;
  }
  .ring-2 {
    width: 290px;
    height: 290px;
  }

  .floating-card {
    font-size: 0.75rem;
    padding: 10px 14px;
  }

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

  .btn {
    padding: 14px 26px;
    font-size: 0.9rem;
  }
}
.servicos {
  padding: 120px 0;
  background: var(--branco);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 70px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.12);
  color: var(--amarelo-escuro);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(245, 197, 24, 0.25);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--preto);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.text-highlight {
  color: var(--amarelo-escuro);
  position: relative;
  display: inline-block;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(245, 197, 24, 0.25);
  z-index: -1;
  border-radius: 4px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--cinza);
  line-height: 1.7;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.servico-card {
  background: var(--branco);
  padding: 35px 28px;
  border-radius: 20px;
  border: 2px solid #eaeaea;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amarelo), var(--amarelo-escuro));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.servico-card:hover {
  transform: translateY(-10px);
  border-color: var(--amarelo);
  box-shadow: 0 20px 40px rgba(245, 197, 24, 0.15);
}

.servico-card:hover::before {
  transform: scaleX(1);
}

.servico-card.featured {
  background: linear-gradient(
    135deg,
    var(--preto) 0%,
    var(--cinza-escuro) 100%
  );
  border-color: var(--amarelo);
  color: var(--branco);
}

.servico-card.featured::before {
  transform: scaleX(1);
}

.servico-card.featured h3 {
  color: var(--branco);
}

.servico-card.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.servico-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--amarelo);
  color: var(--preto);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.6);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(245, 197, 24, 0);
  }
}

.servico-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(
    135deg,
    var(--amarelo) 0%,
    var(--amarelo-escuro) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.4s;
  box-shadow: 0 8px 20px rgba(245, 197, 24, 0.25);
}

.servico-card:hover .servico-icon {
  transform: rotate(-8deg) scale(1.1);
}

.servico-icon i {
  font-size: 1.7rem;
  color: var(--preto);
}

.servico-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 12px;
}

.servico-card p {
  color: var(--cinza);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.servico-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amarelo-escuro);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s;
}

.servico-card.featured .servico-link {
  color: var(--amarelo);
}

.servico-link:hover {
  gap: 14px;
}

.servico-link i {
  transition: transform 0.3s;
  font-size: 0.8rem;
}

.servico-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .servicos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 540px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }
}
.sobre {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

.sobre::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(245, 197, 24, 0.08),
    transparent 70%
  );
  border-radius: 50%;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.map-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  aspect-ratio: 4 / 5;
  background: #f0f0f0;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(0.15);
  transition: filter 0.4s;
}

.map-wrapper:hover iframe {
  filter: grayscale(0);
}

.map-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  animation: floatBadge 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.badge-stars {
  display: flex;
  gap: 3px;
  color: var(--amarelo);
  font-size: 0.85rem;
}

.badge-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.badge-info strong {
  font-size: 1.05rem;
  color: var(--preto);
  font-weight: 700;
}

.badge-info span {
  font-size: 0.72rem;
  color: var(--cinza);
}

.map-cta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--preto);
  color: var(--branco);
  padding: 16px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  z-index: 3;
}

.map-cta:hover {
  background: var(--amarelo);
  color: var(--preto);
  transform: translateY(-3px);
}

.sobre-content .section-title {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.sobre-desc {
  font-size: 1.05rem;
  color: var(--cinza);
  line-height: 1.8;
  margin-bottom: 35px;
}

.sobre-desc strong {
  color: var(--preto);
  font-weight: 700;
}

.sobre-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--branco);
  border-radius: 14px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
}

.feature-item:hover {
  border-color: var(--amarelo);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(245, 197, 24, 0.12);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    var(--amarelo) 0%,
    var(--amarelo-escuro) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.3);
}

.feature-icon i {
  color: var(--preto);
  font-size: 1.1rem;
}

.feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.82rem;
  color: var(--cinza);
  line-height: 1.4;
}

.sobre-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-social {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: var(--branco);
  border-radius: 50%;
  font-size: 1.4rem;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.3);
}

.btn-social:hover {
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 12px 25px rgba(220, 39, 67, 0.4);
}

@media (max-width: 968px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sobre-content .section-title {
    text-align: center;
  }

  .sobre-desc {
    text-align: center;
  }

  .sobre-cta {
    justify-content: center;
  }

  .map-wrapper {
    max-width: 450px;
    margin: 0 auto;
  }
}

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

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

  .sobre-features {
    grid-template-columns: 1fr;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 1.7rem;
    bottom: 20px;
    right: 20px;
  }
}
.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  color: var(--branco);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--amarelo) 0%,
    var(--amarelo-escuro) 100%
  );
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(245, 197, 24, 0.05),
    transparent 70%
  );
  border-radius: 50%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1.3fr;
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--branco);
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: var(--amarelo);
  color: var(--preto);
  transform: translateY(-4px);
  border-color: var(--amarelo);
  box-shadow: 0 8px 20px rgba(245, 197, 24, 0.3);
}

.footer-title {
  color: var(--branco);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--amarelo);
  border-radius: 2px;
}

.footer-links,
.footer-contact,
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  width: fit-content;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--amarelo);
  transition: transform 0.3s;
}

.footer-links a:hover {
  color: var(--amarelo);
}

.footer-links a:hover i {
  transform: translateX(4px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-contact li i {
  color: var(--amarelo);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s;
}

.footer-contact li a:hover {
  color: var(--amarelo);
}

.footer-hours li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-hours li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.hours-label i {
  color: var(--amarelo);
  font-size: 0.95rem;
}

.hours-label strong {
  color: var(--branco);
  font-size: 0.95rem;
  font-weight: 600;
}

.closed {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

.highlight-24h {
  color: var(--amarelo);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-made {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-made i {
  color: #ff4757;
  animation: heartBeat 1.5s infinite;
}

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

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
.depoimentos {
  padding: 120px 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.depoimentos::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(245, 197, 24, 0.08),
    transparent 70%
  );
  border-radius: 50%;
}

.depoimentos-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.depoimentos-track {
  display: flex;
  gap: 25px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.depoimento-card {
  background: var(--branco);
  padding: 32px 28px;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.depoimento-card:hover {
  border-color: var(--amarelo);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(245, 197, 24, 0.12);
}

.depoimento-header {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.depoimento-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.depoimento-info {
  flex: 1;
}

.depoimento-info h4 {
  font-size: 1rem;
  color: var(--preto);
  font-weight: 700;
  margin-bottom: 4px;
}

.depoimento-stars {
  display: flex;
  gap: 3px;
  color: var(--amarelo);
  font-size: 0.85rem;
}

.depoimento-quote {
  position: absolute;
  top: -5px;
  right: 0;
  font-size: 2rem;
  color: rgba(245, 197, 24, 0.2);
}

.depoimento-texto {
  color: var(--cinza);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.depoimento-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  color: var(--cinza);
  font-size: 0.82rem;
}

.depoimento-footer i {
  color: #4285f4;
  font-size: 1rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #e5e5e5;
  background: var(--branco);
  color: var(--preto);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--amarelo);
  border-color: var(--amarelo);
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(245, 197, 24, 0.3);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4d4d4;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--amarelo);
  width: 30px;
  border-radius: 5px;
}

.depoimentos-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--branco);
  color: var(--preto);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid #e5e5e5;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-google:hover {
  border-color: #4285f4;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(66, 133, 244, 0.2);
}

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

.btn-google i:last-child {
  font-size: 0.85rem;
  transition: transform 0.3s;
}

.btn-google:hover i:last-child {
  transform: translateX(4px);
}

@media (max-width: 968px) {
  .depoimento-card {
  }
}

@media (max-width: 640px) {
  .depoimentos {
    padding: 80px 0;
  }

  .depoimento-card {
    padding: 26px 22px;
  }

  .btn-google {
    padding: 14px 24px;
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
