/* ========================================
   DIGGITA - Sistema de Gestão
   Dark Glass Theme with Lighting Effects
   ======================================== */

:root {
  /* Light Glass Color Palette */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-bg-hover: rgba(255, 255, 255, 0.80);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-border-subtle: rgba(0, 0, 0, 0.06);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  --glass-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
  --glass-blur: blur(16px) saturate(150%);
  
  /* Primary Colors */
  --primary-gold: #f0b429;
  --primary-gold-light: #fcd34d;
  --primary-gold-dark: #d49a1a;
  --primary-gold-hover: #e5a91f;
  --whatsapp-green: #25d366;
  --whatsapp-green-hover: #1ebe5d;
  
  /* Light Theme Background */
  --light-bg: #f8f9fc;
  --light-bg-secondary: #f1f3f8;
  --light-bg-tertiary: #e8ebf2;
  
  /* Text Colors */
  --text-light: #1a1d2e;
  --text-muted: #6b7280;
  --text-muted-light: #9ca3af;
  --text-dark: #ffffff;
  
  /* Accent Colors */
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-pink: #ec4899;
  --accent-green: #10b981;
  --accent-orange: #f97316;
  
  /* Lighting Effects */
  --glow-blue: 0 0 25px rgba(59, 130, 246, 0.25);
  --glow-purple: 0 0 25px rgba(139, 92, 246, 0.25);
  --glow-pink: 0 0 25px rgba(236, 72, 153, 0.25);
  --glow-green: 0 0 25px rgba(16, 185, 129, 0.25);
  --glow-gold: 0 0 30px rgba(240, 180, 41, 0.3);
  --glow-orange: 0 0 25px rgba(249, 115, 22, 0.25);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--light-bg);
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 15%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(240, 180, 41, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 100%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
  font-family: 'Poppins', Arial, sans-serif !important;
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Glass Card Base */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow-lg), 0 0 40px rgba(240, 180, 41, 0.08);
  border-color: rgba(240, 180, 41, 0.25);
  background: var(--glass-bg-hover);
}

.glass-card:hover::after {
  opacity: 1;
}

/* Section Base Styles */
.features-section,
.plans-section,
.differentials-section,
.contact-section {
  padding: 80px 20px;
  position: relative;
}

.features-container,
.plans-container,
.differentials-container,
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 16px;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-orange));
  border-radius: 2px;
  margin: 20px auto 0;
}
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.feature-card {
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.feature-icon {
  font-size: 52px;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--text-light);
  letter-spacing: -0.01em;
}

.feature-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ========================================
   PLANS SECTION
   ======================================== */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-featured {
  border-color: var(--primary-gold);
  transform: scale(1.02);
}

.plan-featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
  color: var(--text-dark);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-header {
  margin-bottom: 24px;
}

.plan-icon {
  font-size: 40px;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--text-light);
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-currency {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-shadow: var(--glow-gold);
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features .material-icons {
  font-size: 20px;
  color: var(--accent-green);
}

.btn-plan {
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-plan:hover {
  background: var(--primary-gold);
  color: var(--text-dark);
  box-shadow: var(--glow-gold);
}

.btn-plan-primary {
  background: var(--primary-gold);
  color: var(--text-dark);
}

.btn-plan-primary:hover {
  background: var(--primary-gold-hover);
  border-color: var(--primary-gold-hover);
}

/* ========================================
   DIFFERENTIALS SECTION
   ======================================== */

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.differential-card {
  padding: 36px 28px;
  text-align: center;
}

.differential-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.12), rgba(249, 115, 22, 0.08));
  border: 1px solid rgba(240, 180, 41, 0.15);
  position: relative;
  transition: all var(--transition-base);
}

.differential-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.differential-card:hover .differential-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.18), rgba(249, 115, 22, 0.12));
}

.differential-card:hover .differential-icon::before {
  opacity: 0.2;
}

.differential-icon .material-icons {
  font-size: 36px;
  color: var(--primary-gold);
  transition: transform var(--transition-base);
}

.differential-card:hover .differential-icon .material-icons {
  transform: scale(1.1);
}

.differential-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--text-light);
  letter-spacing: -0.01em;
}

