/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --bg-gradient: linear-gradient(135deg, #FAF2EB 0%, #EBE5E0 100%);
  --color-text-dark: #35302A;       /* Heading text color (Dark bronze) */
  --color-text-muted: #64605E;      /* Subheading and normal menu text */
  --color-rose-gold: #A88F86;       /* Active link, border, brand color */
  --color-white: #ffffff;
  
  /* Buttons Gradient */
  --btn-gradient-start: #A66E5F;
  --btn-gradient-mid: #D2A294;
  --btn-gradient-end: #75757D;
  --btn-gradient: linear-gradient(90deg, var(--btn-gradient-start) 0%, var(--btn-gradient-mid) 50%, var(--btn-gradient-end) 100%);
  
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Animations */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-body);
  color: var(--color-text-muted);
  background: #FAF2EB; /* Fallback */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* App Container with full height and the custom gradient */
.app-container {
  min-height: 100vh;
  width: 100%;
  background: var(--bg-gradient);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.5rem 6.5rem;
  z-index: 10;
}

.logo-container {
  display: flex;
  flex-direction: column;
}

.logo-link {
  text-decoration: none;
  display: inline-block;
  outline: none;
}

.logo-img {
  height: 135px; /* High fidelity matching logo scale */
  width: auto;
  display: block;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 4px 10px rgba(53, 48, 42, 0.05));
}

.logo-link:hover .logo-img {
  transform: translateY(-2px) scale(1.01);
}

.logo-link:focus-visible .logo-img {
  outline: 2px solid var(--color-rose-gold);
  border-radius: 4px;
}

.nav {
  display: flex;
  gap: 2.5rem;
  margin-top: 0.8rem; /* Align menu text vertically with logo text */
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
}

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

/* Active Navigation Tab (Rose Gold) */
.nav-link.active {
  color: var(--color-rose-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-rose-gold);
  transition: var(--transition-smooth);
}

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

