
/* v37 - Optimizaciones velocidad de carga mejoradas */
/* === OPTIMIZACIONES CRÍTICAS DE RENDIMIENTO === */

/* Prevenir FOUC (Flash of Unstyled Content) */
html {
    visibility: visible;
    opacity: 1;
}

/* Hero background para móviles (sin video) */
@media (max-width: 768px) {
    .hero__video-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0B1220 0%, #101a2b 50%, #0B1220 100%);
        z-index: 1;
    }
}

/* Optimizar fuentes con font-display swap y preload */
@font-face {
    font-display: swap;
    font-weight: 300 700;
}

/* Reducir repaints en carga inicial */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mejorar rendering de animaciones - solo cuando se anima */
.section-animate {
    will-change: auto;
}

.section-animate:not(.animate-in) {
    will-change: opacity, transform;
}

/* Lazy load de imágenes - placeholder mientras cargan */
img[loading="lazy"] {
    background: rgba(16, 26, 43, 0.3);
}

/* Prevenir layout shifts */
img, video {
    max-width: 100%;
    height: auto;
}

.section-animate.animate-in {
    will-change: auto;
}

.metric-card, .pain-card, .plan-card {
    will-change: transform;
}

.metric-card:hover, .pain-card:hover, .plan-card:hover {
    will-change: auto;
}

/* Reducir repaints en navegación */
.navbar {
    will-change: transform, opacity;
}

.navbar.scrolled {
    will-change: auto;
}

/* Optimizar video background */
.hero__video-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B1220;
    z-index: -1;
}

/* Lazy loaded images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

img.loaded,
img[loading="lazy"]:not([data-src]) {
    opacity: 1;
}

/* Font display optimization */
@font-face {
    font-family: 'Space Grotesk';
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-display: swap;
}

/* Reduce motion para usuarios que lo prefieren */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* === TITLURI CARDURI (1,2,3) === */
.solution-grid .solution-panel h3 {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  line-height: 1.3 !important;
  margin-bottom: 0.4rem !important;
}

/* Card 2 – ajustare titlu + text */
.solution-grid .solution-column:nth-of-type(2) .solution-panel h3 {
  margin-top: 0.35rem !important;
}

.solution-grid .solution-column:nth-of-type(2) .solution-panel p {
  margin-top: -0.15rem !important;
}

/* === NUMĂR MARE (card 2) ===
   Menține pe un singur rând și micșorează fontul adaptiv */
.stats-grid .stat-column:nth-of-type(2) .metric-number,
.stats-grid .stat-column:nth-of-type(2) .stat-number {
  display: inline-block !important;
  max-width: 90% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-size: clamp(1.6rem, 3.5vw, 2rem) !important;
  line-height: 1.1 !important;
  text-align: center !important;
}

/* ===== OPTIMIZACIÓN SECCIÓN DE CONTACTO ===== */

/* Título optimizado para no expandir la tarjeta */
#contacto .contact-info h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem) !important;
  line-height: 1.3 !important;
  margin-bottom: 1.5rem !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
}

#contacto .contact-info {
  min-width: 400px !important;
  width: 100% !important;
  overflow: visible !important;
  padding: 2rem 1rem !important;
}

#contacto .contact-info p {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
  width: 100% !important;
  margin-bottom: 1rem !important;
}

/* Email con mismo tamaño que teléfono */
#contacto .contact-info a[href^="mailto"],
#contacto .contact-info a[href^="tel"] {
  font-size: 1rem !important;
  letter-spacing: -0.01em !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  max-width: none !important;
  min-width: 0 !important;
  width: auto !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
  text-decoration: none !important;
  color: var(--text) !important;
  transition: color 0.3s ease !important;
}

#contacto .contact-info a[href^="mailto"]:hover,
#contacto .contact-info a[href^="tel"]:hover {
  color: var(--accent) !important;
  text-decoration: underline !important;
}

@media (max-width: 768px) {
  #contacto .contact-info h3 {
    font-size: clamp(1rem, 3vw, 1.2rem) !important;
  }

  #contacto .contact-info {
    min-width: 0 !important;
    width: 100% !important;
    padding: 1.5rem 0.5rem !important;
    overflow-x: auto !important;
  }

  #contacto .contact-info a[href^="mailto"],
  #contacto .contact-info a[href^="tel"] {
    font-size: 0.9rem !important;
    letter-spacing: -0.02em !important;
  }
}