.differential-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 56px;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 36px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 12px;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.15), rgba(249, 115, 22, 0.1));
  border: 1px solid rgba(240, 180, 41, 0.2);
  color: var(--primary-gold);
  font-size: 26px;
  transition: all var(--transition-base);
}

.contact-item:hover .contact-item-icon {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(240, 180, 41, 0.2);
}

.contact-item-text {
  display: flex;
  flex-direction: column;
}

.contact-item-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-item-value {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.contact-form-wrapper {
  padding: 36px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.form-control {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-light);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-base);
}

.form-control::placeholder {
  color: var(--text-muted-light);
  opacity: 0.8;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 4px rgba(240, 180, 41, 0.12);
  background: rgba(255, 255, 255, 1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(240, 180, 41, 0.3);
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(240, 180, 41, 0.4);
  background: linear-gradient(135deg, var(--primary-gold-hover), var(--accent-orange));
}

.btn-contact:active {
  transform: translateY(-1px);
}

.btn-contact .material-icons {
  font-size: 20px;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: var(--light-bg-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 72px 20px 28px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--primary-gold), var(--accent-orange));
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 105px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 576px) {
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.footer-column-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.footer-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: inline-block;
  padding: 2px 0;
  position: relative;
}

.footer-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary-gold);
  transition: width var(--transition-base);
}

.footer-list a:hover {
  color: var(--primary-gold);
}

.footer-list a:hover::after {
  width: 100%;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-muted);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.social-link:hover {
  background: var(--primary-gold);
  color: var(--text-dark);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(240, 180, 41, 0.3);
  border-color: transparent;
}

.social-link .material-icons {
  font-size: 22px;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
  .features-section,
  .plans-section,
  .differentials-section,
  .contact-section {
    padding: 60px 16px;
    margin-top: -30px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .features-grid,
  .plans-grid,
  .differentials-grid {
    grid-template-columns: 1fr;
  }
  
  .plan-featured {
    transform: none;
  }
  
  .plan-featured:hover {
    transform: translateY(-5px);
  }
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Scrollbar - Normal width, floating style */
::-webkit-scrollbar {
    width: 15px; /* Normal scrollbar width */
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 2px; /* Creates floating effect */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-gold), var(--accent-orange));
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--primary-gold-hover), var(--accent-orange));
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* For Firefox - normal width */
* {
    scrollbar-width: auto;
    scrollbar-color: var(--primary-gold) rgba(255, 255, 255, 0.05);
}

.feature-card,
.plan-card,
.differential-card {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }

.differential-card:nth-child(1) { animation-delay: 0.1s; }
.differential-card:nth-child(2) { animation-delay: 0.2s; }
.differential-card:nth-child(3) { animation-delay: 0.3s; }
.differential-card:nth-child(4) { animation-delay: 0.4s; }

.page-content {
  padding-top: 60px;
}

.hero-carousel-section {
  --carousel-logo-inline-size: clamp(225px, 36vw, 405px);
  width: 100%;
  margin-top: -25px;
  overflow: hidden;
}

.hero-carousel-inner {
  border-radius: 0;
  overflow: visible;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-slide {
  min-height: clamp(340px, 48vw, 480px);
  padding: 28px 38px;
  padding-left: calc(8% + 20px);
  padding-right: calc(8% + 20px);
  position: relative;
  overflow: visible;
  border-radius: 0;
  z-index: 1;
}

.service-slide-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 24px 8% 80px 8%;
  position: relative;
  height: 100%;
  gap: 24px;
}

.service-slide-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 0;
}

.service-slide-text {
  flex: 1;
  max-width: 60%;
  text-align: left;
}

.service-slide-footer {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 8%;
  z-index: 5;
}

.service-slide-pet .service-slide-text,
.service-slide-food .service-slide-text,
.service-slide-fiscal .service-slide-text,
.service-slide-agro .service-slide-text,
.service-slide-clinicas .service-slide-text {
  max-width: 40%;
  text-align: center;
  padding-right: 0;
  margin: auto;
  margin-left: 5%;
}

