/* Reset y configuración base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #1a2b5c;
  color: #333;
}

/* Logo */
.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #1a2b5c;
  text-decoration: none;
}

.logo-text .text-primary {
  color: #00bcd4 !important;
}

/* Header */
.navbar {
  border-bottom: 1px solid #e9ecef;
}

.nav-link {
  font-size: 14px;
  color: #6c757d !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #007bff !important;
}

/* Banner promocional */
.promotional-banner {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: white;
}

/* Presentación de la plataforma */
.platform-intro {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-bottom: 1px solid #e2e8f0;
  animation: fadeInUp 0.8s ease-out;
}

.intro-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.5;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-highlight i {
  color: #667eea;
  font-size: 18px;
}

.feature-highlight span {
  font-weight: 600;
  color: #374151;
  font-size: 13px;
}

.feature-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: scale(1.05);
}

.feature-primary i,
.feature-primary span {
  color: white;
}

.intro-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  min-width: 100px;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

/* Responsive para la presentación */
@media (max-width: 768px) {
  .intro-title {
    font-size: 24px;
    text-align: center;
  }
  
  .intro-subtitle {
    font-size: 16px;
    text-align: center;
  }
  
  .intro-stats {
    gap: 16px;
    margin-top: 24px;
  }
  
  .stat-item {
    padding: 16px;
    min-width: 80px;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .platform-intro {
    padding: 24px 0 !important;
  }
}

/* Navegación de servicios */
.services-navigation {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Servicios destacados para móviles */
.featured-service-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  padding: 20px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  border: none;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-service-card.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.featured-main {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%) !important;
  transform: scale(1.05) !important;
  box-shadow: 0 12px 30px rgba(238, 90, 36, 0.4) !important;
  border: 3px solid #ffd700;
  position: relative;
}

.featured-main::before {
  content: '🏆';
  position: absolute;
  top: -10px;
  right: -5px;
  font-size: 24px;
  z-index: 2;
}

.featured-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.featured-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.featured-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.featured-subtitle {
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.featured-popular {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

/* Categorías de servicios móviles */
.category-title {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.category-service-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.category-service-card:hover {
  border-color: #667eea;
  background: #f8f9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.category-service-card.active {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.category-service-card i {
  font-size: 24px;
  margin-bottom: 6px;
  color: #667eea;
}

.category-service-card.active i {
  color: white;
}

.category-service-card span {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.intro-content {
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.intro-stats {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.feature-highlight {
  animation: fadeInUp 0.6s ease-out both;
}

.feature-highlight:nth-child(1) { animation-delay: 0.6s; }
.feature-highlight:nth-child(2) { animation-delay: 0.7s; }
.feature-highlight:nth-child(3) { animation-delay: 0.8s; }

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 5px;
  text-decoration: none;
  color: #6c757d;
  min-width: 120px;
  flex-shrink: 0;
}

.service-item:hover {
  background-color: #e3f2fd;
  color: #1976d2;
  transform: translateY(-2px);
}

.service-item.active {
  background-color: #2196f3;
  color: white;
}

.service-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 20px;
}

.service-item span {
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
}

/* Contenido principal */
.main-content {
  background-color: #1a2b5c;
  min-height: 600px;
  padding: 40px 0;
}

/* Tarjeta del formulario */
.form-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.form-card h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}

/* Formularios de servicios */
.service-form {
  display: none;
  scroll-margin-top: 100px;
}

.service-form.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

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

/* Mejoras móviles */
@media (max-width: 768px) {
  .services-navigation {
    padding: 10px 0;
  }
  
  .services-navigation .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 15px;
  }
  
  .service-item {
    padding: 12px 15px;
    min-width: 100px;
    margin: 0 3px;
  }
  
  .service-item span {
    font-size: 11px;
  }
  
  .service-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .form-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }
  
  .form-card h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .main-content {
    padding: 20px 0;
  }
  
  .promo-section-gradient {
    margin-top: 30px;
    min-height: auto;
  }
  
  .promo-content-container {
    padding: 30px 20px;
  }
  
  .form-card {
    margin-bottom: 30px;
  }
  
  .row.align-items-stretch {
    align-items: flex-start !important;
  }
  
  .promo-main-title {
    font-size: 1.8rem;
  }
  
  .promo-subtitle {
    font-size: 1.1rem;
  }
  
  .feature-card {
    margin-bottom: 20px;
    padding: 20px 15px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .feature-icon i {
    font-size: 24px;
  }
  
  .promo-features .row {
    margin: 0;
  }
  
  .promo-features .col-md-4 {
    padding: 0 10px;
  }
  
  .promo-main-title {
    line-height: 1.3 !important;
  }
  
  .promo-subtitle {
    margin-bottom: 2rem !important;
  }
}

/* Estilos adicionales para pantallas extra pequeñas */
@media (max-width: 576px) {
  .promo-main-title {
    font-size: 1.5rem !important;
  }
  
  .promo-subtitle {
    font-size: 1rem !important;
  }
  
  .feature-card {
    margin-bottom: 15px !important;
    padding: 20px 15px !important;
  }
  
  .feature-card h5 {
    font-size: 1rem !important;
  }
  
  .feature-card p {
    font-size: 0.85rem !important;
  }
  
  .promo-content-container {
    padding: 25px 15px !important;
  }
  
  .promo-cta .btn {
    font-size: 1rem !important;
    padding: 12px 30px !important;
  }
  
  .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .col-lg-5, .col-lg-7 {
    margin-bottom: 20px;
  }
  
  .info-blocks {
    margin-top: 20px;
  }
  
  .trust-badges .trust-badge {
    max-width: 80px;
    margin: 0 10px;
  }
  
  .app-downloads img {
    max-width: 150px;
    margin: 0 5px;
  }
}

/* Estilos para badges de confianza */
.trust-badges {
  padding: 20px 0;
}

.trust-badge {
  max-height: 60px;
  width: auto;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.trust-badge:hover {
  filter: grayscale(0%);
}

.app-downloads {
  padding: 20px 0;
}

.app-downloads img {
  transition: transform 0.3s ease;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.app-downloads img:hover {
  transform: scale(1.05);
}

.promo-banner img {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.promo-banner img:hover {
  transform: translateY(-5px);
}

/* Sección promocional con gradiente elegante */
.promo-section-gradient {
  background: linear-gradient(135deg, #1a2b5c 0%, #2c4fa3 25%, #4a90e2 50%, #6bb6ff 75%, #87ceeb 100%);
  min-height: 100%;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(26, 43, 92, 0.3);
  display: flex;
  flex-direction: column;
}

.promo-content-container {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  position: relative;
}

.promo-content-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.promo-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.promo-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  opacity: 0.95;
}

.feature-card {
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.feature-icon {
  background: rgba(255,255,255,0.2);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(255,255,255,0.3);
}

.feature-icon i {
  font-size: 28px;
  color: white;
}

.feature-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.feature-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  line-height: 1.4;
}

.promo-cta .btn {
  background: linear-gradient(45deg, #ffffff, #f8f9fa);
  color: #1a2b5c;
  border: none;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.promo-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.info-block {
  position: relative;
}

.info-icon {
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-form-content {
  width: 100%;
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: none;
  border-bottom: 2px solid #e9ecef;
  background: transparent;
  font-size: 16px;
  transition: border-color 0.3s ease;
  border-radius: 0;
}

.form-control:focus {
  outline: none;
  border-bottom-color: #2196f3;
  box-shadow: none;
}

.form-control::placeholder {
  color: #999;
  font-size: 16px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

/* Botón principal */
.btn-primary {
  background: #00bcd4;
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #00acc1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

/* Sección promocional */
.promo-section {
  display: flex;
  align-items: center;
  min-height: 600px;
  padding: 40px;
}

.promo-content h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}

.info-blocks {
  margin-top: 40px;
}

.info-block {
  margin-bottom: 25px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-block h6 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.info-block p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin: 0;
}

/* Mockup del teléfono */
.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.phone-container {
  position: relative;
}

.phone-svg {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Estados de validación */
.form-control.is-invalid {
  border-bottom-color: #dc3545;
}

.form-control.is-valid {
  border-bottom-color: #28a745;
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-form.active {
  animation: fadeIn 0.3s ease-in-out;
}

/* Footer */
footer {
  border-top: 1px solid #e9ecef;
}

footer .logo-text {
  font-size: 24px;
}

footer a:hover {
  color: #007bff !important;
}

/* Responsive */
@media (max-width: 991px) {
  .services-navigation .row {
    flex-wrap: wrap;
  }

  .service-item {
    margin-bottom: 10px;
  }

  .form-card {
    padding: 30px 20px;
  }

  .main-content {
    padding: 20px 0;
  }

  .promo-section {
    margin-top: 30px;
    min-height: auto;
    padding: 20px;
  }

  .promo-content h2 {
    font-size: 24px;
  }

  .phone-svg {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .service-item {
    padding: 10px 15px;
  }

  .service-item span {
    font-size: 11px;
  }

  .service-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .form-card {
    padding: 25px 15px;
  }

  .form-card h2 {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .promo-content h2 {
    font-size: 20px;
  }

  .phone-svg {
    max-width: 200px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  /* ARREGLO ESPECÍFICO PARA MÓVILES - IMÁGENES */
  img {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 100% !important;
    height: auto !important;
    position: relative !important;
    z-index: 999 !important;
  }
  
  .trust-badge {
    height: 40px !important;
    max-width: 80px !important;
    margin: 5px !important;
  }
  
  .app-downloads img {
    height: 40px !important;
    max-width: 120px !important;
    margin: 5px !important;
  }
}

/* Mejoras adicionales */
.text-muted {
  color: #6c757d !important;
}

.btn-light {
  background-color: white;
  border: none;
  color: #333;
  font-weight: 500;
}

.btn-light:hover {
  background-color: #f8f9fa;
  color: #333;
}

/* Estilos específicos para payment */
.payment-header .logo-text {
  color: white !important;
}

.payment-summary {
  background: #1a2b5c;
  color: white;
  padding: 30px;
  border-radius: 8px;
}

.card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
}

.card-body {
  padding: 20px;
}

.border-primary {
  border-color: #007bff !important;
}

/* Servicios destacados móvil */
.mobile-featured-services {
  margin-bottom: 24px;
}

.featured-service-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.featured-service-card:hover,
.featured-service-card.active {
  border-color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.featured-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-icon i {
  font-size: 24px;
  color: white;
}

.featured-title {
  font-weight: 700;
  font-size: 16px;
  color: #1f2937;
  margin-bottom: 4px;
}

.featured-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}

.featured-badge {
  font-size: 10px;
  font-weight: 700;
  color: #1f2937;
  background: #e5e7eb;
  padding: 4px 8px;
  border-radius: 12px;
  display: inline-block;
}

.featured-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  border-color: #667eea !important;
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25) !important;
}

.featured-primary .featured-icon {
  background: rgba(255, 255, 255, 0.2) !important;
}

.featured-primary .featured-title,
.featured-primary .featured-subtitle {
  color: white !important;
}

.featured-primary .featured-badge {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #667eea !important;
  font-weight: 800;
}

/* Categorías de servicios móvil */
.mobile-service-categories {
  margin-bottom: 24px;
}

.category-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover,
.category-card.active {
  border-color: #6366f1;
  background: #f8faff;
}

.category-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.category-icon i {
  font-size: 18px;
  color: white;
}

.category-title {
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
  margin-bottom: 12px;
}

.category-subtitle {
  font-size: 11px;
  color: #6b7280;
}

.category-badge {
  font-size: 9px;
  background: #fef3c7;
  color: #f59e0b;
  padding: 2px 6px;
  border-radius: 8px;
  font-weight: 600;
}

/* Mejoras adicionales móvil */
@media (max-width: 768px) {
  .intro-stats {
    flex-direction: row !important;
    gap: 16px;
    justify-content: space-around;
  }
  
  .stat-item {
    margin: 0;
    min-width: 80px;
    padding: 12px 8px;
  }
  
  .stat-number {
    font-size: 20px !important;
  }
  
  .stat-label {
    font-size: 10px !important;
  }
  
  .promotional-banner {
    padding: 8px 0;
  }
  
  .promotional-banner .col-md-8,
  .promotional-banner .col-md-4 {
    text-align: center !important;
  }
  
  .promotional-banner span {
    font-size: 14px;
  }
  
  .platform-intro {
    padding: 20px 0 !important;
  }
  
  .intro-title {
    font-size: 22px !important;
    text-align: center;
    margin-bottom: 16px !important;
  }
  
  .platform-intro {
    padding: 16px 0 !important;
  }
}

/* Forzar visibilidad completa de todas las imágenes */
img {
  display: inline-block !important;
  visibility: visible !important; 
  opacity: 1 !important;
  max-width: 100%;
  height: auto;
}

/* Específico para badges y logos */
.trust-badge {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-height: 60px;
  width: auto;
}

.app-downloads img {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