@media (max-width: 480px) {
  #contacto .contact-info h3 {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem) !important;
  }

  #contacto .contact-info {
    padding: 1rem 0.25rem !important;
  }

  #contacto .contact-info a[href^="mailto"],
  #contacto .contact-info a[href^="tel"] {
    font-size: 0.85rem !important;
    letter-spacing: -0.02em !important;
  }
}

.stats-grid .stat-number,
.metric-number {
  font-family: 'Inter', 'Space Grotesk', 'Roboto', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
  font-variant-numeric: lining-nums tabular-nums !important;
  font-feature-settings: "tnum", "lnum" !important;
}

.metrics-grid .metric-card {
  min-width: 220px !important;
}

/* === OPTIMIZACIÓN DE CONTADORES MÉTRICAS === */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin: 0 auto 3rem auto;
    max-width: 1000px;
    width: 100%;
    padding: 0 1rem !important;
    justify-content: center;
    box-sizing: border-box;
}

.metric-card {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.metric-number {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
}

.metric-label {
    font-size: clamp(0.9rem, 2vw, 1.125rem) !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    line-height: 1.3 !important;
}

.metric-period {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem) !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}

@media (max-width: 1200px) {
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 900px;
    }
}

@media (max-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 1rem !important;
        margin-bottom: 2rem;
    }
    
    .metric-card {
        padding: 1.5rem 0.75rem !important;
    }
    
    .metric-number {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
        margin-bottom: 0.25rem !important;
    }
    
    .metric-label {
        font-size: clamp(0.85rem, 3vw, 1rem) !important;
    }
    
    .metric-period {
        font-size: clamp(0.7rem, 2.5vw, 0.8rem) !important;
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 0.75rem !important;
    }
    
    .metric-card {
        padding: 1.25rem 0.75rem !important;
    }
    
    .metric-number {
        font-size: clamp(1.5rem, 8vw, 2rem) !important;
    }
    
    .metric-label {
        font-size: clamp(0.8rem, 4vw, 0.95rem) !important;
    }
}

@media (max-width: 768px) {
  #contacto.section,
  #contacto .contact-content {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  #contacto .contact-form,
  #contacto .contact-info {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 24px auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }
}

/* ===== PACK 1 - Compatibilidad cross-browser ===== */
.plan-card__features li div {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.plan-card__features li div > div {
  display: block !important;
  width: 100% !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
  -webkit-hyphens: auto !important;
  -ms-hyphens: auto !important;
}

.plan-card__features li div > div:nth-child(2) {
  margin-left: clamp(60px, 12vw, 120px) !important;
  padding-left: 0 !important;
  text-indent: 0 !important;
}

@media (max-width: 480px) {
  .plan-card__features li div > div:nth-child(2) {
    margin-left: clamp(40px, 10vw, 80px) !important;
    font-size: 0.9em !important;
  }

  .plan-card__features li div {
    line-height: 1.5 !important;
  }
}

@media (max-width: 375px) {
  .plans-grid .plan-card:first-child .plan-card__features li:first-child div > div:nth-child(2),
  .plans-grid .plan-card:first-child .plan-card__features li:first-child div > div:nth-child(3) {
    font-size: 0.8em !important;
    line-height: 1.25 !important;
    padding-left: 1rem !important;
  }

  .plans-grid .plan-card:first-child .plan-card__features li:first-child div > div:nth-child(2)::before,
  .plans-grid .plan-card:first-child .plan-card__features li:first-child div > div:nth-child(3)::before {
    left: 0 !important;
  }

  .plans-grid .plan-card:nth-child(2) .plan-card__features li:first-child div > div:nth-child(2),
  .plans-grid .plan-card:nth-child(2) .plan-card__features li:first-child div > div:nth-child(3) {
    font-size: 0.8em !important;
    line-height: 1.25 !important;
    padding-left: 1rem !important;
  }

  .plans-grid .plan-card:nth-child(2) .plan-card__features li:first-child div > div:nth-child(2)::before,
  .plans-grid .plan-card:nth-child(2) .plan-card__features li:first-child div > div:nth-child(3)::before {
    left: 0 !important;
  }

  .plans-grid .plan-card:nth-child(3) .plan-card__features li:first-child div > div:nth-child(2),
  .plans-grid .plan-card:nth-child(3) .plan-card__features li:first-child div > div:nth-child(3) {
    font-size: 0.8em !important;
    line-height: 1.25 !important;
    padding-left: 1rem !important;
  }

  .plans-grid .plan-card:nth-child(3) .plan-card__features li:first-child div > div:nth-child(2)::before,
  .plans-grid .plan-card:nth-child(3) .plan-card__features li:first-child div > div:nth-child(3)::before {
    left: 0 !important;
  }
}

@supports (-webkit-appearance: none) {
  .plan-card__features li div > div:nth-child(2) {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-moz-document url-prefix() {
  .plan-card__features li div > div:nth-child(2) {
    margin-left: clamp(60px, 12vw, 120px) !important;
  }
}

/* ===== Exit-intent overlay & modal – FINAL ===== */
#exit-intent-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: none;
  background: rgba(10, 14, 24, .65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow: hidden;
}

#exit-intent-overlay.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 24px);
}

#exit-intent-overlay .exit-modal {
  box-sizing: border-box;
  width: min(96vw, 760px);
  max-height: min(92vh, 720px);
  overflow: auto;
  border-radius: 18px;
  background: #0f1724;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .65);
}

#exit-intent-overlay .exit-modal * {
  max-width: 100%;
}

