
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
}

body {
  background-color: #0a0a0a;
  color: #e8e8e8;
  overflow-x: hidden;
}

::selection {
  background: #f5c542;
  color: #0a0a0a;
}

/* ===== HEADER ===== */
.header {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgba(245, 197, 66, 0.3);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: 0.3s;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  border-bottom-color: #f5c542;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.8);
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 12px rgba(245, 197, 66, 0.15));
  transition: 0.3s;
}

.logo-img:hover {
  filter: drop-shadow(0 0 24px rgba(245, 197, 66, 0.3));
  transform: scale(1.02);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-desktop a {
  text-decoration: none;
  color: #b0b0b0;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1.8px;
  transition: 0.3s;
  text-transform: uppercase;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #f5c542;
  transition: 0.3s;
}

.nav-desktop a:hover {
  color: #ffffff;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.btn-whatsapp-nav {
  background: linear-gradient(135deg, #fbeeca, #ffbb1c);
  color: #0a0a0a !important;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  border: none;
  letter-spacing: 0.5px;
}

.btn-whatsapp-nav i {
  font-size: 1.2rem;
}

.btn-whatsapp-nav:hover {
  background: #34e07a;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-nav:hover::after {
  width: 0%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: #f5c542;
  border-radius: 6px;
  transition: 0.3s;
}

.hamburger:hover span {
  background: #ffffff;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  display: none;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.menu-overlay.active {
  display: flex;
  opacity: 1;
}

.menu-panel {
  background: #121212;
  width: 82%;
  max-width: 380px;
  height: 100%;
  padding: 48px 32px;
  box-shadow: -8px 0 50px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(30px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  border-left: 3px solid #f5c542;
}

.menu-overlay.active .menu-panel {
  transform: translateX(0);
}

.menu-panel .close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #f5c542;
  cursor: pointer;
  transition: 0.3s;
  padding: 4px;
}

.menu-panel .close-btn:hover {
  transform: rotate(90deg);
  color: #ffffff;
}

.menu-panel a {
  text-decoration: none;
  color: #cccccc;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 0;
  border-bottom: 1px solid #222222;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.25s;
  letter-spacing: 0.3px;
}

.menu-panel a:hover {
  color: #f5c542;
  padding-left: 10px;
}

.menu-panel a i {
  width: 28px;
  color: #f5c542;
  font-size: 1.2rem;
}

.btn-whatsapp-mobile {
   background: linear-gradient(135deg, #fbeeca, #ffbb1c);
  color: #000!important;
  border: none;
  padding: 18px 20px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  transition: 0.3s;
  width: 100%;
  letter-spacing: 0.5px;
}

.btn-whatsapp-mobile i {
  font-size: 1.6rem;
  color: #0a0a0a;
}

.btn-whatsapp-mobile:hover {
  background: #34e07a;
  transform: scale(1.02);
}

.hero {
  background-image: url('img/munck-transporte-hero.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  padding: 100px 40px 110px;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 4px solid #f5c542;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245, 197, 66, 0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 197, 66, 0.08) 0%, transparent 70%);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.2); }
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  color: #f5c542;
  background: rgba(0, 0, 0, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 40px;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 197, 66, 0.15);
  font-weight: 600;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.hero-tag i {
  font-size: 0.8rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-content h1 span {
  background: linear-gradient(135deg, #fbeeca, #ecaf25);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 560px;
  opacity: 0.85;
  font-weight: 400;
  margin-bottom: 36px;
  color: #e8e8e8;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero-btn {
 background: linear-gradient(135deg, #fbeeca, #ffbb1c);
  border: none;
  color: #0a0a0a;
  font-weight: 800;
  padding: 18px 48px;
  border-radius: 60px;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 36px rgba(245, 197, 66, 0.25);
  transition: 0.3s;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.hero-btn::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.6s;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn i {
  font-size: 1.4rem;
  color: #0a0a0a;
}

.hero-btn:hover {
  background: #ffffff;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 12px 48px rgba(245, 197, 66, 0.4);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.6rem;
  letter-spacing: 2px;
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero-scroll i {
  font-size: 1rem;
}

.cards-section {
  padding: 70px 36px 80px;
  max-width: 1320px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.card-item {
  background: #141414;
  border-radius: 24px;
  padding: 36px 28px 40px;
  border: 1px solid #242424;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f5c542, #f0b800);
  opacity: 0;
  transition: 0.4s;
}

.card-item:hover::before {
  opacity: 1;
}

.card-item:hover {
  transform: translateY(-10px);
  border-color: #f5c542;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  background: #1a1a1a;
}

.card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(245, 197, 66, 0.03), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: 0.6s;
}

.card-item:hover .card-shine {
  opacity: 1;
}

.card-icon {
  font-size: 3.2rem;
  color: #f5c542;
  margin-bottom: 18px;
  display: inline-block;
  transition: 0.3s;
}

.card-item:hover .card-icon {
  transform: scale(1.08);
}

.card-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.card-item p {
  color: #a0a0a0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.card-line {
  width: 44px;
  height: 2px;
  background: #f5c542;
  margin: 16px auto 0;
  transition: 0.3s;
}

.card-item:hover .card-line {
  width: 60px;
}


@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    background-image: url('img/transporte-hero-mobile.png');
    background-position: 40% 20%;
    padding: 60px 24px 80px;
    min-height: 460px;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.7);
  }

  .hero-glow {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-scroll {
    display: none;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .card-item {
    padding: 28px 20px 32px;
  }

  .card-icon {
    font-size: 2.6rem;
  }

 
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-btn {
    padding: 14px 30px;
    font-size: 0.95rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .menu-panel {
    width: 90%;
    padding: 40px 24px;
  }

 
}

.about-section {
  background: #222121; 
  padding: 80px 36px 90px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #f5c542;
  border-bottom: 3px solid #f5c542;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
  animation: aboutFloat 8s ease-in-out infinite alternate;
}

.about-bg-shape-1 {
  width: 400px;
  height: 400px;
  background: #f5c542;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.about-bg-shape-2 {
  width: 300px;
  height: 300px;
  background: #f5c542;
  bottom: -80px;
  left: -80px;
  animation-delay: 2s;
}

.about-bg-shape-3 {
  width: 200px;
  height: 200px;
  background: #f5c542;
  top: 40%;
  right: 5%;
  animation-delay: 4s;
  opacity: 0.04;
}

.about-bg-shape-4 {
  width: 150px;
  height: 150px;
  background: #f5c542;
  bottom: 20%;
  left: 10%;
  animation-delay: 1s;
  opacity: 0.05;
}

@keyframes aboutFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

.about-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f5c542, transparent);
  pointer-events: none;
  opacity: 0.3;
}

.about-line-1 {
  width: 60%;
  top: 20%;
  left: 20%;
  animation: aboutLinePulse 4s ease-in-out infinite alternate;
}

.about-line-2 {
  width: 40%;
  bottom: 25%;
  right: 10%;
  animation: aboutLinePulse 4s ease-in-out infinite alternate-reverse;
}

@keyframes aboutLinePulse {
  0% { opacity: 0.1; transform: scaleX(0.8); }
  100% { opacity: 0.4; transform: scaleX(1.2); }
}

.about-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-icon-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.about-icon {
  width: 80px;
  height: 80px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #f5c542;
  position: relative;
  z-index: 2;
  transition: 0.4s;
}

.about-icon i {
  font-size: 2.8rem;
  color: #f5c542;
  transition: 0.4s;
}

.about-icon-wrapper:hover .about-icon {
  transform: scale(1.08) rotate(-3deg);
  border-color: #ffffff;
  box-shadow: 0 0 40px rgba(245, 197, 66, 0.2);
}

.about-icon-wrapper:hover .about-icon i {
  color: #ffffff;
  transform: scale(1.05);
}

.about-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(245, 197, 66, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: aboutGlowPulse 3s ease-in-out infinite alternate;
}

@keyframes aboutGlowPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.about-header {
  margin-bottom: 28px;
}

.about-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #f5c542;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 20px;
  border-radius: 30px;
  border: 1px solid rgba(245, 197, 66, 0.15);
  margin-bottom: 12px;
}

.about-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.about-title span {
  background: linear-gradient(135deg, #f5c542, #f0b800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.about-title span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #f5c542;
  border-radius: 4px;
  opacity: 0.3;
}

.about-title-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f5c542, transparent);
  margin: 0 auto;
  border-radius: 4px;
}

.about-text-wrapper {
  max-width: 820px;
  margin: 0 auto 32px;
  position: relative;
}

.about-text-wrapper::before,
.about-text-wrapper::after {
  content: '"';
  position: absolute;
  font-size: 4rem;
  color: #f5c542;
  opacity: 0.1;
  font-family: Georgia, serif;
}

.about-text-wrapper::before {
  top: -20px;
  left: -10px;
}

.about-text-wrapper::after {
  bottom: -40px;
  right: -10px;
  transform: rotate(180deg);
}

.about-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #e0e0e0;
  font-weight: 300;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 2;
  padding: 8px 16px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.4);
  padding: 12px 28px;
  border-radius: 60px;
  border: 1px solid rgba(245, 197, 66, 0.15);
  backdrop-filter: blur(4px);
  transition: 0.3s;
  margin-top: 8px;
}

.about-badge:hover {
  border-color: #f5c542;
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 197, 66, 0.08);
}

.about-badge i {
  color: #f5c542;
  font-size: 1.2rem;
  animation: aboutBadgeSpin 6s linear infinite;
}

@keyframes aboutBadgeSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-badge span {
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}

@media (max-width: 992px) {
  .about-title {
    font-size: 2.2rem;
  }
  
  .about-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 24px 70px;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .about-icon {
    width: 64px;
    height: 64px;
  }
  
  .about-icon i {
    font-size: 2.2rem;
  }
  
  .about-icon-glow {
    width: 80px;
    height: 80px;
  }
  
  .about-bg-shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
  }
  
  .about-bg-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -40px;
    left: -40px;
  }
  
  .about-bg-shape-3,
  .about-bg-shape-4 {
    display: none;
  }
  
  .about-text-wrapper::before,
  .about-text-wrapper::after {
    font-size: 2.5rem;
    opacity: 0.06;
  }
  
  .about-text-wrapper::before {
    top: -10px;
    left: 0px;
  }
  
  .about-text-wrapper::after {
    bottom: -20px;
    right: 0px;
  }
  
  .about-line-1,
  .about-line-2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 50px 16px 60px;
  }
  
  .about-title {
    font-size: 1.5rem;
  }
  
  .about-tag {
    font-size: 0.6rem;
    padding: 4px 14px;
  }
  
  .about-badge {
    padding: 10px 20px;
  }
  
  .about-badge span {
    font-size: 0.6rem;
  }
}