.nav-link:focus-visible {
  outline: 2px solid var(--color-rose-gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 0 6.5rem 5rem 6.5rem;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Hero Content (Left Column) */
.hero-content {
  display: flex;
  flex-direction: column;
  opacity: 0; /* Animated in JS */
  transform: translateY(20px); /* Animated in JS */
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 3.8rem;
  line-height: 1.12;
  color: var(--color-text-dark);
  letter-spacing: 0.01em;
  margin-bottom: 1.8rem;
}

.title-line {
  display: block;
}

.title-line-1 {
  font-weight: 400;
}

.title-line-2 {
  font-weight: 600;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* ==========================================================================
   BUTTONS (CTAs)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: var(--transition-smooth);
  outline: none;
  cursor: pointer;
}

/* Primary Button (Metallic Rose Gold-Slate Gradient) */
.btn-primary {
  background: var(--btn-gradient);
  background-size: 200% auto;
  color: var(--color-white);
  border: none;
  box-shadow: 0 10px 25px rgba(166, 110, 95, 0.22);
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(166, 110, 95, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button (Outline Rose Gold) */
.btn-secondary {
  background: transparent;
  color: var(--color-rose-gold);
  border: 1.5px solid var(--color-rose-gold);
  box-shadow: 0 10px 25px rgba(166, 110, 95, 0.05);
}

.btn-secondary:hover {
  background-color: var(--color-rose-gold);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(166, 110, 95, 0.2);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid var(--color-text-dark);
  outline-offset: 3px;
}

/* ==========================================================================
   HERO ILLUSTRATION
   ========================================================================== */
.hero-illustration {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  opacity: 0; /* Animated in JS */
  transform: scale(0.95); /* Animated in JS */
}

.illustration-wrapper {
  position: relative;
  width: 100%;
  max-width: 530px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

.illustration-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  /* Filter to enhance the rose-gold metallic tones slightly and match high-end renders */
  filter: drop-shadow(0 15px 35px rgba(166, 110, 95, 0.1));
  user-select: none;
}

/* Floating animation for the 3D isometric structures */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Large screens and laptops */
@media (max-width: 1200px) {
  .header {
    padding: 2rem 4rem;
  }
  .hero {
    padding: 0 4rem 4rem 4rem;
  }
  .hero-title {
    font-size: 3.2rem;
  }
}

/* Tablets and medium screens */
@media (max-width: 992px) {
  .header {
    padding: 2rem 3rem;
  }
  .hero {
    padding: 0 3rem 4rem 3rem;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-subtitle {
    max-width: 600px;
  }
  .hero-illustration {
    justify-content: center;
  }
  .illustration-wrapper {
    max-width: 450px;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .logo-img {
    height: 100px; /* Scaled down logo for mobile */
  }
  .nav {
    margin-top: 0;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-link {
    font-size: 0.88rem;
  }
  .hero {
    padding: 0 1.5rem 3rem 1.5rem;
  }
  .hero-title {
    font-size: 2.3rem;
    margin-bottom: 1.2rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .btn {
    width: 100%;
    max-width: 320px;
  }
  .illustration-wrapper {
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .nav {
    gap: 0.8rem;
  }
  .nav-link {
    font-size: 0.82rem;
  }
  .hero-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   PORTFOLIO VIEW
   ========================================================================== */
.portfolio {
  padding: 0 6.5rem 5rem 6.5rem;
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.portfolio-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.portfolio-header {
  margin-bottom: 3.5rem;
  text-align: left;
  animation: portfolioFade 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.portfolio-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 2.8rem;
  color: var(--color-text-dark);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.portfolio-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 700px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  width: 100%;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(53, 48, 42, 0.03);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(20px);
  animation: portfolioCardFade 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.portfolio-card:nth-child(1) { animation-delay: 0.1s; }
.portfolio-card:nth-child(2) { animation-delay: 0.2s; }
.portfolio-card:nth-child(3) { animation-delay: 0.3s; }
.portfolio-card:nth-child(4) { animation-delay: 0.4s; }

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(166, 110, 95, 0.08);
  border-color: rgba(166, 110, 95, 0.25);
  background: rgba(255, 255, 255, 0.65);
}

.card-image {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: rgba(53, 48, 42, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.04);
}

/* Specific styling for mobile apps side-by-side view */
.card-image.mobile-only {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  background: rgba(166, 110, 95, 0.03);
  padding: 1.2rem 0;
}

.portfolio-mobile-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(53, 48, 42, 0.12);
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-mobile-img {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 22px rgba(166, 110, 95, 0.18);
}

.card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-tag {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-rose-gold);
  background-color: rgba(166, 110, 95, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.8rem;
}

.card-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.card-actions {
  display: flex;
  align-items: center;
}

.card-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.card-link .arrow {
  transition: transform 0.2s ease;
}

.card-link:hover {
  color: var(--color-rose-gold);
}

.card-link:hover .arrow {
  transform: translateX(4px);
}

/* Animations for Portfolio items loading */
@keyframes portfolioFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes portfolioCardFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   PORTFOLIO RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .portfolio {
    padding: 0 4rem 4rem 4rem;
  }
}

@media (max-width: 992px) {
  .portfolio {
    padding: 0 3rem 4rem 3rem;
  }
  .portfolio-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .portfolio-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .portfolio {
    padding: 0 1.5rem 3rem 1.5rem;
  }
  .portfolio-title {
    font-size: 2rem;
  }
  .portfolio-subtitle {
    font-size: 0.95rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  border-top: 1px solid rgba(166, 110, 95, 0.15);
  padding: 2rem 6.5rem;
  margin-top: auto;
  z-index: 10;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-white);
  background-color: #25D366;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.18);
  transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  display: block;
}

/* ==========================================================================
   FOOTER RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .footer {
    padding: 2rem 4rem;
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 2rem 3rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 1.5rem;
  }
  .footer-container {
    flex-direction: column-reverse;
    gap: 1.5rem;
    text-align: center;
  }
  .btn-whatsapp {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ==========================================================================
   PRICING (PLANES DE PAGO) SECTION
   ========================================================================== */
.pricing {
  padding: 5rem 6.5rem;
  width: 100%;
  box-sizing: border-box;
}

.pricing-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-header {
  margin-bottom: 4.5rem;
  text-align: center;
}

.pricing-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 2.8rem;
  color: var(--color-text-dark);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-align: center;
}

.pricing-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(53, 48, 42, 0.02);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(166, 110, 95, 0.07);
  border-color: rgba(166, 110, 95, 0.2);
}

/* Featured / Recommended Plan Styling */
.pricing-card.recommended {
  background: rgba(255, 255, 255, 0.65);
  border: 2px solid var(--color-rose-gold);
  box-shadow: 0 15px 35px rgba(166, 110, 95, 0.1);
  transform: scale(1.03);
}

.pricing-card.recommended:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 22px 50px rgba(166, 110, 95, 0.16);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--btn-gradient);
  background-size: 200% auto;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.45rem 1.3rem;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(166, 110, 95, 0.3);
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-text-dark);
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.2rem;
}

.plan-price .currency {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-right: 2px;
}

.plan-price .amount {
  font-size: 3.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1;
}

.plan-price .period {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-rose-gold);
  margin-left: 5px;
}

.price-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  display: block;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 2rem;
  min-height: 70px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.plan-features li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  position: relative;
  padding-left: 1.8rem;
}

.plan-features li strong {
  color: var(--color-text-dark);
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--color-rose-gold);
  font-weight: 700;
  font-size: 1.15rem;
}

.plan-btn {
  width: 100%;
}

/* ==========================================================================
   SOFTWARE COMPLETO HORIZONTAL BANNER
   ========================================================================== */
.software-banner {
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 24px;
  padding: 2.8rem 3rem;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.05);
}

.software-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.45);
}