.service-slide-logo-text {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.service-slide-logo-text.pet-logo {
  height: 90px;
}

.service-slide-logo-text.clinicas-logo {
  height: 78px;
}

.service-slide-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 20px;
  color: #1a1a1a;
  font-weight: 600;
  text-shadow: 0 0 1px currentColor;
}

.service-slide-fiscal .service-slide-description {
  text-shadow: 0 0 5px #d5e7fb;
}

.service-slide-pet .service-slide-description {
  text-shadow: 0 0 5px #faf3e3;
}

.service-slide-food .service-slide-description {
  text-shadow: 0 0 5px #ffd2b8;
}

.service-slide-agro .service-slide-description {
  text-shadow: 0 0 5px #d9e8bc;
}

.service-slide-clinicas .service-slide-description {
  text-shadow: 0 0 5px #e3dcf1;
}

.service-slide-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-slide-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

.service-slide-features .material-icons {
  font-size: 22px;
  color: #2d7a3e;
}

#servicesCarousel .carousel-item {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#servicesCarousel .carousel-item-next,
#servicesCarousel .carousel-item-prev {
  transform: translateX(0);
}

#servicesCarousel .carousel-item-next {
  transform: translateX(100%);
}

#servicesCarousel .carousel-item-prev {
  transform: translateX(-100%);
}

#servicesCarousel .carousel-item-next.carousel-item-start,
#servicesCarousel .carousel-item-prev.carousel-item-end {
  transform: translateX(0);
}

#servicesCarousel .carousel-item-next.carousel-item-end,
#servicesCarousel .carousel-item-prev.carousel-item-start {
  transform: translateX(0);
}

#servicesCarousel .carousel-item.active,
#servicesCarousel .carousel-item-next,
#servicesCarousel .carousel-item-prev {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.service-slide-logo {
  width: var(--carousel-logo-inline-size);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 9px 15px rgba(0, 0, 0, 0.32));
  position: absolute;
  bottom: -2px;
  right: -2px;
  z-index: 1;
}

.service-slide-pet {
  background: linear-gradient(135deg, #f6ecd2 0%, #ead8ab 100%);
}

.service-slide-food {
  background: linear-gradient(135deg, #ffd2b8 0%, #f6b183 100%);
}

.service-slide-fiscal {
  background: linear-gradient(135deg, #d5e7fb 0%, #9cc0ea 100%);
}

.service-slide-agro {
  background: linear-gradient(135deg, #d9e8bc 0%, #a6c077 100%);
}

.service-slide-clinicas {
  background: linear-gradient(135deg, #e3dcf1 0%, #b9add4 100%);
}

#servicesCarousel .carousel-indicators {
  position: absolute !important;
  right: auto !important;
  bottom: 15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 15 !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
  margin: 0 !important;
  gap: 8px;
}

#servicesCarousel .carousel-indicators button {
  all: unset !important;
  box-sizing: content-box !important;
  flex: 0 0 auto !important;
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  margin: 0 4px !important;
  cursor: pointer !important;
  background: transparent !important;
  border: none !important;
  border-radius: 50% !important;
  opacity: 0.5;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}

#servicesCarousel .carousel-indicators button .material-icons {
  font-family: 'Material Icons' !important;
  font-size: 22px !important;
  font-weight: normal !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  position: relative !important;
  display: block !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  word-wrap: normal !important;
  direction: ltr !important;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
  transition: transform 0.3s ease !important;
  transform: none !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}

#servicesCarousel .carousel-indicators button.active {
  opacity: 1;
  transform: scale(1.2);
}

#servicesCarousel .carousel-indicators button.active::before {
  content: '';
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  z-index: -1;
}

#servicesCarousel .carousel-indicators button:hover {
  opacity: 0.85;
}

#servicesCarousel .carousel-indicators button:hover .material-icons {
  transform: scale(1.15);
}

#servicesCarousel .carousel-indicators button.indicator-pet .material-icons { color: #c9b48a; }
#servicesCarousel .carousel-indicators button.indicator-pet.active .material-icons { color: #8a7340; }
#servicesCarousel .carousel-indicators button.indicator-pet.active::before { background: #8a7340; }