.services-section {
  background-image: url('img/capa2.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 60px 36px 50px;
  position: relative;
  border-top: 3px solid #f5c542;
  border-bottom: 3px solid #f5c542;
  min-height: 380px;
  overflow: hidden;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.812);
  z-index: 1;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-sparkle {
  position: absolute;
  color: #f5c542;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
  animation: servicesSparkle 4s ease-in-out infinite alternate;
}

.services-sparkle-1 {
  top: 15%;
  right: 8%;
  font-size: 1.2rem;
  animation-delay: 0s;
}

.services-sparkle-2 {
  bottom: 20%;
  left: 5%;
  font-size: 0.8rem;
  animation-delay: 1.5s;
}

.services-sparkle-3 {
  top: 50%;
  right: 15%;
  font-size: 0.6rem;
  animation-delay: 3s;
}

@keyframes servicesSparkle {
  0% { opacity: 0.1; transform: scale(0.8) rotate(0deg); }
  100% { opacity: 0.4; transform: scale(1.2) rotate(180deg); }
}

.services-header {
  text-align: center;
  margin-bottom: 32px;
}

.services-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #f5c542;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 18px;
  border-radius: 30px;
  border: 1px solid rgba(245, 197, 66, 0.15);
  margin-bottom: 10px;
  backdrop-filter: blur(4px);
}