.software-banner-badge {
  position: absolute;
  top: -15px;
  left: 3rem;
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
  background-size: 200% auto;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.45rem 1.3rem;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.software-banner-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.software-banner-info {
  flex: 1;
}

.software-banner-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.8rem;
}

.software-banner-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.software-banner-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 2rem;
  margin: 0;
  padding: 0;
}

.software-banner-features li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--color-text-muted);
  position: relative;
  padding-left: 1.6rem;
}

.software-banner-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #f59e0b;
  font-weight: 700;
  font-size: 1.1rem;
}

.software-banner-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  min-width: 220px;
}

.software-banner-price {
  text-align: center;
}

.software-price-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.3rem;
}

.software-price-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
}

.software-price-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

.btn-software {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
  background-size: 200% auto;
  color: var(--color-white);
  border: none;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
  transition: var(--transition-smooth);
  width: 100%;
  text-align: center;
}

.btn-software:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.35);
}

/* Software Spec Card (Full-Width below grid) */
.software-spec-card {
  border: 2px solid rgba(245, 158, 11, 0.2);
  margin-top: 1.8rem;
}

.software-spec-card:hover {
  border-color: rgba(245, 158, 11, 0.35);
}

.software-spec-list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.9rem 2.5rem !important;
}

/* ==========================================================================
   PRICING RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .pricing {
    padding: 4rem;
  }
}

@media (max-width: 992px) {
  .pricing {
    padding: 4rem 3rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 440px;
    margin: 0 auto;
  }
  .pricing-card.recommended {
    transform: scale(1);
  }
  .pricing-card.recommended:hover {
    transform: translateY(-8px);
  }
  .software-banner-content {
    flex-direction: column;
    text-align: center;
  }
  .software-banner-subtitle {
    max-width: 100%;
  }
  .software-banner-features {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .software-spec-list {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 3rem 1.5rem;
  }
  .pricing-title {
    font-size: 2.2rem;
  }
  .pricing-subtitle {
    font-size: 0.98rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   PRICING CONSIDERATIONS SECTION
   ========================================================================== */
.pricing-considerations {
  margin-top: 5rem;
  border-top: 1px dashed rgba(166, 110, 95, 0.25);
  padding-top: 4.5rem;
  width: 100%;
}

.considerations-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.considerations-section-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--color-text-dark);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.considerations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  align-items: stretch;
}

.consideration-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(53, 48, 42, 0.02);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.consideration-card:hover {
  border-color: rgba(166, 110, 95, 0.22);
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(166, 110, 95, 0.08);
  background: rgba(255, 255, 255, 0.55);
}

.consideration-plan-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.bullet-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.bullet-dot.blue-dot {
  background-color: #3b82f6;
}

.bullet-dot.green-dot {
  background-color: #10b981;
}

.bullet-dot.purple-dot {
  background-color: #8b5cf6;
}

.bullet-dot.orange-dot {
  background-color: #f59e0b;
}

.consideration-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0;
  text-align: left;
}

.spec-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 1.8rem;
  min-height: 54px;
  text-align: left;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  text-align: left;
}

.spec-list li {
  position: relative;
  padding-left: 1.2rem;
}

.spec-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-rose-gold);
  font-weight: bold;
  font-size: 1.2rem;
  top: -1px;
}

.spec-list li strong {
  color: var(--color-text-dark);
}

.spec-list code {
  font-family: monospace;
  background-color: rgba(166, 110, 95, 0.07);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  color: #a55c47;
  font-size: 0.82rem;
}

/* ==========================================================================
   CONSIDERATIONS RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
  .considerations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  .spec-desc {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .considerations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 440px;
    margin: 0 auto;
  }
  .pricing-considerations {
    margin-top: 4rem;
    padding-top: 3rem;
  }
  .considerations-section-title {
    font-size: 1.7rem;
  }
  .consideration-card {
    padding: 2.2rem 1.6rem;
  }
  .software-banner {
    padding: 2rem 1.5rem;
  }
  .software-banner-badge {
    left: 1.5rem;
  }
}

/* ==========================================================================
   GENERAL CONSIDERATIONS (4 PUNTITOS)
   ========================================================================== */
.general-considerations {
  margin-top: 4.5rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  padding: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 30px rgba(53, 48, 42, 0.01);
}

.general-considerations-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.general-considerations-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.general-considerations-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.general-considerations-list li strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.general-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: rgba(166, 110, 95, 0.12);
  color: var(--color-rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  box-shadow: 0 2px 5px rgba(166, 110, 95, 0.05);
}

.general-considerations-list code {
  font-family: monospace;
  background-color: rgba(166, 110, 95, 0.07);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  color: #a55c47;
  font-size: 0.82rem;
}

@media (max-width: 992px) {
  .general-considerations-list {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

@media (max-width: 768px) {
  .general-considerations {
    padding: 2rem 1.5rem;
    margin-top: 3.5rem;
    border-radius: 20px;
  }
  .general-considerations-title {
    font-size: 1.25rem;
    margin-bottom: 1.8rem;
  }
}

