/* Estilos personalizados para páginas internas */

/* Header con fondo más oscuro solo para páginas internas (que tienen clase page-single) */
.page-single .site-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Asegurar que el header brand mantenga el layout correcto */
.header-brand {
  display: flex;
  align-items: center;
}

.header-brand h1 {
  margin: 0;
}

.header-brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Color del texto del header - blanco para páginas internas, color original para landing */
.page-single .header-brand a {
  color: #ffffff;
}

/* Logo image con mejor espaciado */
.header-logo-image {
  width: 48px;
  height: 48px;
  margin-right: 12px;
}

/* Texto del logo visible */
.header-logo-text {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.5px;
}

/* Color del texto del logo - blanco para páginas internas */
.page-single .header-logo-text {
  color: #ffffff;
}

/* Estilos para el botón de la landing page */
.hero-cta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-cta .button {
  margin: 0;
}

/* Responsive para botón */
@media (max-width: 768px) {
  .hero-cta {
    align-items: stretch;
  }

  .hero-cta .button {
    width: 100%;
    text-align: center;
  }
} /* Estilos para la página de descarga */
.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.download-button {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  text-decoration: none;
  color: #2c3e50;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.download-button:hover {
  border-color: #3498db;
  box-shadow: 0 4px 20px rgba(52, 152, 219, 0.15);
  transform: translateY(-2px);
  text-decoration: none;
  color: #2c3e50;
}

.download-icon {
  font-size: 48px;
  margin-right: 20px;
  min-width: 60px;
  text-align: center;
}

.download-info {
  flex: 1;
}

.download-title {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 4px;
}

.download-subtitle {
  font-size: 14px;
  color: #7f8c8d;
}

/* Colores específicos por plataforma */
.download-button.windows:hover {
  border-color: #0078d4;
  box-shadow: 0 4px 20px rgba(0, 120, 212, 0.15);
}

.download-button.macos:hover {
  border-color: #007aff;
  box-shadow: 0 4px 20px rgba(0, 122, 255, 0.15);
}

.download-button.linux:hover {
  border-color: #f39c12;
  box-shadow: 0 4px 20px rgba(243, 156, 18, 0.15);
}

.download-button.android:hover {
  border-color: #3ddc84;
  box-shadow: 0 4px 20px rgba(61, 220, 132, 0.15);
}

.download-button.web:hover {
  border-color: #9b59b6;
  box-shadow: 0 4px 20px rgba(155, 89, 182, 0.15);
}

.download-button.playstore:hover {
  border-color: #01875f;
  box-shadow: 0 4px 20px rgba(1, 135, 95, 0.15);
}

/* Platform indicator styling */
.platform-indicator {
  text-align: center;
  margin-top: 10px;
}

.platform-indicator small {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Responsive para página de descarga */
@media (max-width: 768px) {
  .download-button {
    padding: 16px;
  }

  .download-icon {
    font-size: 36px;
    margin-right: 16px;
    min-width: 50px;
  }

  .download-title {
    font-size: 18px;
  }

  .download-subtitle {
    font-size: 13px;
  }
} /* Fondo diferenciado para el contenido de páginas internas */
.content-page {
  background-color: #f8f9fa;
  min-height: calc(100vh - 200px);
  padding: 40px 0;
}

/* Container del contenido con fondo blanco */
.content-page-inner {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

/* Header del contenido */
.content-page-header {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #ffffff;
  padding: 30px 40px;
  margin: 0;
  text-align: center;
}

.content-page-title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

/* Cuerpo del contenido */
.content-page-body {
  padding: 40px;
  line-height: 1.7;
  color: #2c3e50;
  font-size: 18px;
}

.content-page-body h1,
.content-page-body h2,
.content-page-body h3,
.content-page-body h4,
.content-page-body h5,
.content-page-body h6 {
  color: #2c3e50;
  font-weight: 700;
  margin: 32px 0 16px 0;
}

.content-page-body h1 {
  font-size: 32px;
}

.content-page-body h2 {
  color: #2c3e50;
  border-bottom: 2px solid #ecf0f1;
  padding-bottom: 10px;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 28px;
}

.content-page-body h3 {
  color: #34495e;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 24px;
}

.content-page-body p {
  margin: 16px 0;
}

.content-page-body ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-page-body li {
  margin: 8px 0;
}

.content-page-body a {
  color: #3498db;
  text-decoration: none;
}

.content-page-body a:hover {
  text-decoration: underline;
  color: #2980b9;
}

/* Responsive design */
@media (max-width: 768px) {
  .content-page-header {
    padding: 20px 20px;
  }

  .content-page-title {
    font-size: 2rem;
  }

  .content-page-body {
    padding: 20px;
    font-size: 16px;
  }

  .content-page-inner {
    margin: 0 20px;
  }

  .header-logo-text {
    font-size: 20px;
  }
}

/* Language selector styling */
.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.language-selector {
  display: flex !important;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
}

.lang-switch {
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 70px;
  text-align: center;
  background: transparent;
}

.lang-switch:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.lang-switch.active {
  background: rgba(255, 255, 255, 0.9);
  color: #2c3e50;
  font-weight: 600;
}

.lang-switch.active:hover {
  background: rgba(255, 255, 255, 1);
  color: #2c3e50;
  transform: none;
}

/* Special styling for homepage with hero section */
.page-home .site-header {
  position: relative;
  z-index: 100;
}

.page-home .language-selector {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.page-home .lang-switch {
  color: white;
  font-weight: 600;
}

.page-home .lang-switch.active {
  background: rgba(255, 255, 255, 0.95);
  color: #2c3e50;
}

/* Mobile responsive for language selector */
@media (max-width: 768px) {
  .site-header-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .language-selector {
    order: 2;
    justify-content: center;
  }

  .lang-switch {
    font-size: 0.8rem;
    padding: 6px 12px;
    min-width: 65px;
  }
}