.services-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.services-title span {
  background: linear-gradient(135deg, #f5c542, #f0b800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #f5c542, transparent);
  margin: 8px auto 0;
  border-radius: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 24px;
}

.service-item {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(245, 197, 66, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #f5c542;
  transform: scaleY(0);
  transition: 0.4s;
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-item:hover {
  transform: translateX(4px);
  border-color: rgba(245, 197, 66, 0.25);
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
  color: #ffffff;
}

.service-item:hover .service-dot {
  background: #ffffff;
  transform: scale(1.2);
}

.service-icon {
  font-size: 1.3rem;
  color: #f5c542;
  transition: 0.4s;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.service-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.service-content h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f5c542;
  flex-shrink: 0;
  transition: 0.4s;
  opacity: 0.6;
}

.services-diferenciais {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 60px;
  border: 1px solid rgba(245, 197, 66, 0.08);
  max-width: 700px;
  margin: 0 auto;
}

.services-diferenciais span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e8e8e8;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.services-diferenciais i {
  color: #f5c542;
  font-size: 0.85rem;
}

.services-cta {
  text-align: center;
  margin-top: 28px;
}

.services-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #f5c542 0%, #f0b800 50%, #e6a800 100%);
  color: #0a0a0a;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 60px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(245, 197, 66, 0.2);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 60%);
  opacity: 0;
  transition: 0.6s;
  transform: scale(0.8);
}

.services-btn:hover::before {
  opacity: 1;
  transform: scale(1);
}

.services-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.15), 
    transparent
  );
  transition: 0.6s;
}

.services-btn:hover::after {
  left: 100%;
}

.services-btn {
  animation: servicesBtnPulse 2.5s ease-in-out infinite;
}

@keyframes servicesBtnPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 30px rgba(245, 197, 66, 0.2);
  }
  50% { 
    transform: scale(1.03);
    box-shadow: 0 0 50px rgba(245, 197, 66, 0.4), 0 0 80px rgba(245, 197, 66, 0.15);
  }
}

.services-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 0 60px rgba(245, 197, 66, 0.5), 0 0 100px rgba(245, 197, 66, 0.2);
  background: linear-gradient(135deg, #f5c542 0%, #e6a800 50%, #d49a00 100%);
  color: #0a0a0a;
}

.services-btn i:first-child {
  font-size: 1.4rem;
  color: #0a0a0a;
  transition: 0.3s;
}

.services-btn:hover i:first-child {
  transform: scale(1.15) rotate(-5deg);
}

.services-btn span {
  position: relative;
  z-index: 2;
}

.services-btn i:last-child {
  font-size: 1rem;
  transition: 0.3s;
  opacity: 0.7;
}

.services-btn:hover i:last-child {
  transform: translateX(6px);
  opacity: 1;
}

@media (max-width: 768px) {
  .services-btn {
    padding: 14px 28px;
    font-size: 0.85rem;
    gap: 10px;
    width: 100%;
    max-width: 380px;
    justify-content: center;
  }
  
  .services-btn i:first-child {
    font-size: 1.2rem;
  }
  
  .services-cta {
    margin-top: 22px;
  }
}

@media (max-width: 480px) {
  .services-btn {
    padding: 12px 20px;
    font-size: 0.75rem;
    gap: 8px;
    max-width: 320px;
  }
  
  .services-btn i:first-child {
    font-size: 1rem;
  }
  
  .services-btn i:last-child {
    display: none;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 700px;
  }
  
  .services-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 48px 20px 40px;
    background-attachment: scroll;
    min-height: 320px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 12px;
  }
  
  .services-title {
    font-size: 1.7rem;
  }
  
  .service-item {
    padding: 12px 16px;
  }
  
  .service-content h3 {
    font-size: 0.8rem;
  }
  
  .service-icon {
    font-size: 1.1rem;
    width: 30px;
  }
  
  .services-diferenciais {
    gap: 16px;
    padding: 12px 18px;
    border-radius: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .services-diferenciais span {
    font-size: 0.65rem;
  }
  
  .services-sparkle {
    display: none;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 40px 14px 32px;
    min-height: 280px;
  }
  
  .services-title {
    font-size: 1.4rem;
  }
  
  .services-tag {
    font-size: 0.55rem;
    padding: 4px 14px;
  }
  
  .service-item {
    padding: 10px 14px;
    border-radius: 10px;
  }
  
  .service-content h3 {
    font-size: 0.7rem;
  }
  
  .service-icon {
    font-size: 1rem;
    width: 26px;
  }
  
  .services-diferenciais {
    gap: 10px;
    padding: 10px 14px;
    border-radius: 20px;
  }
  
  .services-diferenciais span {
    font-size: 0.55rem;
    gap: 4px;
  }
  
  .services-diferenciais i {
    font-size: 0.65rem;
  }
}