html.exit-intent-open,
body.exit-intent-open {
  overflow: hidden !important;
}

@supports (height: 100dvh) {
  #exit-intent-overlay .exit-modal {
    max-height: min(92dvh, 720px);
  }
}

.popup-container,
.popup-modal,
.exit-intent-popup {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  max-width: none !important;
  max-height: none !important;
}

/* ===== PACK 2 - Estilos específicos para móviles ===== */

@media (max-width: 480px) {
  .plans-grid .plan-card:nth-child(2) .plan-card__features li:first-child div > div:nth-child(1) {
    margin-bottom: 0.75rem !important;
    line-height: 1.4 !important;
    display: block !important;
  }

  .plans-grid .plan-card:nth-child(2) .plan-card__features li:first-child div > div:nth-child(2) {
    margin-left: 0 !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.85em !important;
    line-height: 1.3 !important;
    position: relative !important;
    padding-left: 1.2rem !important;
    display: block !important;
  }

  .plans-grid .plan-card:nth-child(2) .plan-card__features li:first-child div > div:nth-child(2)::before {
    content: "• " !important;
    position: absolute !important;
    left: 0 !important;
    color: var(--accent, #19E1D6) !important;
    font-weight: bold !important;
    top: 0 !important;
  }

  .plans-grid .plan-card:nth-child(2) .plan-card__features li:first-child div > div:nth-child(3) {
    margin-left: 0 !important;
    margin-top: 0.5rem !important;
    line-height: 1.4 !important;
    display: block !important;
  }

  .plans-grid .plan-card:nth-child(2) .plan-card__features li:first-child div {
    line-height: 1.4 !important;
    display: block !important;
    width: 100% !important;
  }

  .plans-grid .plan-card:nth-child(3) .plan-card__features li:first-child div > div:nth-child(1) {
    margin-bottom: 0.75rem !important;
    line-height: 1.4 !important;
    display: block !important;
  }

  .plans-grid .plan-card:nth-child(3) .plan-card__features li:first-child div > div:nth-child(2) {
    margin-left: 0 !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.85em !important;
    line-height: 1.3 !important;
    position: relative !important;
    padding-left: 1.2rem !important;
    display: block !important;
  }

  .plans-grid .plan-card:nth-child(3) .plan-card__features li:first-child div > div:nth-child(2)::before {
    content: "• " !important;
    position: absolute !important;
    left: 0 !important;
    color: var(--accent, #19E1D6) !important;
    font-weight: bold !important;
    top: 0 !important;
  }

  .plans-grid .plan-card:nth-child(3) .plan-card__features li:first-child div > div:nth-child(3) {
    margin-left: 0 !important;
    margin-top: 0.5rem !important;
    line-height: 1.4 !important;
    display: block !important;
  }

  .plans-grid .plan-card:nth-child(3) .plan-card__features li:first-child div {
    line-height: 1.4 !important;
    display: block !important;
    width: 100% !important;
  }
}

/* === CHECKBOX DE PRIVACIDAD - SOLUCIÓN DEFINITIVA === */

.form-group--checkbox {
    margin-bottom: 1.5rem !important;
}

.checkbox-wrapper {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    cursor: pointer !important;
    padding: 0.5rem 0 !important;
}

.checkbox-input {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    cursor: pointer !important;
    margin: 3px 0 0 0 !important;
    flex-shrink: 0 !important;
    position: relative !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 4px !important;
    background-color: transparent !important;
    transition: all 0.2s ease !important;
}

.checkbox-input:checked {
    background-color: #2ED47A !important;
    border-color: #2ED47A !important;
}

.checkbox-input:checked::after {
    content: '✓' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: white !important;
    font-size: 14px !important;
    font-weight: bold !important;
    display: block !important;
}

.checkbox-text {
    color: var(--text-secondary, #C8D6E8) !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    flex: 1 !important;
}

.checkbox-text a {
    color: var(--accent, #19E1D6) !important;
    text-decoration: underline !important;
    transition: color 0.2s ease !important;
}

.checkbox-text a:hover {
    color: var(--brand, #1F6FFF) !important;
}

.checkbox-box {
    display: none !important;
}

@media (max-width: 768px) {
    .checkbox-input {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        min-height: 22px !important;
    }

    .checkbox-text {
        font-size: 0.85rem !important;
    }
}

@media (pointer: coarse) {
    .checkbox-input {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        min-height: 24px !important;
    }

    .checkbox-wrapper {
        padding: 0.75rem 0 !important;
        min-height: 44px !important;
        align-items: center !important;
    }
}

/* === SOLUCIONES ESTRATÉGICAS PERSONALIZADAS === */
.strategic-services-grid {
    position: relative;
    max-width: 1200px;
    margin: 2rem auto 3rem auto;
    border-radius: 24px;
    overflow: hidden;
    background-image: url('attached_assets/oficina_1761133562757.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 1px 1px 0 rgba(255, 255, 255, 0.4),
        inset -1px -1px 0 rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.15),
        inset 0 0 30px rgba(255, 255, 255, 0.08);
    padding: 3rem;
}

.strategic-services-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(11, 18, 32, 0.8) 50%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.strategic-services-grid > div {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .strategic-services-grid {
        padding: 2.5rem;
    }
    
    .strategic-services-grid > div {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 768px) {
    .strategic-services-grid {
        padding: 2rem 1.5rem;
    }
    
    .strategic-services-grid > div {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.strategic-service-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    background: rgba(16, 26, 43, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.strategic-service-card:hover {
    background: rgba(16, 26, 43, 0.7);
    border-color: rgba(25, 225, 214, 0.4);
    transform: translateY(-4px);
}

.strategic-service-card h4 {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.85),
        0 1px 4px rgba(0, 0, 0, 0.75),
        0 1px 2px rgba(0, 0, 0, 0.9);
}

.strategic-service-card p {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    color: rgba(234, 242, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 1px 3px rgba(0, 0, 0, 0.9);
}

.strategic-service-card::before {
    content: attr(data-icon);
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 4rem;
    opacity: 0.08;
    color: var(--accent);
    pointer-events: none;
    z-index: 0;
    transition: all 0.4s ease;
    line-height: 1;
}

.strategic-service-card:hover::before {
    opacity: 0.15;
    transform: scale(1.05);
}

.strategic-service-card > * {
    position: relative;
    z-index: 1;
}

.strategic-service-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(25, 225, 214, 0.2);
}

.strategic-service-icon {
    display: none;
}

.strategic-service-card h4 {
    font-family: var(--font-family-headings);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
}

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

.strategic-cta {
    background-image: url('attached_assets/enfoque_1759095643584.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid rgba(25, 225, 214, 0.3);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.strategic-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(11, 18, 32, 0.4) 0%, 
        rgba(16, 26, 43, 0.35) 50%, 
        rgba(11, 18, 32, 0.4) 100%);
    z-index: 1;
    border-radius: var(--radius-lg);
}

.strategic-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(31, 111, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(25, 225, 214, 0.03) 0%, transparent 50%);
    pointer-events: none;
    border-radius: var(--radius-lg);
    z-index: 2;
}

.strategic-cta h3 {
    font-family: var(--font-family-headings);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 3;
}

.strategic-cta .btn {
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .strategic-cta {
        padding: 2rem 1.5rem;
    }
    
    .strategic-cta h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
}

/* === BOTÓN STICKY CTA === */
.sticky-cta .btn {
        width: auto;
        min-width: 160px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