#servicesCarousel .carousel-indicators button.indicator-food .material-icons { color: #d97d4a; }
#servicesCarousel .carousel-indicators button.indicator-food.active .material-icons { color: #a85a2a; }
#servicesCarousel .carousel-indicators button.indicator-food.active::before { background: #a85a2a; }

#servicesCarousel .carousel-indicators button.indicator-fiscal .material-icons { color: #6a9fd4; }
#servicesCarousel .carousel-indicators button.indicator-fiscal.active .material-icons { color: #3a6fa4; }
#servicesCarousel .carousel-indicators button.indicator-fiscal.active::before { background: #3a6fa4; }

#servicesCarousel .carousel-indicators button.indicator-agro .material-icons { color: #7a9a4d; }
#servicesCarousel .carousel-indicators button.indicator-agro.active .material-icons { color: #4a6a2d; }
#servicesCarousel .carousel-indicators button.indicator-agro.active::before { background: #4a6a2d; }

#servicesCarousel .carousel-indicators button.indicator-clinicas .material-icons { color: #9680b8; }
#servicesCarousel .carousel-indicators button.indicator-clinicas.active .material-icons { color: #6650a8; }
#servicesCarousel .carousel-indicators button.indicator-clinicas.active::before { background: #6650a8; }

#servicesCarousel .carousel-control-prev,
#servicesCarousel .carousel-control-next {
  width: 8%;
  opacity: 1;
}

#servicesCarousel .carousel-control-prev-icon,
#servicesCarousel .carousel-control-next-icon {
  display: none;
}

#servicesCarousel .carousel-control-prev::after,
#servicesCarousel .carousel-control-next::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

#servicesCarousel .carousel-control-prev:hover::after,
#servicesCarousel .carousel-control-next:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

#servicesCarousel .carousel-control-prev .material-icons,
#servicesCarousel .carousel-control-next .material-icons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: var(--text-light);
  z-index: 10;
}

#servicesCarousel .carousel-control-prev::after {
  left: 10px;
}

#servicesCarousel .carousel-control-next::after {
  right: 10px;
}

#servicesCarousel .carousel-control-prev .material-icons,
#servicesCarousel .carousel-control-next .material-icons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: #333;
  z-index: 10;
}

#servicesCarousel .carousel-control-prev .material-icons {
  left: calc(10px + 8px);
}

#servicesCarousel .carousel-control-next .material-icons {
  right: calc(10px + 8px);
}

.top-navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-base);
}

.custom-navbar {
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), 0 1px 8px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 28px;
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-logo {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.navbar-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-actions .nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.navbar-actions .nav-right {
  display: flex;
  align-items: center;
}

.nav-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.1;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
  font-family: 'Poppins', Arial, sans-serif !important;
}

.navbar,
.navbar-nav,
.nav-link {
  font-family: 'Poppins', Arial, sans-serif !important;
}

.nav-text-link:hover,
.nav-text-link:focus,
.nav-text-link:active {
  color: var(--primary-gold);
  background-color: rgba(0, 0, 0, 0.05);
}

.whatsapp-contact {
  color: #000000;
  font-weight: 500;
}

.whatsapp-contact span {
  color: #000000;
}

.whatsapp-contact img {
  filter: none;
  opacity: 1;
}

.navbar-actions .dropdown-menu {
  position: absolute;
  min-width: 0;
  width: max-content;
  max-width: min(330px, calc(100vw - 24px));
  padding: 9px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 16px;
  outline: 1px solid rgba(255, 255, 255, 0.4);
  outline-offset: -2px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), linear-gradient(to right, rgba(200,200,200,0.4), rgba(220,220,220,0.4), rgba(200,200,200,0.4));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-actions .dropdown-menu.show {
  clip-path: inset(0 0 0 0);
}

.navbar-actions .dropdown-item {
  padding: 9px 12px;
  display: flex;
  justify-content: center;
  border-radius: 12px;
}

.whatsapp-contact:hover,
.whatsapp-contact:focus,
.whatsapp-contact:active {
  color: var(--primary-gold) !important;
  background-color: rgba(0, 0, 0, 0.05) !important;
}

.whatsapp-contact {
  color: #d9ffe5;
  font-weight: 600;
}

.navbar-actions .dropdown-item {
  padding: 9px 12px;
  display: flex;
  justify-content: center;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.navbar-actions .dropdown-item img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}