.servicos-detalhados {
  background: #0a0a0a;
  padding: 70px 36px 80px;
  border-top: 3px solid #f5c542;
  border-bottom: 3px solid #f5c542;
}

.servicos-detalhados-container {
  max-width: 1200px;
  margin: 0 auto;
}

.servicos-detalhados-header {
  text-align: center;
  margin-bottom: 50px;
}

.servicos-detalhados-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #f5c542;
  text-transform: uppercase;
  background: rgba(245, 197, 66, 0.08);
  padding: 6px 22px;
  border-radius: 30px;
  border: 1px solid rgba(245, 197, 66, 0.15);
  margin-bottom: 12px;
}

.servicos-detalhados-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.servicos-detalhados-title span {
  background: linear-gradient(135deg, #f5c542, #f0b800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.servicos-detalhados-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f5c542, transparent);
  margin: 10px auto 0;
  border-radius: 4px;
}

.servicos-detalhados-subtitle {
  color: #999999;
  font-size: 1rem;
  margin-top: 14px;
  letter-spacing: 0.3px;
}

.servico-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #141414;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid #222222;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.servico-container:hover {
  border-color: #f5c542;
  box-shadow: 0 16px 50px rgba(245, 197, 66, 0.06);
  transform: translateY(-4px);
}

.servico-container:nth-child(even) .servico-image-wrapper {
  order: 2;
}

.servico-container:nth-child(even) .servico-content-wrapper {
  order: 1;
}

.servico-image-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: #1a1a1a;
}

.servico-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.servico-container:hover .servico-image {
  transform: scale(1.05);
}

.servico-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.08), transparent 70%);
  pointer-events: none;
}

.servico-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #f5c542, #f0b800);
  color: #0a0a0a;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(245, 197, 66, 0.2);
}

.servico-badge i {
  font-size: 0.7rem;
}

.servico-badge-popular {
  background: linear-gradient(135deg, #ff6b35, #e63946);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

.servico-badge-entrega {
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}

.servico-content-wrapper {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.servico-icon-large {
  width: 56px;
  height: 56px;
  background: rgba(245, 197, 66, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 197, 66, 0.08);
}

.servico-icon-large i {
  font-size: 1.8rem;
  color: #f5c542;
}

.servico-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.servico-title span {
  background: linear-gradient(135deg, #f5c542, #f0b800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.servico-descricao {
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.servico-lista {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
  margin-bottom: 20px;
}

.servico-lista li {
  color: #c0c0c0;
  font-size: 0.85rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.servico-lista li:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.servico-lista li i {
  color: #f5c542;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.servico-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #f5c542 0%, #f0b800 50%, #e6a800 100%);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 60px;
  text-decoration: none;
  border: none;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(245, 197, 66, 0.15);
  align-self: flex-start;
  margin-top: 4px;
}

.servico-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 60%);
  opacity: 0;
  transition: 0.6s;
}

.servico-btn:hover::before {
  opacity: 1;
}

.servico-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: 0.6s;
}

.servico-btn:hover::after {
  left: 100%;
}

.servico-btn i:first-child {
  font-size: 1.2rem;
  color: #0a0a0a;
  transition: 0.3s;
}

.servico-btn span {
  position: relative;
  z-index: 2;
}

.servico-btn i:last-child {
  font-size: 0.8rem;
  transition: 0.3s;
  opacity: 0.6;
}

.servico-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 36px rgba(245, 197, 66, 0.3);
  background: linear-gradient(135deg, #f5c542 0%, #e6a800 50%, #d49a00 100%);
}

.servico-btn:hover i:first-child {
  transform: scale(1.1) rotate(-5deg);
}

.servico-btn:hover i:last-child {
  transform: translateX(6px);
  opacity: 1;
}

@media (max-width: 992px) {
  .servico-container {
    grid-template-columns: 1fr;
  }
  
  .servico-container:nth-child(even) .servico-image-wrapper {
    order: 0;
  }
  
  .servico-container:nth-child(even) .servico-content-wrapper {
    order: 0;
  }
  
  .servico-image-wrapper {
    min-height: 280px;
    max-height: 320px;
  }
  
  .servico-title {
    font-size: 1.4rem;
  }
  
  .servico-lista {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .servicos-detalhados {
    padding: 50px 20px 60px;
  }
  
  .servicos-detalhados-title {
    font-size: 2rem;
  }
  
  .servico-content-wrapper {
    padding: 28px 20px;
  }
  
  .servico-title {
    font-size: 1.2rem;
  }
  
  .servico-descricao {
    font-size: 0.9rem;
  }
  
  .servico-lista {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  
  .servico-lista li {
    font-size: 0.8rem;
  }
  
  .servico-btn {
    padding: 12px 24px;
    font-size: 0.75rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .servicos-detalhados {
    padding: 40px 14px 50px;
  }
  
  .servicos-detalhados-title {
    font-size: 1.6rem;
  }
  
  .servicos-detalhados-subtitle {
    font-size: 0.85rem;
  }
  
  .servico-image-wrapper {
    min-height: 200px;
  }
  
  .servico-content-wrapper {
    padding: 20px 16px;
  }
  
  .servico-icon-large {
    width: 44px;
    height: 44px;
  }
  
  .servico-icon-large i {
    font-size: 1.4rem;
  }
  
  .servico-title {
    font-size: 1.1rem;
  }
  
  .servico-badge {
    font-size: 0.55rem;
    padding: 4px 12px;
    top: 10px;
    left: 10px;
  }
  
  .servico-btn i:last-child {
    display: none;
  }
}

.regioes-section {
  background: #222121;
  padding: 70px 36px 80px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #f5c542;
  border-bottom: 3px solid #f5c542;
}

.regioes-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
  background: #f5c542;
  animation: regioesFloat 8s ease-in-out infinite alternate;
}

.regioes-bg-shape-1 {
  width: 350px;
  height: 350px;
  top: -120px;
  right: -80px;
  animation-delay: 0s;
}

.regioes-bg-shape-2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: -60px;
  animation-delay: 1.5s;
}

.regioes-bg-shape-3 {
  width: 180px;
  height: 180px;
  top: 20%;
  right: 10%;
  animation-delay: 3s;
  opacity: 0.04;
}

.regioes-bg-shape-4 {
  width: 120px;
  height: 120px;
  bottom: 30%;
  left: 5%;
  animation-delay: 2s;
  opacity: 0.05;
}

.regioes-bg-shape-5 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 25%;
  animation-delay: 4s;
  opacity: 0.04;
}

.regioes-bg-shape-6 {
  width: 60px;
  height: 60px;
  bottom: 15%;
  right: 15%;
  animation-delay: 1s;
  opacity: 0.05;
}

@keyframes regioesFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -25px) scale(1.1); }
}

