/* ===== VARIABLES ===== */
:root {
  --primary: #1A64C5;
  --primary-dark: #134a94;
  --primary-light: #e8f0fc;
  --accent: #3b82f6;
  --bg: #ffffff;
  --text: #1e1e2f;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius: 12px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: 'Ubuntu', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand-lura,
.section-tag,
.hero-tag,
.stat-number,
.footer-brand {
  font-family: 'Ubuntu Mono', monospace;
}

::selection {
  background: var(--primary);
  color: #fff;
}

a {
  text-decoration: none;
}

/* ===== MATERIAL SYMBOLS ===== */
.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
  user-select: none;
  vertical-align: middle;
}

/* ===== NAVBAR ===== */
.navbar-lura {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  transition: box-shadow 0.3s ease;
  z-index: 1000;
}

.navbar-lura.scrolled {
  box-shadow: 0 2px 24px rgba(26, 100, 197, 0.08);
}

.navbar-brand-lura {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary) !important;
  letter-spacing: -0.5px;
}

.navbar-brand-lura span {
  color: var(--text);
}

.navbar-lura .nav-link {
  color: var(--text) !important;
  font-size: 0.92rem;
  font-weight: 400;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.25s;
}

.navbar-lura .nav-link:hover,
.navbar-lura .nav-link.active {
  color: var(--primary) !important;
}

.navbar-lura .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.navbar-lura .nav-link:hover::after,
.navbar-lura .nav-link.active::after {
  transform: scaleX(1);
}

.btn-nav-cta {
  background: var(--primary);
  color: #fff !important;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.25s, transform 0.2s;
}

.btn-nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Hide toggler button on mobile — only show brand */
@media (max-width: 991.98px) {
  .navbar-lura .navbar-collapse {
    display: none !important;
  }

  .navbar-lura .navbar-toggler {
    display: none;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}

/* Animated Grid Background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Floating elements */
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0.05;
  animation: floatDot 12s ease-in-out infinite;
}

.hero-dot:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -60px;
  right: -80px;
  animation-delay: 0s;
}

.hero-dot:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: -50px;
  animation-delay: 3s;
}

.hero-dot:nth-child(3) {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 15%;
  animation-delay: 5s;
  opacity: 0.05;
}

.hero-dot:nth-child(4) {
  width: 80px;
  height: 80px;
  bottom: 25%;
  left: 20%;
  animation-delay: 7s;
  opacity: 0.06;
}

@keyframes floatDot {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Glowing line accent */
.hero-glow-line {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0.12;
  animation: glowLine 6s ease-in-out infinite;
}

@keyframes glowLine {

  0%,
  100% {
    opacity: 0.05;
    transform: translateY(0);
  }

  50% {
    opacity: 0.15;
    transform: translateY(-30px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  color: #fff;
  opacity: 0.8;
}

.hero .hero-title {
  max-width: 40ch;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 40ch;
  margin-bottom: 2rem;
  line-height: 1.5rem;
}

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

.btn-primary-lura {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero .btn-primary-lura {
  background: #fff;
  color: var(--primary);
}

.hero .btn-primary-lura:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  color: var(--primary-dark);
}

.btn-primary-lura:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 100, 197, 0.25);
  color: #fff;
}

.btn-outline-lura {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero .btn-outline-lura {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-outline-lura:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline-lura:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 100, 197, 0.25);
}

/* Hero visual cards */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-card:nth-child(2) {
  margin-top: 2rem;
}

.hero-card:nth-child(3) {
  margin-top: -2rem;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-icon .material-symbols-outlined {
  font-size: 1.4rem;
  color: #fff;
}

.hero-card h6 {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: 6rem 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(26, 100, 197, 0.12);
}

.section-tag .material-symbols-outlined {
  font-size: 0.95rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
}

/* ===== SERVICES ===== */
#servicos {
  background: #f8fafd;
  position: relative;
}

#servicos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  border-color: rgba(26, 100, 197, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 100, 197, 0.08);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.service-icon .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--primary);
}

.service-card:hover .service-icon {
  background: var(--primary);
}

.service-card:hover .service-icon .material-symbols-outlined {
  color: #fff;
}

