/* ============================================
   RESET & VARIABLES
   ============================================ */

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

:root {
  /* Light theme colors (HSL) */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 15%);
  --primary: hsl(259, 62%, 42%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(251, 11%, 64%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(0, 0%, 96%);
  --muted-foreground: hsl(251deg 5.23% 15.85%);
  --accent: hsl(259, 62%, 42%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(251, 11%, 90%);
  --input: hsl(251, 11%, 90%);
  --ring: hsl(259, 62%, 42%);
  --radius: 0.5rem;
}

/* ============================================
   RESET & VARIABLES
   ============================================ */

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

:root {
  /* Light theme colors (HSL) */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 15%);
  --primary: hsl(259, 62%, 42%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(251, 11%, 64%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(0, 0%, 96%);
  --muted-foreground: hsl(251deg 5.23% 15.85%);
  --accent: hsl(259, 62%, 42%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(251, 11%, 90%);
  --input: hsl(251, 11%, 90%);
  --ring: hsl(259, 62%, 42%);
  --radius: 0.5rem;
}

body.dark {
  --background: hsl(260, 40%, 6%);
  --foreground: hsl(250, 20%, 98%);
  --card: hsl(260, 35%, 10%);
  --card-foreground: hsl(250, 20%, 98%);
  --primary: hsl(259, 62%, 42%);
  --primary-foreground: hsl(260, 40%, 98%);
  --secondary: hsl(255, 25%, 20%);
  --secondary-foreground: hsl(250, 20%, 98%);
  --muted: hsl(260, 30%, 15%);
  --muted-foreground: hsl(250, 15%, 65%);
  --accent: hsl(270, 70%, 55%);
  --accent-foreground: hsl(260, 40%, 98%);
  --border: hsl(260, 30%, 18%);
  --input: hsl(260, 30%, 18%);
  --ring: hsl(259, 62%, 42%);
}

/* ============================================
   TYPOGRAPHY & BASE STYLES
   ============================================ */

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================
   GRADIENTS & EFFECTS
   ============================================ */

.gradient-primary {
  background: linear-gradient(135deg, hsl(259, 62%, 42%) 0%, hsl(270, 70%, 55%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: linear-gradient(135deg, hsl(260, 40%, 6%) 0%, hsl(255, 35%, 15%) 100%);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-text {
  opacity: 0;
  transition: opacity 1.2s ease-out;
}

.fade-in-text.visible {
  opacity: 1;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px hsla(259, 62%, 42%, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background-color 0.3s;
}

.icon-btn:hover {
  background-color: var(--muted);
}

/* ============================================
   HEADER
   ============================================ */

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

#header.scrolled {
  background-color: hsla(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.desktop-nav {
  display: none;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s;
}

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

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

.theme-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
  animation: fadeIn 0.3s ease;
}

.mobile-menu.show {
  display: flex;
}

.mobile-nav-link {
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius);
  transition: all 0.3s;
}

.mobile-nav-link:hover {
  color: var(--primary);
  background-color: var(--muted);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--secondary);
}

body:not(.dark) .hero-bg {
  opacity: 0.9;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  filter: blur(3px);
  background-position: center;
  opacity: 0.2;
}

body:not(.dark) .hero-image {
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    hsla(var(--background) / 0.3) 0%, 
    hsla(var(--background) / 0.5) 50%, 
    hsla(var(--background) / 0.7) 100%);
}

body.dark .hero-overlay {
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 1rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title .text-primary {
  color: var(--primary);
}

body.dark .hero-title .text-primary {
  color: var(--foreground);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--muted-foreground);
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator-line {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid var(--primary);
  border-radius: 1rem;
  position: relative;
}

.scroll-indicator-line::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.25rem;
  height: 0.75rem;
  background-color: var(--primary);
  border-radius: 0.25rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 5rem 0;
}

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

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

.bg-muted {
  background-color: var(--muted);
}

.bg-background {
  background-color: var(--background);
}

/* ============================================
   GRIDS
   ============================================ */

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

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-2-lg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.neon-card {
  position: relative;
}

.neon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, hsl(259, 62%, 42%), hsl(270, 70%, 55%));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.neon-card:hover::before {
  opacity: 1;
}

.neon-card:hover {
  box-shadow: 0 0 20px hsla(259, 62%, 42%, 0.5), 0 0 40px hsla(259, 62%, 42%, 0.3);
  transform: translateY(-4px);
}

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

.card-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.card-icon svg {
  color: var(--primary-foreground);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.card-description {
  color: var(--muted-foreground);
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-card {
  border: 2px solid var(--primary);
  position: relative;
}

.highlight-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.service-header {
  display: flex;
  gap: 1rem;
  margin-top: 10px;
  align-items: flex-start;
}

.service-icon-wrapper {
  flex-shrink: 0;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  color: var(--primary);
}

.service-icon.highlight {
  background-color: var(--primary);
}

.service-icon.highlight svg {
  color: var(--primary-foreground);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.service-subtitle {
  color: var(--primary);
  font-size: 1.125rem;
}

.service-description {
  color: var(--muted-foreground);
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.service-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  padding-right: 1px;
  color: var(--primary);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.cta-highlight {
  font-weight: 600;
  color: var(--foreground);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */

.partners-section {
  padding: 4rem 0;
  background-color: var(--background);
  border-top: 1px solid var(--border);
}

.partners-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.partners-wrapper {
  position: relative;
  overflow: hidden;
}

.partners-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 10;
  pointer-events: none;
}

.partners-gradient.left {
  left: 0;
  background: linear-gradient(to right, var(--background), transparent);
}

.partners-gradient.right {
  right: 0;
  background: linear-gradient(to left, var(--background), transparent);
}

.partners-scroll {
  display: flex;
  animation: scrollPartners 60s linear infinite;
}

.partners-scroll:hover {
  animation-play-state: paused;
}

.partner-item {
  flex-shrink: 0;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-item img {
  height: 4rem;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.partner-item img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============================================
   HIGHLIGHT SECTION
   ============================================ */

.highlight-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.highlight-bg {
  position: absolute;
  inset: 0;
  background-color: var(--secondary);
}

.highlight-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1605810230434-7631ac76ec81?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.highlight-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.highlight-title {
  font-size: clamp(1.875rem, 4vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.highlight-text {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--foreground);
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  font-size: 1rem;
  transition: all 0.3s;
  margin-bottom: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px hsla(259, 62%, 42%, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info {
  background-color: var(--secondary);
  border-color: var(--primary);
}

.contact-group {
  margin-bottom: 1.5rem;
}

.contact-group:last-child {
  margin-bottom: 0;
}

.contact-group h4 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-group p {
  color: var(--muted-foreground);
}

.small-text {
  font-size: 0.875rem;
}


.map-container {
  height: 16rem;
  background-color: var(--card);
  margin-top: 15px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}  

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: var(--card);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
}

.footer-link {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.3s;
}

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

.footer-quote {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  font-style: italic;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--muted);
  color: var(--foreground);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px hsla(259, 62%, 42%, 0.4);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-contact-link:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ============================================
   URGENT POPUP
   ============================================ */

.urgent-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
  padding: 1rem;
}

.urgent-popup.show {
  display: flex;
}

.urgent-popup-content {
  background: linear-gradient(135deg, hsl(45, 100%, 51%), hsl(38, 92%, 50%));
  border-radius: 1rem;
  max-width: 500px;
  width: 100%;
  padding: 1.1rem;
  position: relative;
  animation: slideUp 0.4s ease-out;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid hsl(0, 0%, 100%);
}

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

.urgent-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: hsl(0, 0%, 100%);
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.urgent-popup-close:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: rotate(90deg);
}

.urgent-popup-icon {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

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

.urgent-popup-title {
  font-size: clamp(1.3rem, 4vw, 1.5rem);
  font-weight: 900;
  text-align: center;
  padding-left: 25px;
  padding-right: 25px;
  color: hsl(0, 0%, 15%);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.urgent-popup-body {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1.3rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.urgent-popup-body p {
  color: hsl(0, 0%, 15%);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.urgent-popup-body p:last-child {
  margin-bottom: 0;
}

.urgent-popup-body strong {
  color: hsl(0, 84%, 40%);
  font-weight: 700;
}

.urgent-popup-highlight {
  font-weight: 600;
  color: hsl(259, 62%, 42%) !important;
}

.btn-urgent {
  width: 100%;
  background: linear-gradient(135deg, hsl(0, 84%, 60%), hsl(0, 72%, 51%));
  color: hsl(0, 0%, 100%);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.25rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 16px rgba(220, 38, 38, 0.4);
  animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.4);
  }
  50% {
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.6);
  }
}

.btn-urgent:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.6);
  background: linear-gradient(135deg, hsl(0, 84%, 55%), hsl(0, 72%, 46%));
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.hidden {
  display: none;
}

.desktop-only {
  display: none;
}

.mobile-only {
  display: inline-flex;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .footer-nav {
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  
  .desktop-only {
    display: inline-flex;
  }
  
  .mobile-only {
    display: none;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .grid-2-lg {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-1-lg {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
    }
  
  .section {
    padding: 6rem 0;
  }
}


/* Container principal */
.elementor-element.elementor-element-bd7a9ad {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* Espaço entre os blocos */
  flex-wrap: nowrap;
  text-align: center;
}

/* Cada bloco interno */
.elementor-element.elementor-element-bd7a9ad > .e-con-full {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Ajustes de imagens */
.elementor-element.elementor-element-bd7a9ad img {
  max-width: 80%;
  height: auto;
}

/* Texto abaixo das imagens */
.elementor-element.elementor-element-bd7a9ad p {
  margin: 5px 0;
  font-size: 14px;
  color: #222;
}

/* COPYRIGHT */
.footer-copy {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
}

/* Layout responsivo */
@media (max-width: 768px) {
  .elementor-element.elementor-element-bd7a9ad {
    flex-direction: column;
    gap: 20px;
  }
}

body.dark {
  --background: hsl(260, 40%, 6%);
  --foreground: hsl(250, 20%, 98%);
  --card: hsl(260, 35%, 10%);
  --card-foreground: hsl(250, 20%, 98%);
  --primary: hsl(259, 62%, 42%);
  --primary-foreground: hsl(260, 40%, 98%);
  --secondary: hsl(255, 25%, 20%);
  --secondary-foreground: hsl(250, 20%, 98%);
  --muted: hsl(260, 30%, 15%);
  --muted-foreground: hsl(250, 15%, 65%);
  --accent: hsl(270, 70%, 55%);
  --accent-foreground: hsl(260, 40%, 98%);
  --border: hsl(260, 30%, 18%);
  --input: hsl(260, 30%, 18%);
  --ring: hsl(259, 62%, 42%);
}

/* ============================================
   TYPOGRAPHY & BASE STYLES
   ============================================ */

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================
   GRADIENTS & EFFECTS
   ============================================ */

.gradient-primary {
  background: linear-gradient(135deg, hsl(259, 62%, 42%) 0%, hsl(270, 70%, 55%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: linear-gradient(135deg, hsl(260, 40%, 6%) 0%, hsl(255, 35%, 15%) 100%);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-text {
  opacity: 0;
  transition: opacity 1.2s ease-out;
}

.fade-in-text.visible {
  opacity: 1;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px hsla(259, 62%, 42%, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background-color 0.3s;
}

.icon-btn:hover {
  background-color: var(--muted);
}

/* ============================================
   HEADER
   ============================================ */

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

#header.scrolled {
  background-color: hsla(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.desktop-nav {
  display: none;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s;
}

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

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

.theme-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
  animation: fadeIn 0.3s ease;
}

.mobile-menu.show {
  display: flex;
}

.mobile-nav-link {
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius);
  transition: all 0.3s;
}

.mobile-nav-link:hover {
  color: var(--primary);
  background-color: var(--muted);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--secondary);
}

body:not(.dark) .hero-bg {
  opacity: 0.9;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  filter: blur(3px);
  background-position: center;
  opacity: 0.2;
}

body:not(.dark) .hero-image {
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    hsla(var(--background) / 0.3) 0%, 
    hsla(var(--background) / 0.5) 50%, 
    hsla(var(--background) / 0.7) 100%);
}

body.dark .hero-overlay {
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 1rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title .text-primary {
  color: var(--primary);
}

body.dark .hero-title .text-primary {
  color: var(--foreground);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--muted-foreground);
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator-line {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid var(--primary);
  border-radius: 1rem;
  position: relative;
}

.scroll-indicator-line::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.25rem;
  height: 0.75rem;
  background-color: var(--primary);
  border-radius: 0.25rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 5rem 0;
}

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

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

.bg-muted {
  background-color: var(--muted);
}

.bg-background {
  background-color: var(--background);
}

/* ============================================
   GRIDS
   ============================================ */

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

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-2-lg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.neon-card {
  position: relative;
}

.neon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, hsl(259, 62%, 42%), hsl(270, 70%, 55%));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.neon-card:hover::before {
  opacity: 1;
}

.neon-card:hover {
  box-shadow: 0 0 20px hsla(259, 62%, 42%, 0.5), 0 0 40px hsla(259, 62%, 42%, 0.3);
  transform: translateY(-4px);
}

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

.card-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.card-icon svg {
  color: var(--primary-foreground);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.card-description {
  color: var(--muted-foreground);
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-card {
  border: 2px solid var(--primary);
  position: relative;
}

.highlight-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.service-header {
  display: flex;
  gap: 1rem;
  margin-top: 10px;
  align-items: flex-start;
}

.service-icon-wrapper {
  flex-shrink: 0;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  color: var(--primary);
}

.service-icon.highlight {
  background-color: var(--primary);
}

.service-icon.highlight svg {
  color: var(--primary-foreground);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.service-subtitle {
  color: var(--primary);
  font-size: 1.125rem;
}

.service-description {
  color: var(--muted-foreground);
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.service-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  padding-right: 1px;
  color: var(--primary);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.cta-highlight {
  font-weight: 600;
  color: var(--foreground);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */

.partners-section {
  padding: 4rem 0;
  background-color: var(--background);
  border-top: 1px solid var(--border);
}

.partners-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.partners-wrapper {
  position: relative;
  overflow: hidden;
}

.partners-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 10;
  pointer-events: none;
}

.partners-gradient.left {
  left: 0;
  background: linear-gradient(to right, var(--background), transparent);
}

.partners-gradient.right {
  right: 0;
  background: linear-gradient(to left, var(--background), transparent);
}

.partners-scroll {
  display: flex;
  animation: scrollPartners 60s linear infinite;
}

.partners-scroll:hover {
  animation-play-state: paused;
}

.partner-item {
  flex-shrink: 0;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-item img {
  height: 4rem;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.partner-item img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============================================
   HIGHLIGHT SECTION
   ============================================ */

.highlight-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.highlight-bg {
  position: absolute;
  inset: 0;
  background-color: var(--secondary);
}

.highlight-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1605810230434-7631ac76ec81?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.highlight-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.highlight-title {
  font-size: clamp(1.875rem, 4vw, 4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.highlight-text {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--foreground);
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  font-size: 1rem;
  transition: all 0.3s;
  margin-bottom: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px hsla(259, 62%, 42%, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info {
  background-color: var(--secondary);
  border-color: var(--primary);
}

.contact-group {
  margin-bottom: 1.5rem;
}

.contact-group:last-child {
  margin-bottom: 0;
}

.contact-group h4 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-group p {
  color: var(--muted-foreground);
}

.small-text {
  font-size: 0.875rem;
}


.map-container {
  height: 16rem;
  background-color: var(--card);
  margin-top: 15px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}  

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: var(--card);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
}

.footer-link {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.3s;
}

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

.footer-quote {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  font-style: italic;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--muted);
  color: var(--foreground);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px hsla(259, 62%, 42%, 0.4);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-contact-link:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ============================================
   URGENT POPUP
   ============================================ */

.urgent-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
  padding: 1rem;
}

.urgent-popup.show {
  display: flex;
}

.urgent-popup-content {
  background: linear-gradient(135deg, hsl(45, 100%, 51%), hsl(38, 92%, 50%));
  border-radius: 1rem;
  max-width: 550px;
  width: 100%;
  padding: 1.1rem;
  position: relative;
  animation: slideUp 0.4s ease-out;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 3px solid hsl(0, 0%, 100%);
}

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

.urgent-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: hsl(0, 0%, 100%);
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.urgent-popup-close:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: rotate(90deg);
}

.urgent-popup-icon {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

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

.urgent-popup-title {
  font-size: clamp(1.3rem, 4vw, 1.5rem);
  font-weight: 900;
  text-align: center;
  padding-left: 25px;
  padding-right: 25px;
  color: hsl(0, 0%, 15%);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.urgent-popup-body {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.urgent-popup-body p {
  color: hsl(0, 0%, 15%);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.urgent-popup-body p:last-child {
  margin-bottom: 0;
}

.urgent-popup-body strong {
  color: hsl(0, 84%, 40%);
  font-weight: 700;
}

.urgent-popup-highlight {
  font-weight: 600;
  color: hsl(259, 62%, 42%) !important;
}

.btn-urgent {
  width: 100%;
  background: linear-gradient(135deg, hsl(0, 84%, 60%), hsl(0, 72%, 51%));
  color: hsl(0, 0%, 100%);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.25rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 16px rgba(220, 38, 38, 0.4);
  animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.4);
  }
  50% {
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.6);
  }
}

.btn-urgent:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.6);
  background: linear-gradient(135deg, hsl(0, 84%, 55%), hsl(0, 72%, 46%));
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.hidden {
  display: none;
}

.desktop-only {
  display: none;
}

.mobile-only {
  display: inline-flex;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .footer-nav {
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  
  .desktop-only {
    display: inline-flex;
  }
  
  .mobile-only {
    display: none;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .grid-2-lg {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-1-lg {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
    }
  
  .section {
    padding: 6rem 0;
  }
}


/* Container principal */
.elementor-element.elementor-element-bd7a9ad {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* Espaço entre os blocos */
  flex-wrap: nowrap;
  text-align: center;
}

/* Cada bloco interno */
.elementor-element.elementor-element-bd7a9ad > .e-con-full {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Ajustes de imagens */
.elementor-element.elementor-element-bd7a9ad img {
  max-width: 80%;
  height: auto;
}

/* Texto abaixo das imagens */
.elementor-element.elementor-element-bd7a9ad p {
  margin: 5px 0;
  font-size: 14px;
  color: #222;
}

/* COPYRIGHT */
.footer-copy {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
}

/* Layout responsivo */
@media (max-width: 768px) {
  .elementor-element.elementor-element-bd7a9ad {
    flex-direction: column;
    gap: 20px;
  }
}

/* Borda neon animada */
.neon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, hsl(259, 62%, 42%), hsl(270, 70%, 55%));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none !important; /* 👈 ESSENCIAL pra liberar a seleção */
}