.regioes-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f5c542, transparent);
  pointer-events: none;
  opacity: 0.15;
}

.regioes-line-1 {
  width: 50%;
  top: 15%;
  left: 25%;
  animation: regioesLinePulse 5s ease-in-out infinite alternate;
}

.regioes-line-2 {
  width: 30%;
  bottom: 20%;
  right: 10%;
  animation: regioesLinePulse 5s ease-in-out infinite alternate-reverse;
}

@keyframes regioesLinePulse {
  0% { opacity: 0.05; transform: scaleX(0.8); }
  100% { opacity: 0.2; transform: scaleX(1.2); }
}

.regioes-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.regioes-header {
  text-align: center;
  margin-bottom: 40px;
}

.regioes-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #f5c542;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.2);
  padding: 6px 22px;
  border-radius: 30px;
  border: 1px solid rgba(245, 197, 66, 0.1);
  margin-bottom: 12px;
}

.regioes-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.regioes-title span {
  background: linear-gradient(135deg, #f5c542, #f0b800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.regioes-line-title {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f5c542, transparent);
  margin: 10px auto 0;
  border-radius: 4px;
}

.regioes-subtitle {
  color: #c0c0c0;
  font-size: 1rem;
  margin-top: 14px;
  letter-spacing: 0.3px;
}

.regioes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto 32px;
}

.regiao-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(245, 197, 66, 0.06);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.regiao-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.05), transparent);
  opacity: 0;
  transition: 0.4s;
}

.regiao-item:hover::before {
  opacity: 1;
}

.regiao-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 66, 0.2);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.regiao-item i {
  color: #f5c542;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: 0.3s;
}

.regiao-item:hover i {
  transform: scale(1.15);
  color: #ffffff;
}

.regiao-item span {
  color: #e0e0e0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: 0.3s;
}

.regiao-item:hover span {
  color: #ffffff;
}

.regiao-item-destaque {
  background: rgba(245, 197, 66, 0.12);
  border-color: rgba(245, 197, 66, 0.2);
  grid-column: span 1;
}

.regiao-item-destaque i {
  color: #f5c542;
  animation: regiaoStarPulse 2s ease-in-out infinite;
}

@keyframes regiaoStarPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.regiao-item-destaque span {
  color: #f5c542;
  font-weight: 700;
}

.regiao-item-destaque:hover {
  background: rgba(245, 197, 66, 0.2);
  border-color: #f5c542;
}

.regiao-item-destaque:hover span {
  color: #f5c542;
}

.regioes-cta {
  text-align: center;
  margin-top: 8px;
}

.regioes-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #f5c542 0%, #f0b800 50%, #e6a800 100%);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 60px;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  
  animation: regioesBtnPulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(245, 197, 66, 0.2);
}

.regioes-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%);
  opacity: 0;
  transition: 0.6s;
}

.regioes-btn:hover::before {
  opacity: 1;
}

.regioes-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: 0.6s;
}

.regioes-btn:hover::after {
  left: 100%;
}

@keyframes regioesBtnPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.2), 0 0 40px rgba(245, 197, 66, 0.05);
  }
  50% { 
    transform: scale(1.04);
    box-shadow: 0 0 40px rgba(245, 197, 66, 0.4), 0 0 80px rgba(245, 197, 66, 0.15), 0 0 120px rgba(245, 197, 66, 0.05);
  }
}

.regioes-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 60px;
  border: 2px solid rgba(245, 197, 66, 0.3);
  animation: regioesBtnRing 2s ease-out infinite;
  pointer-events: none;
  opacity: 0;
}