.whatsapp-contact:hover,
.whatsapp-contact:focus,
.whatsapp-contact:active {
  color: #ffffff !important;
  background-color: rgba(37, 211, 102, 0.2) !important;
}

.whatsapp-contact img {
  width: auto;
  height: 32px;
  object-fit: contain;
}

@media (max-width: 860px) {
  .custom-navbar {
    padding: 10px 12px;
    min-height: 68px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
  }

  .brand-logo {
    height: 48px;
  }

  .navbar-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  .navbar-actions .nav-center {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
    flex: none;
  }

  .navbar-actions .nav-right {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .nav-text-link {
    padding-inline: 10px;
    padding-block: 8px;
    font-size: clamp(0.82rem, 2.8vw, 0.92rem);
  }

  .whatsapp-contact img {
    height: 20px;
  }

  .navbar-actions .dropdown-menu {
    max-width: min(255px, calc(100vw - 24px));
  }

  .navbar-actions .dropdown-item img {
    width: 138px;
  }
}

/* Carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) brightness(0.8);
}

/* Button outline primary adjustment for dark theme */
.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--text-dark);
}

.services-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 24px 24px;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-menu.active {
  max-height: 200px;
  pointer-events: auto;
}

.services-menu-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 28px 40px;
}

.services-menu .service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.services-menu .service-item:hover {
  transform: scale(1.05);
  border-radius: 16px;
}

.services-menu .service-item.service-pet:hover {
  background: rgba(201, 180, 138, 0.25);
  box-shadow: 0 0 0 3px rgba(201, 180, 138, 0.5), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.services-menu .service-item.service-food:hover {
  background: rgba(217, 125, 74, 0.25);
  box-shadow: 0 0 0 3px rgba(217, 125, 74, 0.5), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.services-menu .service-item.service-fiscal:hover {
  background: rgba(106, 159, 212, 0.25);
  box-shadow: 0 0 0 3px rgba(106, 159, 212, 0.5), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.services-menu .service-item.service-agro:hover {
  background: rgba(122, 154, 77, 0.25);
  box-shadow: 0 0 0 3px rgba(122, 154, 77, 0.5), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.services-menu .service-item.service-clinicas:hover {
  background: rgba(150, 128, 184, 0.25);
  box-shadow: 0 0 0 3px rgba(150, 128, 184, 0.5), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.services-menu .service-item img {
  width: 180px;
  height: auto;
  display: block;
}

.navbar-actions .dropdown {
  position: static;
}

.navbar-actions .dropdown-menu {
  display: none !important;
}

.navbar-actions .dropdown-toggle::after {
  display: none;
}

.nav-services-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-services-trigger::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s ease;
}

.nav-services-trigger.arrow-up::after {
  transform: rotate(180deg);
}

/* ========================================
   MOBILE NAVBAR
   ======================================== */

.mobile-navbar-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2001;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 12px 24px;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .mobile-navbar-header {
    display: flex;
  }

  .custom-navbar {
    display: none !important;
    pointer-events: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .top-navbar-wrapper {
    position: relative;
  }

  .services-menu {
    display: none !important;
  }

  .page-content {
    padding-top: 60px;
  }

  .hero-carousel-section {
    margin-top: -30px !important;
    padding-top: 0px !important;
    overflow: hidden !important;
  }

  .hero-carousel-inner {
    overflow: hidden !important;
  }

  .service-slide {
    min-height: 320px !important;
    padding: 16px !important;
    overflow: hidden !important;
  }

  .service-slide-content {
    display: block !important;
    padding: 0 !important;
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .service-slide-header {
    margin-bottom: 10px;
  }

  .service-slide-header img {
    height: 45px !important;
  }

  .service-slide-text {
    text-align: left;
    max-width: 100% !important;
  }

  .service-slide-description {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
  }

  .service-slide-features {
    gap: 4px !important;
    margin-bottom: 8px !important;
  }

  .service-slide-features li {
    font-size: 0.8rem !important;
    padding: 3px 0 !important;
  }

  .service-slide-features .material-icons {
    font-size: 16px !important;
  }

  .service-slide-logo {
    width: var(--carousel-logo-inline-size);
  }

  .service-slide-footer {
    position: relative !important;
    bottom: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    margin: 16px 0 0 0 !important;
    padding: 0 !important;
    z-index: 5;
    display: block !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .service-slide-footer .cta-button {
    padding: 10px 16px !important;
    font-size: 0.8rem !important;
    width: 100% !important;
    max-width: 300px;
    margin: 0 auto !important;
    display: inline-flex !important;
    justify-content: center;
    box-sizing: border-box !important;
  }

  .service-slide-footer .cta-button .material-icons {
    font-size: 16px !important;
  }

  #servicesCarousel .carousel-inner {
    overflow: hidden !important;
    min-height: auto !important;
    position: relative !important;
  }

  #servicesCarousel {
    position: relative !important;
    overflow: hidden !important;
  }

  #servicesCarousel .carousel-indicators {
    bottom: 10px !important;
    z-index: 10;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #servicesCarousel .carousel-indicators button {
    width: 26px !important;
    height: 26px !important;
  }

  #servicesCarousel .carousel-indicators button .material-icons {
    font-size: 16px !important;
  }

  #servicesCarousel .carousel-control-prev,
  #servicesCarousel .carousel-control-next {
    width: 15%;
  }

  #servicesCarousel .carousel-item {
    min-height: 320px !important;
    overflow: hidden !important;
    padding-bottom: 50px !important;
  }

  #servicesCarousel .carousel-item.active,
  #servicesCarousel .carousel-item-next,
  #servicesCarousel .carousel-item-prev {
    display: block !important;
    overflow: hidden !important;
  }
}