.service-card h5 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* ===== ABOUT ===== */
#sobre {
  background: var(--bg);
}

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

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-item {
  background: #f8fafd;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: rgba(26, 100, 197, 0.2);
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 3rem;
  font-weight: 500;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* About visual panel */
.about-visual {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 100, 197, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 100, 197, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}

.about-visual-content {
  position: relative;
  z-index: 1;
}

.about-visual .terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  color: #64748b;
  font-size: 0.8rem;
}

.about-visual .terminal-header .material-symbols-outlined {
  color: var(--primary);
}

.about-visual .value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.about-visual .value-item .val-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(26, 100, 197, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-visual .value-item .val-icon .material-symbols-outlined {
  color: #60a5fa;
  font-size: 1.2rem;
}

.about-visual .value-item strong {
  color: #e2e8f0;
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.9rem;
}

.about-visual .value-item span {
  font-size: 0.82rem;
  line-height: 1.4;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.btn-cta-white {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 0.85rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  color: var(--primary-dark);
}

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 4rem 0 0;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-brand span {
  color: var(--accent);
}

.footer-slogan {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer h6 {
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 1.5rem 0;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: #475569;
}

.footer-bottom .cnpj {
  font-size: 0.82rem;
  color: #475569;
}

/* ===== ANIMATIONS (Scroll Reveal) ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger>.reveal {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

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

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

/* ===== UTILITIES ===== */
.text-primary-lura {
  color: var(--primary) !important;
}

.mb-6 {
  margin-bottom: 4rem !important;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.contact-form:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.contact-form .form-label {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 0.875rem 1.25rem;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
  color: #9ca3af;
  opacity: 1;
}

.contact-form .form-control:hover {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-control:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 100, 197, 0.15);
  outline: none;
  transform: translateY(-1px);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.contact-form .btn-cta-white {
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form .btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.contact-form .alert {
  border-radius: 10px;
  padding: 1.25rem 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.contact-form .alert-success {
  background: rgba(34, 197, 94, 0.2);
  border: 2px solid rgba(34, 197, 94, 0.4);
  color: #ffffff;
}

.contact-form .alert-danger {
  background: rgba(239, 68, 68, 0.2);
  border: 2px solid rgba(239, 68, 68, 0.4);
  color: #ffffff;
}

.cta-section .alert {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PACKAGES SECTION ===== */
.packages-section {
  background: var(--primary-light);
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.packages-swiper {
  padding: 1.5rem 0.5rem 3.5rem;
  position: relative;
}

.package-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(26, 100, 197, 0.06);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(26, 100, 197, 0.15);
}

.package-card--highlight {
  border-color: var(--primary);
  background: linear-gradient(160deg, #fff 60%, var(--primary-light) 100%);
  box-shadow: 0 4px 24px rgba(26, 100, 197, 0.14);
}

.package-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  padding: 0.25rem 0.85rem;
  margin-bottom: 1.25rem;
}

.package-badge--gold {
  background: #fff7e0;
  color: #b8860b;
}

.package-badge--dark {
  background: #e8eaf0;
  color: var(--text);
}

.package-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.package-icon .material-symbols-outlined {
  font-size: 1.7rem;
  color: var(--primary);
}

.package-card--highlight .package-icon {
  background: var(--primary);
}

.package-card--highlight .package-icon .material-symbols-outlined {
  color: #fff;
}

.package-title {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.package-ideal {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  line-height: 1.6;
}

.package-items {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  width: 100%;
}

.package-items li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.package-items li:last-child {
  border-bottom: none;
}

.package-items li .material-symbols-outlined {
  font-size: 1.15rem;
  color: var(--primary);
  flex-shrink: 0;
}

.btn-package-cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: auto;
}

.btn-package-cta:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.package-card--highlight .btn-package-cta {
  background: var(--primary);
  box-shadow: 0 4px 14px rgba(26, 100, 197, 0.35);
}

/* Swiper customization */
.packages-swiper .swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.3;
}

.packages-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.packages-button-prev,
.packages-button-next {
  color: var(--primary) !important;
}

.packages-button-prev::after,
.packages-button-next::after {
  font-size: 1.2rem !important;
  font-weight: 900;
}

@media (min-width: 992px) {
  .packages-button-prev {
    left: -2rem !important;
  }

  .packages-button-next {
    right: -2rem !important;
  }
}