@keyframes regioesBtnRing {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    width: 200%;
    height: 300%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

.regioes-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 0 50px rgba(245, 197, 66, 0.5), 0 0 100px rgba(245, 197, 66, 0.2);
  background: linear-gradient(135deg, #f5c542 0%, #e6a800 50%, #d49a00 100%);
}

.regioes-btn i:first-child {
  font-size: 1.2rem;
  color: #0a0a0a;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}

.regioes-btn span {
  position: relative;
  z-index: 2;
}

.regioes-btn i:last-child {
  font-size: 0.8rem;
  transition: 0.3s;
  opacity: 0.6;
  position: relative;
  z-index: 2;
}

.regioes-btn:hover i:first-child {
  transform: scale(1.1) rotate(-5deg);
}

.regioes-btn:hover i:last-child {
  transform: translateX(6px);
  opacity: 1;
}

@media (max-width: 1024px) {
  .regioes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .regioes-section {
    padding: 50px 20px 60px;
  }
  
  .regioes-title {
    font-size: 2rem;
  }
  
  .regioes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .regiao-item {
    padding: 10px 14px;
  }
  
  .regiao-item span {
    font-size: 0.8rem;
  }
  
  .regiao-item i {
    font-size: 0.8rem;
  }
  
  .regioes-btn {
    padding: 12px 24px;
    font-size: 0.75rem;
    width: 100%;
    max-width: 380px;
    justify-content: center;
  }
  
  .regioes-bg-shape-1 {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -40px;
  }
  
  .regioes-bg-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -40px;
    left: -30px;
  }
  
  .regioes-bg-shape-3,
  .regioes-bg-shape-4,
  .regioes-bg-shape-5,
  .regioes-bg-shape-6 {
    display: none;
  }
  
  .regioes-line-1,
  .regioes-line-2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .regioes-section {
    padding: 40px 14px 50px;
  }
  
  .regioes-title {
    font-size: 1.6rem;
  }
  
  .regioes-tag {
    font-size: 0.6rem;
    padding: 4px 16px;
  }
  
  .regioes-subtitle {
    font-size: 0.85rem;
  }
  
  .regioes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .regiao-item {
    padding: 8px 12px;
    border-radius: 8px;
  }
  
  .regiao-item span {
    font-size: 0.7rem;
  }
  
  .regiao-item i {
    font-size: 0.7rem;
  }
  
  .regiao-item-destaque {
    grid-column: span 2;
  }
  
  .regioes-btn {
    padding: 10px 18px;
    font-size: 0.65rem;
    gap: 8px;
  }
  
  .regioes-btn i:first-child {
    font-size: 1rem;
  }
  
  .regioes-btn i:last-child {
    display: none;
  }
}

.contato-section {
  background: #0a0a0a;
  padding: 70px 36px 80px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #f5c542;
  border-bottom: 3px solid #f5c542;
}

.contato-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
  background: #171716;
  animation: contatoFloat 10s ease-in-out infinite alternate;
}

.contato-bg-shape-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.contato-bg-shape-2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: -60px;
  animation-delay: 2s;
}

.contato-bg-shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 5%;
  animation-delay: 4s;
  opacity: 0.03;
}

@keyframes contatoFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

.contato-container {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contato-header {
  text-align: center;
  margin-bottom: 40px;
}

.contato-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #f5c542;
  text-transform: uppercase;
  background: rgba(245, 197, 66, 0.08);
  padding: 6px 22px;
  border-radius: 30px;
  border: 1px solid rgba(245, 197, 66, 0.1);
  margin-bottom: 12px;
}

.contato-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.contato-title span {
  background: linear-gradient(135deg, #f5c542, #f0b800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contato-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f5c542, transparent);
  margin: 10px auto 0;
  border-radius: 4px;
}

.contato-subtitle {
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.contato-subtitle br {
  display: none;
}

.contato-form-wrapper {
  background: #141414;
  border-radius: 24px;
  padding: 40px 44px;
  border: 2px solid #f5c542;
  box-shadow: 0 0 40px rgba(245, 197, 66, 0.05), inset 0 0 60px rgba(245, 197, 66, 0.02);
  position: relative;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contato-form-wrapper:hover {
  border-color: #f5c542;
  box-shadow: 0 0 60px rgba(245, 197, 66, 0.08), inset 0 0 80px rgba(245, 197, 66, 0.03);
}

.contato-form-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 26px;
  background: linear-gradient(135deg, #f5c542, transparent 40%, transparent 60%, #f5c542);
  z-index: -1;
  opacity: 0.2;
  animation: contatoBorderGlow 4s ease-in-out infinite alternate;
}

@keyframes contatoBorderGlow {
  0% { opacity: 0.15; transform: scale(1); }
  100% { opacity: 0.3; transform: scale(1.02); }
}

.contato-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.contato-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contato-form-group-full {
  grid-column: span 2;
}

.contato-form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #d0d0d0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contato-form-group label i {
  color: #f5c542;
  font-size: 0.85rem;
}

.contato-form-group input,
.contato-form-group textarea {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  transition: 0.3s ease;
  outline: none;
  width: 100%;
  font-family: inherit;
}

.contato-form-group input::placeholder,
.contato-form-group textarea::placeholder {
  color: #666666;
}

.contato-form-group input:focus,
.contato-form-group textarea:focus {
  border-color: #f5c542;
  box-shadow: 0 0 20px rgba(245, 197, 66, 0.06);
  background: #1f1f1f;
}

.contato-form-group input:hover,
.contato-form-group textarea:hover {
  border-color: #444444;
}

.contato-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contato-form-checkbox {
  grid-column: span 2;
  margin-top: 4px;
}

.contato-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 8px 0;
  position: relative;
}

.contato-checkbox-label input[type="checkbox"] {
  display: none;
}

.contato-checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid #444444;
  border-radius: 6px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

.contato-checkbox-label input:checked + .contato-checkbox-custom {
  background: #f5c542;
  border-color: #f5c542;
}

.contato-checkbox-custom::after {
  content: '✓';
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.5);
  transition: 0.2s ease;
}