.mobile-brand-logo {
  height: 70px;
  display: flex;
  align-items: center;
}

.mobile-brand-logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.hamburger {
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.hamburger:hover {
  background: rgba(0, 0, 0, 0.05);
}

.hamburger-line {
  width: 24px;
  height: 2.5px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-navbar-menu {
  position: fixed;
  top: 60px;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: calc(100% - 60px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 2003;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-navbar-menu.active {
  transform: translateX(0);
}

.mobile-navbar-inner {
  padding: 20px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 100%;
  position: relative;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: 'Poppins', Arial, sans-serif;
}

.mobile-nav-item:hover,
.mobile-nav-item:focus {
  background: rgba(240, 180, 41, 0.1);
  color: var(--primary-gold);
}

.mobile-nav-item:active {
  background: rgba(240, 180, 41, 0.2);
}

.mobile-services-trigger {
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.15), rgba(253, 126, 20, 0.1));
  border: 2px solid rgba(240, 180, 41, 0.3);
}

.mobile-services-trigger:hover {
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.25), rgba(253, 126, 20, 0.15));
}

.mobile-nav-link {
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.mobile-arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--primary-gold);
  transition: transform 0.3s ease;
}

.mobile-arrow.rotated {
  transform: rotate(180deg);
}

.mobile-services-wrapper {
  display: flex;
  flex-direction: column;
}

.mobile-services-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(240, 180, 41, 0.05);
  border-left: 3px solid;
  border-image: linear-gradient(180deg, var(--primary-gold), var(--accent-orange)) 1;
  margin: 0;
  border-radius: 0 12px 12px 0;
  position: relative;
}

.mobile-services-expand.open {
  max-height: 800px;
}

.mobile-service-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-service-link:last-child {
  border-bottom: none;
}

.mobile-service-link img {
  width: 100%;
  height: 100%;
  max-width: 180px;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.mobile-service-link:hover {
  background: rgba(240, 180, 41, 0.15);
}

.mobile-service-link:hover img {
  transform: scale(1.1);
}

.mobile-service-link:active {
  background: rgba(240, 180, 41, 0.25);
}

.mobile-whatsapp {
  margin-top: 12px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  color: #ffffff !important;
  font-weight: 600;
}

.mobile-whatsapp:hover {
  background: linear-gradient(135deg, #128c7e, #075e54) !important;
  color: #ffffff !important;
}

.mobile-whatsapp:active {
  transform: scale(0.98);
}

.mobile-whatsapp span {
  flex: 1;
  text-align: left;
}

.mobile-whatsapp img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