.contato-checkbox-label input:checked + .contato-checkbox-custom::after {
  opacity: 1;
  transform: scale(1);
}

.contato-checkbox-text {
  color: #b0b0b0;
  font-size: 0.85rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contato-checkbox-text i {
  color: #f5c542;
  font-size: 0.9rem;
}

.contato-checkbox-label:hover .contato-checkbox-custom {
  border-color: #f5c542;
}

.contato-btn {
  grid-column: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #f5c542 0%, #f0b800 50%, #e6a800 100%);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 60px;
  border: none;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(245, 197, 66, 0.15);
  margin-top: 4px;
  width: 100%;
}

.contato-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%);
  opacity: 0;
  transition: 0.6s;
}

.contato-btn:hover::before {
  opacity: 1;
}

.contato-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: 0.6s;
}

.contato-btn:hover::after {
  left: 100%;
}

.contato-btn i:first-child {
  font-size: 1.3rem;
  color: #0a0a0a;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}

.contato-btn span {
  position: relative;
  z-index: 2;
}

.contato-btn i:last-child {
  font-size: 0.9rem;
  transition: 0.3s;
  opacity: 0.6;
  position: relative;
  z-index: 2;
}

.contato-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px rgba(245, 197, 66, 0.3);
  background: linear-gradient(135deg, #f5c542 0%, #e6a800 50%, #d49a00 100%);
}

.contato-btn:hover i:first-child {
  transform: scale(1.1) rotate(-5deg);
}

.contato-btn:hover i:last-child {
  transform: translateX(6px);
  opacity: 1;
}

.contato-btn:active {
  transform: scale(0.96);
}

@media (max-width: 768px) {
  .contato-section {
    padding: 50px 20px 60px;
  }
  
  .contato-title {
    font-size: 2rem;
  }
  
  .contato-subtitle {
    font-size: 0.9rem;
  }
  
  .contato-subtitle br {
    display: block;
  }
  
  .contato-form-wrapper {
    padding: 28px 20px;
    border-radius: 20px;
  }
  
  .contato-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contato-form-group-full {
    grid-column: span 1;
  }
  
  .contato-form-checkbox {
    grid-column: span 1;
  }
  
  .contato-btn {
    grid-column: span 1;
    padding: 14px 24px;
    font-size: 0.8rem;
  }
  
  .contato-form-group input,
  .contato-form-group textarea {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .contato-bg-shape-1 {
    width: 200px;
    height: 200px;
    top: -80px;
    right: -50px;
  }
  
  .contato-bg-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: -30px;
  }
  
  .contato-bg-shape-3 {
    display: none;
  }
}

@media (max-width: 480px) {
  .contato-section {
    padding: 40px 14px 50px;
  }
  
  .contato-title {
    font-size: 1.6rem;
  }
  
  .contato-tag {
    font-size: 0.6rem;
    padding: 4px 16px;
  }
  
  .contato-subtitle {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  .contato-form-wrapper {
    padding: 20px 14px;
    border-radius: 16px;
    border-width: 2px;
  }
  
  .contato-form-group label {
    font-size: 0.7rem;
  }
  
  .contato-form-group input,
  .contato-form-group textarea {
    padding: 10px 12px;
    font-size: 0.85rem;
    border-radius: 10px;
  }
  
  .contato-checkbox-text {
    font-size: 0.75rem;
  }
  
  .contato-checkbox-custom {
    width: 20px;
    height: 20px;
  }
  
  .contato-btn {
    padding: 12px 18px;
    font-size: 0.7rem;
    gap: 8px;
  }
  
  .contato-btn i:first-child {
    font-size: 1rem;
  }
  
  .contato-btn i:last-child {
    display: none;
  }
}

.footer {
  background: #1a1a1a;
  padding: 40px 36px 20px;
  border-top: 3px solid #f5c542;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 197, 66, 0.03), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 30px;
  align-items: start;
  padding-bottom: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #888888;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-title i {
  color: #f5c542;
  font-size: 0.75rem;
}

.footer-col-logo {
  gap: 8px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 12px rgba(245, 197, 66, 0.06));
  transition: 0.3s;
}

.footer-logo-img:hover {
  filter: drop-shadow(0 0 24px rgba(245, 197, 66, 0.12));
  transform: scale(1.02);
}

.footer-logo-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #f5c542, transparent);
  border-radius: 4px;
}

.footer-desc {
  color: #888888;
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 260px;
  margin-top: 2px;
}

.footer-col-orcamento {
  gap: 4px;
}

.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e0e0e0;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  padding: 4px 0;
}

.footer-whatsapp-link i {
  color: #25d366;
  font-size: 1.3rem;
}

.footer-whatsapp-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-col-info {
  gap: 4px;
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b0b0b0;
  font-size: 0.8rem;
  padding: 2px 0;
  transition: 0.3s;
}

.footer-info-item i {
  color: #f5c542;
  font-size: 0.75rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.footer-info-item:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-info-item:hover i {
  color: #ffffff;
}

.footer-atendimento {
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.08), rgba(245, 197, 66, 0.02));
  border: 1px solid rgba(245, 197, 66, 0.15);
  border-radius: 16px;
  padding: 12px 24px;
  margin: 4px 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.footer-atendimento::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f5c542, transparent 40%, transparent 60%, #f5c542);
  z-index: -1;
  opacity: 0.1;
  animation: footerAtendimentoGlow 3s ease-in-out infinite alternate;
}

@keyframes footerAtendimentoGlow {
  0% { opacity: 0.05; }
  100% { opacity: 0.15; }
}

.footer-atendimento:hover {
  border-color: rgba(245, 197, 66, 0.3);
  box-shadow: 0 0 40px rgba(245, 197, 66, 0.04);
  transform: scale(1.01);
}

.footer-atendimento-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-atendimento-dot {
  width: 10px;
  height: 10px;
  background: #25d366;
  border-radius: 50%;
  animation: footerDotPulse 2s ease-in-out infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes footerDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.footer-atendimento-content i.fa-clock {
  color: #f5c542;
  font-size: 1rem;
}

.footer-atendimento-text {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-atendimento-divider {
  color: #444444;
  font-size: 1.2rem;
  font-weight: 300;
}

.footer-atendimento-content i.fa-whatsapp {
  color: #25d366;
  font-size: 1.1rem;
}

.footer-atendimento-whatsapp {
  color: #e0e0e0;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.footer-atendimento-whatsapp:hover {
  color: #ffffff;
  transform: scale(1.05);
}

.footer-copyright {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-copyright p {
  color: #555555;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .footer-col-logo {
    grid-column: span 2;
  }
  
  .footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 32px 20px 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-col-logo {
    grid-column: span 1;
  }
  
  .footer-logo-img {
    height: 44px;
    max-width: 160px;
  }
  
  .footer-desc {
    font-size: 0.75rem;
    max-width: 100%;
  }
  
  .footer-whatsapp-link {
    font-size: 1rem;
  }
  
  .footer-whatsapp-link i {
    font-size: 1.1rem;
  }
  
  .footer-info-item {
    font-size: 0.75rem;
  }
  
  .footer-atendimento {
    padding: 10px 16px;
    border-radius: 12px;
  }
  
  .footer-atendimento-content {
    gap: 8px;
  }
  
  .footer-atendimento-text {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
  
  .footer-atendimento-whatsapp {
    font-size: 0.85rem;
  }
  
  .footer-atendimento-divider {
    font-size: 1rem;
  }
  
  .footer-atendimento-dot {
    width: 8px;
    height: 8px;
  }
  
  .footer-copyright p {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 24px 14px 12px;
  }
  
  .footer-grid {
    gap: 16px;
  }
  
  .footer-logo-img {
    height: 38px;
    max-width: 140px;
  }
  
  .footer-logo-line {
    width: 30px;
  }
  
  .footer-desc {
    font-size: 0.7rem;
  }
  
  .footer-col-title {
    font-size: 0.6rem;
  }
  
  .footer-whatsapp-link {
    font-size: 0.9rem;
  }
  
  .footer-whatsapp-link i {
    font-size: 1rem;
  }
  
  .footer-info-item {
    font-size: 0.7rem;
    gap: 8px;
  }
  
  .footer-info-item i {
    font-size: 0.65rem;
    width: 14px;
  }
  
  .footer-atendimento {
    padding: 8px 12px;
    border-radius: 10px;
  }
  
  .footer-atendimento-content {
    gap: 6px;
  }
  
  .footer-atendimento-text {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
  }
  
  .footer-atendimento-whatsapp {
    font-size: 0.75rem;
  }
  
  .footer-atendimento-divider {
    display: none;
  }
  
  .footer-atendimento-dot {
    width: 6px;
    height: 6px;
  }
  
  .footer-atendimento-content i.fa-clock,
  .footer-atendimento-content i.fa-whatsapp {
    font-size: 0.8rem;
  }
  
  .footer-copyright {
    padding-top: 12px;
  }
  
  .footer-copyright p {
    font-size: 0.55rem;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-float-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: relative;
}

.whatsapp-float-icon {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  flex-shrink: 0;
}

.whatsapp-float-icon i {
  font-size: 2rem;
  color: #ffffff;
  transition: 0.3s;
}

.whatsapp-float-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2s ease-out infinite;
}

.whatsapp-float-icon::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.1);
  animation: whatsappPulse 2s ease-out infinite 0.5s;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.whatsapp-float-link:hover .whatsapp-float-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-link:hover .whatsapp-float-icon i {
  transform: scale(1.05);
}

.whatsapp-float-tooltip {
  background: #1a1a1a;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(37, 211, 102, 0.15);
  position: relative;
  opacity: 0;
  transform: translateX(-10px) scale(0.9);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.whatsapp-float-tooltip.show {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.whatsapp-float-tooltip-arrow {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #1a1a1a;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    left: 16px;
  }
  
  .whatsapp-float-icon {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float-icon i {
    font-size: 1.6rem;
  }
  
  .whatsapp-float-tooltip {
    font-size: 0.75rem;
    padding: 8px 14px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    left: 12px;
  }
  
  .whatsapp-float-icon {
    width: 44px;
    height: 44px;
  }
  
  .whatsapp-float-icon i {
    font-size: 1.4rem;
  }
  
  .whatsapp-float-icon::before {
    inset: -3px;
  }
  
  .whatsapp-float-icon::after {
    inset: -7px;
  }
  
  .whatsapp-float-tooltip {
    font-size: 0.65rem;
    padding: 6px 12px;
    border-radius: 8px;
  }
  
  .whatsapp-float-tooltip-arrow {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-right-width: 6px;
  }
}