body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, #root {
  height: 100%;
  width: 100%;
}
/* src/components/Layout.css */

.layout {
  display: flex;
  height: 100vh;
  background: #f8fafc;
  position: relative;
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  background: white;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  z-index: 100;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
  transition: width 0.3s ease;
}

.sidebar.open {
  width: 280px;
}

.sidebar:not(.open) {
  width: 80px;
}

/* Sidebar Header */
.sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  min-height: 80px;
}

.sidebar:not(.open) .sidebar-header {
  padding: 20px 10px;
  justify-content: center;
  height: auto;
}

/* Sidebar Header Collapsed - Logo y Menu juntos */
.sidebar-header-collapsed {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.logo-collapsed {
  cursor: pointer;
  transition: transform 0.2s;
}

.logo-collapsed:hover {
  transform: scale(1.05);
}

.sidebar-toggle-collapsed {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.sidebar-toggle-collapsed:hover {
  background: #e2e8f0;
  transform: scale(1.05);
}

/* Logo styles */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.2s;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Gradient text más vibrante */
.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #9333ea 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.sidebar-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
  flex-shrink: 0;
}

.sidebar-toggle:hover {
  background: #e2e8f0;
  transform: scale(1.05);
}

.sidebar-toggle svg {
  width: 20px;
  height: 20px;
  color: #64748b;
}

/* Navigation */
.sidebar-nav {
  flex: 1 1;
  padding: 20px 12px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}

.sidebar:not(.open) .sidebar-nav {
  padding: 20px 8px;
}

.sidebar-nav::-webkit-scrollbar {
  width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-nav::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 2px;
}

/* Navigation Items */
.nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  margin-bottom: 4px;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.sidebar:not(.open) .nav-item {
  padding: 12px;
  justify-content: center;
  border-radius: 12px;
}

.sidebar:not(.open) .nav-item span {
  display: none;
}

.nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(135deg, #667eea, #9333ea);
  transform: translateX(-100%);
  transition: transform 0.2s;
}

.nav-item:hover {
  background: #f8fafc;
  color: #334155;
  transform: translateX(2px);
}

.sidebar:not(.open) .nav-item:hover {
  transform: none;
  background: #f1f5f9;
}

/* Active nav item - igual que Home Page */
.nav-item.active {
  background: linear-gradient(135deg, #667eea, #9333ea);
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.nav-item.active:hover {
  background: linear-gradient(135deg, #5a67d8, #8b5cf6);
  transform: translateX(2px);
}

.nav-item.active svg {
  color: white;
}

.nav-item.active::before {
  transform: translateX(0);
  background: white;
  opacity: 0.2;
}

.sidebar:not(.open) .nav-item.active {
  background: linear-gradient(135deg, #667eea, #9333ea);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.nav-item svg {
  flex-shrink: 0;
}

/* Home button special styling */
.home-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  margin-bottom: 12px;
}

.home-btn:hover {
  background: linear-gradient(135deg, #059669, #047857);
  color: white;
  transform: translateX(2px);
}

.home-btn svg {
  color: white;
}

/* Nav separator */
.nav-separator {
  height: 1px;
  background: #e2e8f0;
  margin: 12px 0;
}

.sidebar:not(.open) .nav-separator {
  margin: 8px 4px;
  display: none;
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 16px;
  border-top: 1px solid #e2e8f0;
  background: white;
  margin-top: auto;
}

.sidebar:not(.open) .sidebar-footer {
  padding: 12px 8px;
}

/* User Info */
.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 12px;
}

.sidebar:not(.open) .user-info {
  padding: 8px;
  justify-content: center;
}

.sidebar:not(.open) .user-details {
  display: none;
}

.user-avatar {
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.user-avatar:hover {
  transform: scale(1.05);
}

/* Profile image styles */
.profile-image-sidebar {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.profile-placeholder-sidebar {
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #9333ea);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.profile-camera-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: #667eea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.user-details {
  min-width: 0;
  flex: 1 1;
}

.user-name {
  display: block;
  font-weight: 600;
  color: #1e293b;
  font-size: 14px;
  margin-bottom: 2px;
}

.user-email {
  display: block;
  font-size: 12px;
  color: #64748b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 6px;
}

.user-plan {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: linear-gradient(135deg, #667eea, #9333ea);
  color: white;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.trial-badge {
  background: #ef4444;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  margin-left: 4px;
}

/* Logout Button */
.logout-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: #fee2e2;
  color: #dc2626;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}

.sidebar:not(.open) .logout-button {
  padding: 10px 8px;
}

.sidebar:not(.open) .logout-button span {
  display: none;
}

.logout-button:hover {
  background: #fecaca;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

/* Main Content */
.main-content {
  flex: 1 1;
  margin-left: 80px;
  transition: margin-left 0.3s ease;
  overflow-y: auto;
  background: #f8fafc;
  min-height: 100vh;
}

.sidebar.open ~ .main-content {
  margin-left: 280px;
}

.content-wrapper {
  padding: 24px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* Loading Container */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 1rem;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e2e8f0;
  border-radius: 50%;
  border-top-color: #667eea;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Mobile Overlay */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

/* Responsive */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  
  .sidebar.open {
    transform: translateX(0);
    width: 280px;
  }
  
  .main-content {
    margin-left: 0 !important;
  }
  
  .sidebar-overlay {
    display: block;
  }
  
  .sidebar-overlay:not(.open) {
    display: none;
  }
}
/* src/styles/Login.css */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url url(/static/media/pattern-28a18a55de90abd4.0289a79505de72f184b6.svg);
}

/* Botón de regreso */
.back-to-home {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.2s;
  z-index: 10;
}

.back-to-home:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-5px);
}

.login-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  display: inline-flex;
  margin-bottom: 1rem;
}

.login-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
}

.login-header p {
  color: #86868b;
}

.error-message {
  background: #fee;
  color: #c00;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #86868b;
}

.input-group input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 1px solid #e5e5e7;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.2s;
}

.input-group input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.login-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 0.875rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.login-button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.login-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.login-footer {
  text-align: center;
  margin-top: 2rem;
  color: #86868b;
  font-size: 0.875rem;
}

.test-credentials {
  margin-top: 1rem;
  padding: 1rem;
  background: #f5f5f7;
  border-radius: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Dashboard.css - Updated with visible sync button */

.dashboard {
  padding: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.dashboard-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}

.dashboard-header p {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
}

.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.plan-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f9fafb;
  border-radius: 8px;
  font-size: 14px;
  color: #374151;
}

.trial-badge {
  background: #fef3c7;
  color: #92400e;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.account-selector {
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}

.account-selector:hover {
  border-color: #667eea;
}

/* Fixed Sync Button Styles - Always Visible */
.refresh-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
  position: relative;
  overflow: hidden;
  min-width: 120px;
  justify-content: center;
}

/* Ensure text is always visible */
.refresh-button * {
  color: white !important;
  fill: white !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.refresh-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #764ba2 0%, #8b5cf6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.refresh-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.refresh-button:hover:before {
  opacity: 1;
}

.refresh-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.refresh-button:disabled {
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.7;
}

.refresh-button:disabled:hover {
  transform: none;
  border-color: transparent;
}

.refresh-button:disabled:before {
  display: none;
}

/* Animation for spinning icon when syncing */
.refresh-button .spinning {
  animation: spin 1s linear infinite;
}

/* Cost Status Banner */
.cost-status-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cost-status-banner button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s;
}

.cost-status-banner button:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Subscription Alert */
.subscription-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
}

.subscription-alert.warning {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.subscription-alert button {
  margin-left: auto;
  padding: 6px 12px;
  background: #92400e;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s;
}

.subscription-alert button:hover {
  background: #78350f;
}

/* Accounts Section */
.accounts-section {
  margin-bottom: 32px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.section-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.add-account-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.add-account-btn:hover {
  background: #5a67d8;
  transform: translateY(-1px);
}

.accounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 16px;
  gap: 16px;
}

.account-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  transition: all 0.3s;
}

.account-card:hover {
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.account-card.primary {
  border-color: #667eea;
  background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
}

.primary-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #667eea;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.account-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 12px 0;
}

.account-info {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.account-id,
.account-region {
  font-size: 12px;
  color: #6b7280;
  padding: 4px 8px;
  background: #f9fafb;
  border-radius: 4px;
}

.account-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}

.account-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.stat-label {
  font-size: 12px;
  color: #6b7280;
}

.account-status {
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}

.sync-status {
  font-size: 12px;
  color: #6b7280;
}

.sync-status.synced {
  color: #10b981;
}

.sync-status.pending {
  color: #f59e0b;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  gap: 20px;
  margin-bottom: 32px;
}

.metric-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: all 0.3s;
}

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1;
}

.metric-label {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

.metric-value {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}

.metric-change {
  font-size: 12px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
}

.metric-change.positive {
  color: #10b981;
}

.metric-change.negative {
  color: #ef4444;
}

/* Charts Grid */
.charts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  grid-gap: 24px;
  gap: 24px;
  margin-bottom: 32px;
}

.chart-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
}

.chart-header {
  margin-bottom: 20px;
}

.chart-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 4px 0;
}

.chart-subtitle {
  font-size: 12px;
  color: #6b7280;
}

.empty-chart {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

/* Resources Summary */
.resources-summary {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.summary-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.view-all-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: transparent;
  color: #667eea;
  border: 1px solid #667eea;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.view-all-btn:hover {
  background: #667eea;
  color: white;
}

.resources-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
  transition: background 0.2s;
}

.resource-item:hover {
  background: #f3f4f6;
}

.resource-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
}

.resource-info {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.resource-name {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.resource-type {
  font-size: 12px;
  color: #6b7280;
}

.resource-status {
  display: flex;
  align-items: center;
  gap: 12px;
}
.resources-page { padding: 1rem; }
.resources-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:1rem; }
.refresh-button { display:flex; gap:.5rem; align-items:center; border:1px solid #eee; padding:.45rem .7rem; border-radius:10px; background:#fff; }
.resources-stats { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); grid-gap:12px; gap:12px; margin-bottom:1rem; }
.stat-card { display:flex; gap:.75rem; align-items:center; padding:12px; border:1px solid #eee; border-radius:12px; background:#fff; }
.stat-value { font-weight:700; font-size:1.25rem; }
.stat-label { color:#6b7280; font-size:.9rem; }

.resources-controls { display:flex; flex-wrap:wrap; gap:.75rem; align-items:center; justify-content:space-between; margin-bottom:1rem; }
.search-bar { display:flex; gap:.5rem; align-items:center; border:1px solid #eee; padding:.5rem .75rem; border-radius:10px; }
.search-bar input { border:none; outline:none; }

.filter-chips { display:flex; gap:.5rem; flex-wrap:wrap; }
.filter-chip { display:inline-flex; gap:.5rem; align-items:center; border:1px solid #eee; padding:.35rem .6rem; border-radius:9999px; background:#fff; }
.filter-chip.active { background:#f3f4ff; border-color:#c7d2fe; }

.resources-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); grid-gap:14px; gap:14px; }
.resource-card { border:1px solid #eee; border-radius:14px; padding:12px; background:#fff; }
.resource-header { display:flex; align-items:center; justify-content:space-between; }
.resource-title { display:flex; gap:.75rem; align-items:center; }
.resource-title h3 { margin:0; font-size:1rem; }
.resource-title p { margin:0; color:#6b7280; font-size:.85rem; }

.resource-meta { display:flex; gap:.5rem; flex-wrap:wrap; margin-top:.5rem; align-items:center; }
.resource-type, .resource-region, .resource-cost { font-size:.85rem; color:#374151; }
.status-badge { padding:.2rem .5rem; border-radius:9999px; font-size:.8rem; border:1px solid #eee; text-transform:capitalize; }
.status-badge.running, .status-badge.available { background:#ecfdf5; border-color:#a7f3d0; }
.status-badge.stopped { background:#f3f4f6; }
.expand-button { border:none; background:transparent; cursor:pointer; }

.resource-details { overflow:hidden; margin-top:.75rem; }
.detail-section { margin-top:.5rem; }
.tags { display:flex; gap:.4rem; flex-wrap:wrap; }
.tag { background:#f3f4f6; border-radius:9999px; padding:.25rem .5rem; }
.details-grid { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); grid-gap:.5rem; gap:.5rem; }
.detail-item { display:flex; justify-content:space-between; gap:.5rem; }
.detail-key { color:#6b7280; }
.detail-value { font-weight:500; }

.resource-actions { display:flex; gap:.5rem; flex-wrap:wrap; margin-top:.75rem; }
.action-button { display:inline-flex; gap:.4rem; align-items:center; border:1px solid #eee; padding:.35rem .6rem; border-radius:10px; background:#fff; }

.loading-container { display:flex; flex-direction:column; gap:.75rem; align-items:center; justify-content:center; min-height:240px; }
.spinner-large { width:36px; height:36px; border:3px solid #eee; border-top-color:#6366f1; border-radius:9999px; animation:spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
/* src/styles/Usage.css */

.usage-page {
  padding: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.usage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.usage-header h1 {
  font-size: 28px;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.usage-header p {
  color: #718096;
  margin-top: 4px;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.resource-selector,
.period-selector {
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  color: #4a5568;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.resource-selector:hover,
.period-selector:hover {
  border-color: #667eea;
}

.refresh-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.refresh-button:hover:not(:disabled) {
  background: #5a67d8;
  transform: translateY(-1px);
}

.refresh-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ESTILOS MEJORADOS PARA LOS TABS DE MÉTRICAS */
.metric-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px;
  background: #f7fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.metric-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 8px;
  color: #4a5568;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.metric-tab:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(102, 126, 234, 0.1));
  opacity: 0;
  transition: opacity 0.3s;
}

.metric-tab:hover:not(.active) {
  background: white;
  border-color: #e2e8f0;
  color: #2d3748;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.metric-tab:hover:not(.active):before {
  opacity: 1;
}

.metric-tab.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  transform: translateY(-2px);
}

.metric-tab.active svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.metric-tab svg {
  transition: all 0.3s;
}

.metric-tab:hover:not(.active) svg {
  transform: scale(1.1);
}

.metric-tab span {
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Colores específicos para cada métrica */
.metric-tab:nth-child(1).active {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.metric-tab:nth-child(2).active {
  background: linear-gradient(135deg, #10b981, #059669);
}

.metric-tab:nth-child(3).active {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.metric-tab:nth-child(4).active {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.metric-tab:nth-child(5).active {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Chart Container */
.chart-container {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.chart-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.chart-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #718096;
  font-size: 14px;
}

/* Resources Summary */
.resources-summary {
  margin-top: 32px;
}

.resources-summary h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 16px;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 16px;
  gap: 16px;
}

.resource-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.resource-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea15, #764ba215);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
}

.resource-info {
  flex: 1 1;
}

.resource-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 4px 0;
}

.resource-info p {
  font-size: 12px;
  color: #718096;
  margin: 0 0 8px 0;
}

.status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status.running,
.status.available {
  background: #c6f6d5;
  color: #22543d;
}

.status.stopped {
  background: #fed7d7;
  color: #742a2a;
}

.status.pending {
  background: #feebc8;
  color: #744210;
}

.resource-metric {
  text-align: right;
}

.metric-label {
  display: block;
  font-size: 11px;
  color: #a0aec0;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.metric-value {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
}

.data-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.data-toggle:hover {
  border-color: #667eea;
}

.data-toggle input[type="checkbox"] {
  margin: 0;
  cursor: pointer;
}

.data-toggle span {
  font-size: 14px;
  color: #4a5568;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
  border: 2px dashed #e2e8f0;
}

.empty-state h3 {
  font-size: 20px;
  color: #2d3748;
  margin: 16px 0 8px;
}

.empty-state p {
  color: #718096;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Info Message */
.info-message {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #edf2f7;
  border-radius: 8px;
  margin-top: 24px;
}

.info-message svg {
  flex-shrink: 0;
  color: #4299e1;
}

.info-message div {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.5;
}

/* Loading */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  gap: 16px;
}

.spinning {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .metric-tabs {
    overflow-x: auto;
    gap: 4px;
    padding: 6px;
  }
  
  .metric-tab {
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
  }
  
  .metric-tab span {
    display: none;
  }
  
  .header-actions {
    flex-wrap: wrap;
  }
  
  .resource-cards {
    grid-template-columns: 1fr;
  }
}
.alerts-page {
  padding: 2rem;
}

.alerts-header {
  margin-bottom: 2rem;
}

.alerts-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.alerts-header p {
  color: #86868b;
}

.alerts-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid #e5e5e7;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-button:hover {
  background: #f5f5f7;
}

.filter-button.active {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.filter-button.critical.active {
  background: #ef4444;
  border-color: #ef4444;
}

.filter-button.warning.active {
  background: #f59e0b;
  border-color: #f59e0b;
}

.filter-button.info.active {
  background: #3b82f6;
  border-color: #3b82f6;
}

.alerts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.alert-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-left: 4px solid transparent;
}

.alert-card.critical {
  border-left-color: #ef4444;
}

.alert-card.warning {
  border-left-color: #f59e0b;
}

.alert-card.info {
  border-left-color: #3b82f6;
}

.alert-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f5f5f7;
}

.alert-content {
  flex: 1 1;
}

.alert-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.alert-content p {
  font-size: 0.875rem;
  color: #86868b;
  margin-bottom: 0.5rem;
}

.alert-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #86868b;
}

.alert-resource {
  color: #667eea;
  font-weight: 500;
}

.alert-dismiss {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #86868b;
}

.alert-dismiss:hover {
  color: #ef4444;
}
/* src/styles/Settings.css */

.settings-page {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.settings-header {
  margin-bottom: 2rem;
  color: white;
}

.settings-header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.settings-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.settings-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.settings-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f8fafc;
}

.card-header h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile-image-section {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 12px;
  margin-bottom: 32px;
}

.profile-image-container {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  cursor: pointer;
}

.profile-image-large {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-image-overlay {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  background: #667eea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 3px solid white;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.profile-image-overlay:hover {
  transform: scale(1.1);
  background: #5a67d8;
}

.profile-image-actions {
  flex: 1 1;
}

.btn-upload,
.btn-remove {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 12px;
  font-size: 14px;
}

.btn-upload {
  background: #667eea;
  color: white;
}

.btn-upload:hover {
  background: #5a67d8;
  transform: translateY(-1px);
}

.btn-remove {
  background: #fee2e2;
  color: #dc2626;
}

.btn-remove:hover {
  background: #fecaca;
}

.image-hint {
  margin-top: 8px;
  font-size: 13px;
  color: #64748b;
}

/* Form Styles */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:disabled {
  background: #f9fafb;
  color: #6b7280;
  cursor: not-allowed;
}

.form-help,
.form-group small {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

/* Checkbox Styles */
.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 500 !important;
  margin: 0;
}

.checkbox-label input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  cursor: pointer;
  accent-color: #667eea;
}

/* Subscription Card */
.subscription-card {
  background: linear-gradient(135deg, #fef3c7 0%, #f59e0b 100%);
  color: #92400e;
}

.subscription-card .card-header h2 {
  color: #92400e;
}

.subscription-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #92400e;
  width: -webkit-fit-content;
  width: fit-content;
}

.trial-badge {
  background: #ef4444;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}

.trial-warning {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  color: #dc2626;
  font-weight: 500;
}

.upgrade-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: #92400e;
  border: 2px solid #92400e;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: -webkit-fit-content;
  width: fit-content;
}

.upgrade-btn:hover {
  background: #92400e;
  color: white;
  transform: translateY(-2px);
}

/* AWS Accounts */
.add-account-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.add-account-btn:hover {
  background: #5a67d8;
  transform: translateY(-2px);
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: #6b7280;
}

.empty-state h3 {
  margin: 1rem 0 0.5rem;
  color: #374151;
}

.add-first-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1.5rem;
}

.add-first-account-btn:hover {
  background: #5a67d8;
  transform: translateY(-2px);
}

.accounts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.account-item.primary {
  border-color: #10b981;
  background: #ecfdf5;
}

.account-item:hover {
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.account-info h4 {
  margin: 0 0 0.5rem;
  color: #1e293b;
  font-weight: 600;
}

.account-info p {
  margin: 0.25rem 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.primary-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #10b981;
  color: white;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.account-stats {
  display: flex;
  gap: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
}

.stat-label {
  font-size: 0.8rem;
  color: #6b7280;
}

.account-actions {
  display: flex;
  gap: 0.5rem;
}

.set-primary-btn,
.remove-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.set-primary-btn {
  background: #f3f4f6;
  color: #374151;
}

.set-primary-btn:hover {
  background: #10b981;
  color: white;
}

.remove-btn {
  background: #fef2f2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.remove-btn:hover {
  background: #dc2626;
  color: white;
}

/* Modal Styles */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.add-account-modal {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f8fafc;
}

.modal-header h3 {
  margin: 0;
  color: #1e293b;
  font-size: 1.5rem;
}

.modal-header button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-header button:hover {
  background: #f3f4f6;
  color: #1e293b;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.security-notice {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #eff6ff;
  border: 2px solid #3b82f6;
  border-radius: 8px;
  color: #1e40af;
  font-size: 0.9rem;
}

.security-notice strong {
  display: block;
  margin-bottom: 0.5rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.modal-actions button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-actions button[type="button"] {
  background: #f3f4f6;
  color: #374151;
}

.modal-actions button[type="submit"] {
  background: #667eea;
  color: white;
}

.modal-actions button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.modal-actions button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Save Section */
.save-section {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.save-settings-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.save-settings-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.save-settings-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Animations */
.spinning {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .settings-page {
    padding: 1rem;
  }
  
  .settings-header h1 {
    font-size: 2rem;
  }
  
  .settings-card {
    padding: 1.5rem;
  }
  
  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .account-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .account-stats {
    width: 100%;
    justify-content: space-around;
  }
  
  .modal-actions {
    flex-direction: column;
  }
}
/* src/styles/Services.css */
.services-page {
  min-height: 100vh;
  background: #f5f5f7;
}

/* Hero Section */
.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/static/media/pattern-7538a7ae69f6110a.25ab132849645a00a003.svg);
  opacity: 0.1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.hero-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
  display: inline-flex;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.services-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #86868b;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card.expanded {
  border-color: #667eea;
  grid-column: span 2;
}

@media (max-width: 768px) {
  .service-card.expanded {
    grid-column: span 1;
  }
}

.service-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-title h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.25rem;
}

.service-title p {
  font-size: 0.875rem;
  color: #86868b;
}

.service-description {
  color: #515154;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Service Details */
.service-details {
  padding-top: 1.5rem;
  border-top: 1px solid #e5e5e7;
  margin-top: 1.5rem;
}

.detail-section {
  margin-bottom: 1.75rem;
}

.detail-section:last-child {
  margin-bottom: 0;
}

.detail-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #86868b;
  margin-bottom: 1rem;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #515154;
  font-size: 0.925rem;
  line-height: 1.5;
}

.features-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  padding: 0.375rem 0.875rem;
  background: #f5f5f7;
  border-radius: 20px;
  font-size: 0.875rem;
  color: #515154;
  font-weight: 500;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #515154;
  font-size: 0.925rem;
}

.benefit-item svg {
  flex-shrink: 0;
}

.service-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font-size: 0.925rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: gap 0.2s ease;
}

.service-action:hover {
  gap: 0.75rem;
}

/* CTA Section */
.cta-section {
  background: white;
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 1rem;
}

.cta-section > p {
  font-size: 1.125rem;
  color: #86868b;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

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

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.cta-secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.cta-secondary:hover {
  background: #f5f5f7;
}

.contact-info {
  color: #515154;
  line-height: 1.8;
}

.contact-info p {
  margin-bottom: 0.25rem;
}

.contact-info strong {
  color: #1d1d1f;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* src/styles/Chatbot.css - FIXED */

/* Chatbot Button - Flotante */
.chatbot-button {
  position: fixed !important;
  z-index: 9999 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 12px 16px !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: white !important;
  border: none !important;
  transition: all 0.3s ease !important;
}

/* Posicionamiento del botón */
.chatbot-button.bottom-right {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  left: auto !important;
  top: auto !important;
}

.chatbot-button.bottom-left {
  position: fixed !important;
  left: 24px !important;
  bottom: 24px !important;
  right: auto !important;
  top: auto !important;
}

.chatbot-button:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

.chat-notification {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.chat-notification span {
  font-weight: 600 !important;
  font-size: 14px !important;
}

.chat-notification small {
  font-size: 12px !important;
  opacity: 0.9 !important;
}

/* Chatbot Window - Flotante */
.chatbot-window {
  position: fixed !important;
  width: 380px !important;
  max-width: 90vw !important;
  height: 600px !important;
  max-height: 80vh !important;
  background: white !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
  z-index: 10000 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  margin: 0 !important;
}

/* Posicionamiento de la ventana */
.chatbot-window.bottom-right {
  position: fixed !important;
  right: 24px !important;
  bottom: 100px !important;
  left: auto !important;
  top: auto !important;
}

.chatbot-window.bottom-left {
  position: fixed !important;
  left: 24px !important;
  bottom: 100px !important;
  right: auto !important;
  top: auto !important;
}

/* NO usar modo dock/sidebar */
.chatbot-window.dock {
  display: none !important;
}

/* Header del chat */
.chatbot-header {
  padding: 16px !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  border-radius: 16px 16px 0 0 !important;
}

.chatbot-avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.chatbot-info {
  flex: 1 1 !important;
}

.chatbot-info h4 {
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.status {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 13px !important;
  opacity: 0.9 !important;
}

.status-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #10b981 !important;
  animation: pulse 2s infinite !important;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.chatbot-close {
  background: none !important;
  border: none !important;
  color: white !important;
  cursor: pointer !important;
  padding: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: opacity 0.2s !important;
}

.chatbot-close:hover {
  opacity: 0.8 !important;
}

/* Messages Area */
.chatbot-messages {
  flex: 1 1 !important;
  overflow-y: auto !important;
  padding: 20px !important;
  background: #f8f9fa !important;
}

.message {
  display: flex !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
  animation: messageSlide 0.3s ease !important;
}

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

.message.user {
  flex-direction: row-reverse !important;
}

.message-avatar {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #e5e7eb !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.message.user .message-avatar {
  background: #667eea !important;
  color: white !important;
}

.message.bot .message-avatar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
}

.message-content {
  max-width: 70% !important;
}

.message-text {
  background: white !important;
  padding: 12px 16px !important;
  border-radius: 12px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.message.user .message-text {
  background: #667eea !important;
  color: white !important;
}

.message-time {
  font-size: 11px !important;
  color: #9ca3af !important;
  margin-top: 4px !important;
  text-align: right !important;
}

.message.user .message-time {
  text-align: left !important;
}

/* Message Options */
.message-options {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 12px !important;
}

.option-button {
  padding: 8px 16px !important;
  background: white !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 20px !important;
  font-size: 13px !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  color: #4b5563 !important;
}

.option-button:hover {
  background: #667eea !important;
  color: white !important;
  border-color: #667eea !important;
  transform: translateY(-1px) !important;
}

/* Typing Indicator */
.typing-indicator {
  display: flex !important;
  gap: 4px !important;
  padding: 12px 16px !important;
}

.typing-indicator span {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #9ca3af !important;
  animation: typing 1.4s infinite !important;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s !important;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s !important;
}

@keyframes typing {
  0%, 60%, 100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-10px);
  }
}

/* Input Area */
.chatbot-input {
  padding: 16px !important;
  background: white !important;
  border-top: 1px solid #e5e7eb !important;
  border-radius: 0 0 16px 16px !important;
}

.input-container {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
}

.input-container input {
  flex: 1 1 !important;
  padding: 10px 16px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 24px !important;
  font-size: 14px !important;
  outline: none !important;
  transition: border-color 0.2s !important;
}

.input-container input:focus {
  border-color: #667eea !important;
}

.send-button {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: #667eea !important;
  border: none !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}

.send-button:hover:not(:disabled) {
  background: #5a67d8 !important;
  transform: scale(1.1) !important;
}

.send-button:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* Footer */
.chatbot-footer {
  margin-top: 8px !important;
  text-align: center !important;
}

.chatbot-footer small {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  color: #9ca3af !important;
  font-size: 11px !important;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .chatbot-window {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    border-radius: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    top: 0 !important;
  }
  
  .chatbot-header {
    border-radius: 0 !important;
  }
  
  .chatbot-input {
    border-radius: 0 !important;
  }
}
/* src/styles/LandingPage.css */
.landing-page {
  width: 100%;
  overflow-x: hidden;
}

/* Navigation Enhanced */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;             /* <- evita 100vw implícito */
  box-sizing: border-box;  /* <- incluye padding/border en el 100% */
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(229, 229, 231, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.625rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.nav-brand img {
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  flex: 1 1;
  justify-content: center;
  margin: 0 2rem;
}

.nav-links a {
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #667eea;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Navigation Dropdowns - IMPROVED */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
  color: #667eea;
}

.nav-dropdown-trigger:hover::after,
.nav-dropdown:hover .nav-dropdown-trigger::after {
  width: 100%;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(229, 229, 231, 0.5);
  padding: 0.5rem;
  z-index: 10000;
  animation: dropdownFadeIn 0.2s ease;
  /* CRITICAL: Ensure dropdown stays open */
  pointer-events: auto;
  /* Add some padding to create "safe zone" */
  margin-top: -5px;
  padding-top: 10px;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border-top: 1px solid rgba(229, 229, 231, 0.5);
  border-left: 1px solid rgba(229, 229, 231, 0.5);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #4a5568;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 0.925rem;
  white-space: nowrap;
  margin-bottom: 2px;
}

.nav-dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
  color: #667eea;
  transform: translateX(4px);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  padding-right: 1rem;
}

.login-btn {
  padding: 0.5rem 1.5rem;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.login-btn:hover {
  background: #5a67d8;
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #4a5568;
}

/* User Menu - Redesigned for Better Position and Visibility */
.user-menu {
  position: relative;
}

.user-menu-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
  font-size: 14px;
  white-space: nowrap;
}

.user-menu-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
}

.user-menu-button svg {
  transition: all 0.3s ease;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 280px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 
              0 0 0 1px rgba(102, 126, 234, 0.1);
  z-index: 10000;
  animation: dropdownFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dropdown Triangle/Arrow */
.user-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 16px;
  height: 16px;
  background: white;
  transform: rotate(45deg);
  border-top: 1px solid rgba(102, 126, 234, 0.1);
  border-left: 1px solid rgba(102, 126, 234, 0.1);
}

.dropdown-header {
  padding: 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.user-info strong {
  font-size: 16px;
  color: #1a202c;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.user-info small {
  font-size: 13px;
  color: #718096;
  font-weight: 400;
}

.dropdown-menu {
  padding: 8px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #4a5568;
  text-align: left;
  transition: all 0.2s ease;
  position: relative;
  font-weight: 500;
  margin-bottom: 4px;
}

.dropdown-item:hover {
  background: rgba(102, 126, 234, 0.08);
  color: #667eea;
}

.dropdown-item svg {
  transition: all 0.2s ease;
  width: 18px;
  height: 18px;
  color: #718096;
}

.dropdown-item:hover svg {
  color: #667eea;
}

.dropdown-item span {
  font-size: 14px;
}

.dropdown-item.logout {
  color: #e53e3e;
  margin-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 16px;
}

.dropdown-item.logout svg {
  color: #e53e3e;
}

.dropdown-item.logout:hover {
  background: rgba(229, 62, 62, 0.08);
  color: #c53030;
}

.dropdown-item.logout:hover svg {
  color: #c53030;
}

/* Remove divider as we're using border-top on logout */
.dropdown-divider {
  display: none;
}

/* Hero Section */
.hero-section {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/static/media/pattern-7538a7ae69f6110a.25ab132849645a00a003.svg);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: white;
  color: #667eea;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-weight: 600;
  color: white;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

/* Dashboard Preview */
.hero-image {
  position: relative;
}

.dashboard-preview {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.preview-header {
  background: #f5f5f7;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e5e7;
}

.preview-dots {
  display: flex;
  gap: 0.5rem;
}

.preview-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
}

.preview-dots span:first-child {
  background: #ff5f56;
}

.preview-dots span:nth-child(2) {
  background: #ffbd2e;
}

.preview-dots span:last-child {
  background: #27c93f;
}

.preview-content {
  padding: 2rem;
  background: #fafafa;
  min-height: 300px;
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric-card-preview {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
}

.metric-label {
  font-size: 0.75rem;
  color: #86868b;
  margin-top: 0.25rem;
}

.chart-preview {
  background: white;
  border-radius: 8px;
  height: 150px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(to right, #667eea 0%, #764ba2 100%);
  opacity: 0.1;
}

/* Features Section */
.features-section {
  padding: 5rem 2rem;
  background: #f5f5f7;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #1d1d1f;
}

.section-subtitle {
  text-align: center;
  color: #86868b;
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  color: white;
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1d1d1f;
}

.feature-card p {
  color: #86868b;
  line-height: 1.6;
}

/* Success Section Enhanced */
.success-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.success-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e5e7, transparent);
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-top: 3rem;
}

.success-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e5e5e7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.success-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.success-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.company-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-card h3 {
  font-size: 1.5rem;
  color: #1d1d1f;
  margin: 0;
  font-weight: 700;
}

.achievement {
  font-size: 1.125rem;
  color: #667eea;
  margin-bottom: 1rem;
  font-weight: 600;
}

.metric-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.success-card p {
  color: #86868b;
  line-height: 1.6;
  margin: 0;
}

/* Services Section */
.services-section {
  padding: 5rem 2rem;
  background: #f5f5f7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, transparent 100%);
  background: linear-gradient(90deg, var(--service-color, #667eea) 0%, transparent 100%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1d1d1f;
}

.service-description {
  color: #667eea;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-features svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Transformation Section */
.transformation-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-top: 3rem;
}

.transformation-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.transformation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #667eea;
  background: var(--card-color, #667eea);
}

.transformation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.transform-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.transformation-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  color: #1d1d1f;
  font-weight: 700;
}

.transform-description {
  color: #86868b;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.price-tag .price {
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
}

.price-tag .duration {
  color: #86868b;
  font-size: 0.95rem;
  font-weight: 500;
}

.transform-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.transform-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.4;
}

.transform-features svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.transform-btn {
  width: 100%;
  padding: 0.875rem;
  background: white;
  border: 2px solid #667eea;
  border-radius: 8px;
  color: #667eea;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.transform-btn:hover {
  background: #667eea;
  color: white;
  transform: translateY(-1px);
}

/* Assessment Section - Using Same Classes as Transformation/Security */
.assessment-section {
  padding: 5rem 2rem;
  background: white;
}

/* Security & Compliance Section */
.security-compliance-section {
  padding: 5rem 2rem;
  background: white;
}

/* Combined Tech & CloudX Section - ACTUALIZADO */
.tech-cloudx-section {
  padding: 0;
  background: white;
  position: relative;
  overflow: hidden;
}

/* Technologies Section - Fondo blanco como las demás secciones */
.tech-stack-content {
  padding: 5rem 2rem;
  background: white;
  position: relative;
  z-index: 1;
}

/* Títulos consistentes con tu diseño */
.section-title-tech {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #1d1d1f;
}

.section-subtitle-tech {
  text-align: center;
  color: #86868b;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid de tecnologías - Mismo estilo que transformation-cards */
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-stack-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e5e7;
}

/* Barra de color superior como tus service-cards */
.tech-stack-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #667eea;
  background: var(--tech-color, #667eea);
}

.tech-stack-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

/* Header de categoría */
.tech-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tech-category-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  color: var(--tech-color, #667eea);
}

.tech-category-info {
  flex: 1 1;
}

.tech-category-label {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 0.25rem;
}

.tech-category-count {
  font-size: 0.875rem;
  color: #86868b;
}

/* Lista de tecnologías - mismo estilo que tus badges existentes */
.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-chip {
  padding: 0.5rem 1rem;
  background: #f5f5f7;
  border: 1px solid #e5e5e7;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a5568;
  transition: all 0.2s ease;
  cursor: default;
}

.tech-chip:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

/* Stats Bar - Usando el mismo estilo gradient que tu hero section */
.tech-stats-bar {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.tech-stat {
  text-align: center;
  color: white;
}

.tech-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.tech-stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 500;
}

/* CloudX Content Section - Manteniendo el gradiente purple */
.cloudx-content {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #667eea 100%);
  position: relative;
  overflow: hidden;
}

.cloudx-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/static/media/pattern-1095ce3e9bd742a9.c875e78bb5a0bffcff43.svg);
}

/* CloudX Header in Combined Section */
.cloudx-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

/* Mobile App Content in Combined Section */
.mobile-app-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  color: white;
}

.app-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.app-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.app-logo h2 {
  font-size: 2.5rem;
  margin: 0;
  color: white;
}

.app-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95);
}

.app-description {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.app-features-grid {
  display: grid;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.app-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.app-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-feature h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: white;
}

.app-feature p {
  opacity: 0.9;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.app-platforms {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  color: white;
}

.platform-badge {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-weight: 600;
  color: white;
}

/* Phone Mockup */
.phone-frame {
  width: 300px;
  height: 600px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-header {
  background: #667eea;
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.app-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  gap: 1rem;
  padding: 1rem;
}

.metric-mini {
  background: #f5f5f7;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  color: #1d1d1f;
}

.metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
}

.metric-text {
  display: block;
  font-size: 0.75rem;
  color: #86868b;
  margin-top: 0.25rem;
}

.cost-breakdown {
  flex: 1 1;
  padding: 0 1rem;
  color: #1d1d1f;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  border-bottom: 1px solid #e5e5e7;
  font-size: 0.9rem;
}

.cost-item span:last-child {
  font-weight: 600;
  color: #667eea;
}

.app-chart {
  flex: 1 1;
  background: linear-gradient(to bottom, rgba(102, 126, 234, 0.1), rgba(102, 126, 234, 0.05));
  margin: 0 1rem;
  border-radius: 12px;
}

.app-actions {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.app-action-btn {
  padding: 0.75rem;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
}

.app-action-btn.ai-btn {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

/* CloudX Pricing Tiers */
.cloudx-pricing {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cloudx-pricing h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: white;
}

.cloudx-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cloudx-tier {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.cloudx-tier:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.cloudx-tier.premium {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cloudx-tier h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.tier-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.cloudx-tier ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.cloudx-tier li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: white;
}

.cloudx-tier svg {
  color: #10b981;
  flex-shrink: 0;
}

.tier-btn {
  width: 100%;
  padding: 0.875rem;
  background: white;
  color: #667eea;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.tier-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 2rem;
  background: #f5f5f7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
  border: 2px solid #667eea;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #667eea;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* New Plan Badge */
.new-plan {
  position: relative;
}

.new-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1d1d1f;
}

.plan-price {
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
}

.period {
  color: #86868b;
  font-size: 1rem;
}

.plan-description {
  color: #86868b;
  margin-bottom: 1.5rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #4a5568;
}

.plan-features svg {
  color: #10b981;
  flex-shrink: 0;
}

.plan-button {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e5e5e7;
  background: white;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.plan-button.primary {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.plan-button:hover {
  transform: translateY(-2px);
}

/* Pricing Add-ons */
.plan-addons {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e7;
}

.addon-text {
  color: #667eea;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

/* Discount Banner */
.discount-banner {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.125rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.discount-banner svg {
  flex-shrink: 0;
}

.discount-banner strong {
  font-weight: 700;
}

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* CTA Features */
.cta-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  font-size: 1rem;
}

.cta-features svg {
  color: #10b981;
}

.cta-button {
  padding: 1rem 2rem;
  background: white;
  color: #667eea;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Section ID Fix */
#contact {
  scroll-margin-top: 80px;
}

/* Footer Enhanced */
.landing-footer {
  background: linear-gradient(180deg, #1d1d1f 0%, #0a0a0c 100%);
  color: white;
  padding: 4rem 2rem 1.5rem;
  position: relative;
  margin-top: 0;
}

.landing-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 2rem;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #667eea;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-column p {
  color: #86868b;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #86868b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #667eea;
}

/* Certifications in Footer */
.certifications {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.certifications svg {
  color: #667eea;
}

.certifications span {
  color: #667eea;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #86868b;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.mobile-open {
    display: flex;
  }

  /* Mobile Navigation Dropdown Fix */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.5rem 0;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    background: rgba(102, 126, 234, 0.05);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu a {
    padding-left: 2rem;
    font-size: 0.875rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .mobile-app-content {
    grid-template-columns: 1fr;
  }

  .transformation-grid,
  .success-grid,
  .assessment-grid,
  .tech-stack-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-stats-bar {
    flex-direction: column;
    gap: 2rem;
  }
  
  .tech-category-header {
    flex-direction: column;
    text-align: center;
  }
  
  .tech-list {
    justify-content: center;
  }
  
  .tech-badges {
    justify-content: flex-start;
  }
  
  .discount-banner {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .trust-badges {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  .price-tag .price {
    font-size: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===== F I X E S   A D I C I O N A D O S  (no rompen tu diseño) ===== */

/* 1) Asegurar que el texto del CTA sea visible (por si algún estilo lo ocultó) */
.cta-section .cta-content p {
  display: block;
  opacity: 1;
  color: rgba(255, 255, 255, 0.9);
}

/* 2) Evitar scroll horizontal global */
html, body {
  overflow-x: hidden;
}

/* 3) Recortar posibles desbordes por animaciones o sombras */
.hero-section, .tech-cloudx-section, .services-section,
.pricing-section, .transformation-section, .security-compliance-section,
.assessment-section, .success-section, .cta-section {
  overflow: clip; /* puedes cambiar a 'hidden' si prefieres */
}

/* 4) Chatbot flotante para que NO empuje el layout (ajusta clases si son otras) */
.chatbot-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
}

.chatbot-panel {
  position: fixed;
  right: 24px;
  bottom: 96px;          /* aparece sobre la burbuja */
  width: min(420px, 90vw);
  height: min(70vh, 640px);
  z-index: 9999;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.cta-section {
  padding: 4rem 1.25rem;       /* espacio externo */
  background: transparent;     /* sin fondo blanco aquí */
}

.cta-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 28px;
  /* Gradiente lila/violeta */
  background: linear-gradient(135deg, #8b5cf6 0%, #667eea 100%);
  color: white;
  text-align: center;
  box-shadow: 0 30px 60px rgba(102, 126, 234, 0.35);
  position: relative;
  overflow: clip; /* evita desbordes que hagan aparecer scroll */
}

.cta-card h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: .75rem;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1rem;
  opacity: .95;
  margin-bottom: 1.75rem;
}

.cta-highlights {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  grid-gap: 1.25rem;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.75rem;
}

.highlight {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  opacity: .95;
  white-space: nowrap;
}

.tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.18);
  color: #10b981;
  font-weight: 900;
  line-height: 1;
}

.cta-btn {
  margin: 0 auto;
  padding: .9rem 1.5rem;
  background: white;
  color: #4f46e5; /* violeta */
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 10px 25px rgba(255,255,255,.15);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(0,0,0,.25);
}

/* Responsivo CTA */
@media (max-width: 768px) {
  .cta-card { padding: 2.25rem 1.25rem; }
  .cta-highlights {
    grid-auto-flow: row;
    grid-auto-columns: initial;
  }
}

/* ===== Eliminar la barra del costado (scroll horizontal) ===== */
html, body, .landing-page {
  overflow-x: hidden;
}

/* Para evitar que sombras/elementos internos generen ancho extra */
.hero-section, .tech-cloudx-section, .services-section,
.pricing-section, .transformation-section, .security-compliance-section,
.assessment-section, .success-section, .cta-section {
  overflow: clip;  /* si prefieres: overflow: hidden; */
}

/* (Opcional) si ves una línea fina por subpixel: fuerza ancho */
body { width: 100%; }

/* Forzar textos blancos dentro de CTA */
.cta-card h2,
.cta-card p,
.cta-card span,
.cta-card a {
  color: #fff !important;
}

.cta-section {
  padding: 4rem 1rem;
  background: #f5f5f7;              /* fondo exterior como el resto de la página */
}

.cta-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #8b5cf6 0%, #667eea 100%);
  position: relative;
  box-shadow: 0 24px 80px rgba(102,126,234,0.35);
}

/* Forzar texto BLANCO dentro del CTA */
.cta-card h2,
.cta-card p,
.cta-card span,
.cta-card a {
  color: #fff !important;
}

.cta-card h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: .75rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  opacity: .95;
  margin-bottom: 1.75rem;
}

.cta-highlights {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 1.25rem 0 2rem;
}

.highlight {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: #fff !important;
  opacity: .95;
}

.highlight .tick {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  line-height: 26px;
  text-align: center;
  font-weight: 800;
}

/* Botón CTA */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.5rem;
  border-radius: 12px;
  border: none;
  background: #fff;
  color: #4f46e5;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

/* ===== Anti-scroll horizontal (robusto) ===== */
html, body, #root, .landing-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

.hero-section,
.tech-cloudx-section,
.services-section,
.pricing-section,
.transformation-section,
.security-compliance-section,
.assessment-section,
.success-section,
.cta-section {
  overflow: hidden; /* usar hidden para máxima compatibilidad */
}

/* Asegurar que ningún contenedor crezca más que el viewport por padding/transform */
.section-container,
.cta-card {
  box-sizing: border-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

html, body, #root, .landing-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Evita que alguna sección cree overflow por animaciones o sombras */
.hero-section,
.tech-cloudx-section,
.services-section,
.pricing-section,
.transformation-section,
.security-compliance-section,
.assessment-section,
.success-section,
.cta-section {
  overflow: hidden; /* oculta cualquier desplazamiento lateral de motion/transform */
}

/* Asegura que imágenes/SVGs no crezcan más del viewport */
img, svg, video, canvas, iframe {
  max-width: 100%;
}

html, body, #root, .landing-page { max-width: 100%; overflow-x: hidden !important; }
.hero-section, .tech-cloudx-section, .services-section,
.pricing-section, .transformation-section, .security-compliance-section,
.assessment-section, .success-section, .cta-section { overflow: hidden; }
/* src/styles/LandingPage.css */
.landing-page {
  width: 100%;
  overflow-x: hidden;
}

/* Navigation Enhanced */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;             /* <- evita 100vw implícito */
  box-sizing: border-box;  /* <- incluye padding/border en el 100% */
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(229, 229, 231, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.625rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.nav-brand img {
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  flex: 1 1;
  justify-content: center;
  margin: 0 2rem;
}

.nav-links a {
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #667eea;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Navigation Dropdowns - IMPROVED */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
  color: #667eea;
}

.nav-dropdown-trigger:hover::after,
.nav-dropdown:hover .nav-dropdown-trigger::after {
  width: 100%;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(229, 229, 231, 0.5);
  padding: 0.5rem;
  z-index: 10000;
  animation: dropdownFadeIn 0.2s ease;
  /* CRITICAL: Ensure dropdown stays open */
  pointer-events: auto;
  /* Add some padding to create "safe zone" */
  margin-top: -5px;
  padding-top: 10px;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border-top: 1px solid rgba(229, 229, 231, 0.5);
  border-left: 1px solid rgba(229, 229, 231, 0.5);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #4a5568;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 0.925rem;
  white-space: nowrap;
  margin-bottom: 2px;
}

.nav-dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
  color: #667eea;
  transform: translateX(4px);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  padding-right: 1rem;
}

.login-btn {
  padding: 0.5rem 1.5rem;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.login-btn:hover {
  background: #5a67d8;
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #4a5568;
}

/* User Menu - Redesigned for Better Position and Visibility */
.user-menu {
  position: relative;
}

.user-menu-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
  font-size: 14px;
  white-space: nowrap;
}

.user-menu-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
}

.user-menu-button svg {
  transition: all 0.3s ease;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 280px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 
              0 0 0 1px rgba(102, 126, 234, 0.1);
  z-index: 10000;
  animation: dropdownFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dropdown Triangle/Arrow */
.user-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 16px;
  height: 16px;
  background: white;
  transform: rotate(45deg);
  border-top: 1px solid rgba(102, 126, 234, 0.1);
  border-left: 1px solid rgba(102, 126, 234, 0.1);
}

.dropdown-header {
  padding: 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.user-info strong {
  font-size: 16px;
  color: #1a202c;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.user-info small {
  font-size: 13px;
  color: #718096;
  font-weight: 400;
}

.dropdown-menu {
  padding: 8px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #4a5568;
  text-align: left;
  transition: all 0.2s ease;
  position: relative;
  font-weight: 500;
  margin-bottom: 4px;
}

.dropdown-item:hover {
  background: rgba(102, 126, 234, 0.08);
  color: #667eea;
}

.dropdown-item svg {
  transition: all 0.2s ease;
  width: 18px;
  height: 18px;
  color: #718096;
}

.dropdown-item:hover svg {
  color: #667eea;
}

.dropdown-item span {
  font-size: 14px;
}

.dropdown-item.logout {
  color: #e53e3e;
  margin-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 16px;
}

.dropdown-item.logout svg {
  color: #e53e3e;
}

.dropdown-item.logout:hover {
  background: rgba(229, 62, 62, 0.08);
  color: #c53030;
}

.dropdown-item.logout:hover svg {
  color: #c53030;
}

/* Remove divider as we're using border-top on logout */
.dropdown-divider {
  display: none;
}

/* Hero Section */
.hero-section {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/static/media/pattern-7538a7ae69f6110a.25ab132849645a00a003.svg);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: white;
  color: #667eea;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-weight: 600;
  color: white;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

/* Dashboard Preview */
.hero-image {
  position: relative;
}

.dashboard-preview {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.preview-header {
  background: #f5f5f7;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e5e7;
}

.preview-dots {
  display: flex;
  gap: 0.5rem;
}

.preview-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
}

.preview-dots span:first-child {
  background: #ff5f56;
}

.preview-dots span:nth-child(2) {
  background: #ffbd2e;
}

.preview-dots span:last-child {
  background: #27c93f;
}

.preview-content {
  padding: 2rem;
  background: #fafafa;
  min-height: 300px;
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric-card-preview {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
}

.metric-label {
  font-size: 0.75rem;
  color: #86868b;
  margin-top: 0.25rem;
}

.chart-preview {
  background: white;
  border-radius: 8px;
  height: 150px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(to right, #667eea 0%, #764ba2 100%);
  opacity: 0.1;
}

/* Features Section */
.features-section {
  padding: 5rem 2rem;
  background: #f5f5f7;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #1d1d1f;
}

.section-subtitle {
  text-align: center;
  color: #86868b;
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  color: white;
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1d1d1f;
}

.feature-card p {
  color: #86868b;
  line-height: 1.6;
}

/* Success Section Enhanced */
.success-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.success-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e5e7, transparent);
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-top: 3rem;
}

.success-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e5e5e7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.success-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.success-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.company-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-card h3 {
  font-size: 1.5rem;
  color: #1d1d1f;
  margin: 0;
  font-weight: 700;
}

.achievement {
  font-size: 1.125rem;
  color: #667eea;
  margin-bottom: 1rem;
  font-weight: 600;
}

.metric-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.success-card p {
  color: #86868b;
  line-height: 1.6;
  margin: 0;
}

/* Services Section */
.services-section {
  padding: 5rem 2rem;
  background: #f5f5f7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, transparent 100%);
  background: linear-gradient(90deg, var(--service-color, #667eea) 0%, transparent 100%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1d1d1f;
}

.service-description {
  color: #667eea;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-features svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Transformation Section */
.transformation-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-top: 3rem;
}

.transformation-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.transformation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #667eea;
  background: var(--card-color, #667eea);
}

.transformation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.transform-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.transformation-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  color: #1d1d1f;
  font-weight: 700;
}

.transform-description {
  color: #86868b;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.price-tag .price {
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
}

.price-tag .duration {
  color: #86868b;
  font-size: 0.95rem;
  font-weight: 500;
}

.transform-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.transform-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.4;
}

.transform-features svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.transform-btn {
  width: 100%;
  padding: 0.875rem;
  background: white;
  border: 2px solid #667eea;
  border-radius: 8px;
  color: #667eea;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.transform-btn:hover {
  background: #667eea;
  color: white;
  transform: translateY(-1px);
}

/* Assessment Section - Using Same Classes as Transformation/Security */
.assessment-section {
  padding: 5rem 2rem;
  background: white;
}

/* Security & Compliance Section */
.security-compliance-section {
  padding: 5rem 2rem;
  background: white;
}

/* Combined Tech & CloudX Section - ACTUALIZADO */
.tech-cloudx-section {
  padding: 0;
  background: white;
  position: relative;
  overflow: hidden;
}

/* Technologies Section - Fondo blanco como las demás secciones */
.tech-stack-content {
  padding: 5rem 2rem;
  background: white;
  position: relative;
  z-index: 1;
}

/* Títulos consistentes con tu diseño */
.section-title-tech {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #1d1d1f;
}

.section-subtitle-tech {
  text-align: center;
  color: #86868b;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid de tecnologías - Mismo estilo que transformation-cards */
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-stack-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e5e7;
}

/* Barra de color superior como tus service-cards */
.tech-stack-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #667eea;
  background: var(--tech-color, #667eea);
}

.tech-stack-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

/* Header de categoría */
.tech-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tech-category-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  color: var(--tech-color, #667eea);
}

.tech-category-info {
  flex: 1 1;
}

.tech-category-label {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 0.25rem;
}

.tech-category-count {
  font-size: 0.875rem;
  color: #86868b;
}

/* Lista de tecnologías - mismo estilo que tus badges existentes */
.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-chip {
  padding: 0.5rem 1rem;
  background: #f5f5f7;
  border: 1px solid #e5e5e7;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a5568;
  transition: all 0.2s ease;
  cursor: default;
}

.tech-chip:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

/* Stats Bar - Usando el mismo estilo gradient que tu hero section */
.tech-stats-bar {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.tech-stat {
  text-align: center;
  color: white;
}

.tech-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.tech-stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 500;
}

/* CloudX Content Section - Manteniendo el gradiente purple */
.cloudx-content {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #667eea 100%);
  position: relative;
  overflow: hidden;
}

.cloudx-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/static/media/pattern-1095ce3e9bd742a9.c875e78bb5a0bffcff43.svg);
}

/* CloudX Header in Combined Section */
.cloudx-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

/* Mobile App Content in Combined Section */
.mobile-app-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  color: white;
}

.app-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.app-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.app-logo h2 {
  font-size: 2.5rem;
  margin: 0;
  color: white;
}

.app-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95);
}

.app-description {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.app-features-grid {
  display: grid;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.app-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.app-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-feature h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: white;
}

.app-feature p {
  opacity: 0.9;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.app-platforms {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  color: white;
}

.platform-badge {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-weight: 600;
  color: white;
}

/* Phone Mockup */
.phone-frame {
  width: 300px;
  height: 600px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-header {
  background: #667eea;
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.app-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  gap: 1rem;
  padding: 1rem;
}

.metric-mini {
  background: #f5f5f7;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  color: #1d1d1f;
}

.metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
}

.metric-text {
  display: block;
  font-size: 0.75rem;
  color: #86868b;
  margin-top: 0.25rem;
}

.cost-breakdown {
  flex: 1 1;
  padding: 0 1rem;
  color: #1d1d1f;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  border-bottom: 1px solid #e5e5e7;
  font-size: 0.9rem;
}

.cost-item span:last-child {
  font-weight: 600;
  color: #667eea;
}

.app-chart {
  flex: 1 1;
  background: linear-gradient(to bottom, rgba(102, 126, 234, 0.1), rgba(102, 126, 234, 0.05));
  margin: 0 1rem;
  border-radius: 12px;
}

.app-actions {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.app-action-btn {
  padding: 0.75rem;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
}

.app-action-btn.ai-btn {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

/* CloudX Pricing Tiers */
.cloudx-pricing {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cloudx-pricing h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: white;
}

.cloudx-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cloudx-tier {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.cloudx-tier:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.cloudx-tier.premium {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cloudx-tier h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.tier-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.cloudx-tier ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.cloudx-tier li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: white;
}

.cloudx-tier svg {
  color: #10b981;
  flex-shrink: 0;
}

.tier-btn {
  width: 100%;
  padding: 0.875rem;
  background: white;
  color: #667eea;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.tier-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 2rem;
  background: #f5f5f7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
  border: 2px solid #667eea;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #667eea;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* New Plan Badge */
.new-plan {
  position: relative;
}

.new-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1d1d1f;
}

.plan-price {
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
}

.period {
  color: #86868b;
  font-size: 1rem;
}

.plan-description {
  color: #86868b;
  margin-bottom: 1.5rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #4a5568;
}

.plan-features svg {
  color: #10b981;
  flex-shrink: 0;
}

.plan-button {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e5e5e7;
  background: white;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.plan-button.primary {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.plan-button:hover {
  transform: translateY(-2px);
}

/* Pricing Add-ons */
.plan-addons {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e7;
}

.addon-text {
  color: #667eea;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

/* Discount Banner */
.discount-banner {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.125rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.discount-banner svg {
  flex-shrink: 0;
}

.discount-banner strong {
  font-weight: 700;
}

/* CTA Section */
.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* CTA Features */
.cta-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  font-size: 1rem;
}

.cta-features svg {
  color: #10b981;
}

.cta-button {
  padding: 1rem 2rem;
  background: white;
  color: #667eea;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Section ID Fix */
#contact {
  scroll-margin-top: 80px;
}

/* Footer Enhanced */
.landing-footer {
  background: linear-gradient(180deg, #1d1d1f 0%, #0a0a0c 100%);
  color: white;
  padding: 4rem 2rem 1.5rem;
  position: relative;
  margin-top: 0;
}

.landing-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 2rem;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #667eea;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-column p {
  color: #86868b;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #86868b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #667eea;
}

/* Certifications in Footer */
.certifications {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.certifications svg {
  color: #667eea;
}

.certifications span {
  color: #667eea;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #86868b;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.mobile-open {
    display: flex;
  }

  /* Mobile Navigation Dropdown Fix */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.5rem 0;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    background: rgba(102, 126, 234, 0.05);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu a {
    padding-left: 2rem;
    font-size: 0.875rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .mobile-app-content {
    grid-template-columns: 1fr;
  }

  .transformation-grid,
  .success-grid,
  .assessment-grid,
  .tech-stack-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-stats-bar {
    flex-direction: column;
    gap: 2rem;
  }
  
  .tech-category-header {
    flex-direction: column;
    text-align: center;
  }
  
  .tech-list {
    justify-content: center;
  }
  
  .tech-badges {
    justify-content: flex-start;
  }
  
  .discount-banner {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .trust-badges {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  .price-tag .price {
    font-size: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===== F I X E S   A D I C I O N A D O S  (no rompen tu diseño) ===== */

/* 1) Asegurar que el texto del CTA sea visible (por si algún estilo lo ocultó) */
.cta-section .cta-content p {
  display: block;
  opacity: 1;
  color: rgba(255, 255, 255, 0.9);
}

/* 2) Evitar scroll horizontal global */
html, body {
  overflow-x: hidden;
}

/* 3) Recortar posibles desbordes por animaciones o sombras */
.hero-section, .tech-cloudx-section, .services-section,
.pricing-section, .transformation-section, .security-compliance-section,
.assessment-section, .success-section, .cta-section {
  overflow: clip; /* puedes cambiar a 'hidden' si prefieres */
}

/* 4) Chatbot flotante para que NO empuje el layout (ajusta clases si son otras) */
.chatbot-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
}

.chatbot-panel {
  position: fixed;
  right: 24px;
  bottom: 96px;          /* aparece sobre la burbuja */
  width: min(420px, 90vw);
  height: min(70vh, 640px);
  z-index: 9999;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.cta-section {
  padding: 4rem 1.25rem;       /* espacio externo */
  background: transparent;     /* sin fondo blanco aquí */
}

.cta-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 28px;
  /* Gradiente lila/violeta */
  background: linear-gradient(135deg, #8b5cf6 0%, #667eea 100%);
  color: white;
  text-align: center;
  box-shadow: 0 30px 60px rgba(102, 126, 234, 0.35);
  position: relative;
  overflow: clip; /* evita desbordes que hagan aparecer scroll */
}

.cta-card h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: .75rem;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1rem;
  opacity: .95;
  margin-bottom: 1.75rem;
}

.cta-highlights {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  grid-gap: 1.25rem;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.75rem;
}

.highlight {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  opacity: .95;
  white-space: nowrap;
}

.tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.18);
  color: #10b981;
  font-weight: 900;
  line-height: 1;
}

.cta-btn {
  margin: 0 auto;
  padding: .9rem 1.5rem;
  background: white;
  color: #4f46e5; /* violeta */
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 10px 25px rgba(255,255,255,.15);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(0,0,0,.25);
}

/* Responsivo CTA */
@media (max-width: 768px) {
  .cta-card { padding: 2.25rem 1.25rem; }
  .cta-highlights {
    grid-auto-flow: row;
    grid-auto-columns: initial;
  }
}

/* ===== Eliminar la barra del costado (scroll horizontal) ===== */
html, body, .landing-page {
  overflow-x: hidden;
}

/* Para evitar que sombras/elementos internos generen ancho extra */
.hero-section, .tech-cloudx-section, .services-section,
.pricing-section, .transformation-section, .security-compliance-section,
.assessment-section, .success-section, .cta-section {
  overflow: clip;  /* si prefieres: overflow: hidden; */
}

/* (Opcional) si ves una línea fina por subpixel: fuerza ancho */
body { width: 100%; }

/* Forzar textos blancos dentro de CTA */
.cta-card h2,
.cta-card p,
.cta-card span,
.cta-card a {
  color: #fff !important;
}

.cta-section {
  padding: 4rem 1rem;
  background: #f5f5f7;              /* fondo exterior como el resto de la página */
}

.cta-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #8b5cf6 0%, #667eea 100%);
  position: relative;
  box-shadow: 0 24px 80px rgba(102,126,234,0.35);
}

/* Forzar texto BLANCO dentro del CTA */
.cta-card h2,
.cta-card p,
.cta-card span,
.cta-card a {
  color: #fff !important;
}

.cta-card h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: .75rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  opacity: .95;
  margin-bottom: 1.75rem;
}

.cta-highlights {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 1.25rem 0 2rem;
}

.highlight {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: #fff !important;
  opacity: .95;
}

.highlight .tick {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  line-height: 26px;
  text-align: center;
  font-weight: 800;
}

/* Botón CTA */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.5rem;
  border-radius: 12px;
  border: none;
  background: #fff;
  color: #4f46e5;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

/* ===== Anti-scroll horizontal (robusto) ===== */
html, body, #root, .landing-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

.hero-section,
.tech-cloudx-section,
.services-section,
.pricing-section,
.transformation-section,
.security-compliance-section,
.assessment-section,
.success-section,
.cta-section {
  overflow: hidden; /* usar hidden para máxima compatibilidad */
}

/* Asegurar que ningún contenedor crezca más que el viewport por padding/transform */
.section-container,
.cta-card {
  box-sizing: border-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

html, body, #root, .landing-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Evita que alguna sección cree overflow por animaciones o sombras */
.hero-section,
.tech-cloudx-section,
.services-section,
.pricing-section,
.transformation-section,
.security-compliance-section,
.assessment-section,
.success-section,
.cta-section {
  overflow: hidden; /* oculta cualquier desplazamiento lateral de motion/transform */
}

/* Asegura que imágenes/SVGs no crezcan más del viewport */
img, svg, video, canvas, iframe {
  max-width: 100%;
}

html, body, #root, .landing-page { max-width: 100%; overflow-x: hidden !important; }
.hero-section, .tech-cloudx-section, .services-section,
.pricing-section, .transformation-section, .security-compliance-section,
.assessment-section, .success-section, .cta-section { overflow: hidden; }
/* src/styles/AboutUs.css */

/* Import base styles from LandingPage */

.about-us {
  min-height: 100vh;
  background: #f5f5f7; /* Same as LandingPage sections */
}

/* Hero Section - Using LandingPage gradient style */
.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/static/media/pattern-7538a7ae69f6110a.25ab132849645a00a003.svg);
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Our Story Section */
.our-story {
  padding: 80px 20px;
  background: white;
}

.story-content h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 2rem;
  text-align: center;
}

.story-text {
  max-width: 800px;
  margin: 0 auto;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}

/* Our Passion Section */
.our-passion {
  padding: 80px 20px;
  background: #f8fafc;
}

.passion-content {
  text-align: center;
}

.passion-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.passion-icon {
  color: #ef4444;
}

.passion-header h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin: 0;
}

.passion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-top: 3rem;
}

.passion-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.passion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  color: #667eea;
  margin-bottom: 1rem;
}

.passion-card h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.passion-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Mission & Vision */
.mission-vision {
  padding: 80px 20px;
  background: white;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 3rem;
  gap: 3rem;
}

.mission-card,
.vision-card {
  text-align: center;
  padding: 3rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  border: 2px solid #e2e8f0;
}

.mv-icon {
  color: #667eea;
  margin-bottom: 1.5rem;
}

.mission-card h2,
.vision-card h2 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
}

/* Core Values */
.core-values {
  padding: 80px 20px;
  background: #f8fafc;
}

.values-content h2 {
  font-size: 2.5rem;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.value-icon {
  color: #667eea;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Why Choose Us */
.why-choose {
  padding: 80px 20px;
  background: white;
}

.choose-content h2 {
  font-size: 2.5rem;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.choose-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.choose-icon {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.choose-item h3 {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.choose-item p {
  color: #64748b;
  line-height: 1.5;
}

/* Timeline */
.timeline {
  padding: 80px 20px;
  background: #f8fafc;
}

.timeline-content h2 {
  font-size: 2.5rem;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;
}

.timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #e2e8f0;
}

.timeline-item {
  position: relative;
  padding: 2rem;
  width: calc(50% - 30px);
  margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: calc(50% + 30px);
}

.timeline-marker {
  position: absolute;
  top: 2rem;
  width: 40px;
  height: 40px;
  background: #667eea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.timeline-item:nth-child(odd) .timeline-marker {
  right: -50px;
}

.timeline-item:nth-child(even) .timeline-marker {
  left: -50px;
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #64748b;
  line-height: 1.5;
}

/* Team Section */
.team {
  padding: 80px 20px;
  background: white;
}

.team-content h2 {
  font-size: 2.5rem;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.team-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.member-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 1.5rem;
}

.team-card h3 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.role {
  color: #667eea;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.bio {
  color: #64748b;
  line-height: 1.5;
}

/* CTA Section */
.about-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: #667eea;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .timeline-wrapper::before {
    left: 30px;
  }
  
  .timeline-item {
    width: calc(100% - 60px);
    left: 60px !important;
    text-align: left !important;
  }
  
  .timeline-marker {
    left: -45px !important;
  }
  
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* src/styles/Contact.css */

.contact-page {
  min-height: 100vh;
  background: #f8fafc;
}

/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 20px 80px;
  text-align: center;
  color: white;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Contact Info Cards */
.contact-info {
  padding: 60px 20px;
  background: white;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.info-card {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background: white;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #667eea;
}

.info-icon {
  color: #667eea;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.info-card p {
  color: #64748b;
  line-height: 1.5;
  margin: 0.25rem 0;
}

/* Contact Form Section */
.contact-form-section {
  padding: 60px 20px 80px;
  background: #f8fafc;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #64748b;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.5rem;
}

.form-group label svg {
  width: 16px;
  height: 16px;
  color: #64748b;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  line-height: 1.5;
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Status Messages */
.status-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.status-message.success {
  background: #10b981;
  color: white;
}

.status-message.error {
  background: #ef4444;
  color: white;
}

/* Submit Button */
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinning {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* FAQ Section */
.contact-faq {
  padding: 60px 20px 80px;
  background: white;
}

.contact-faq h2 {
  font-size: 2rem;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.faq-item h3 {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: #64748b;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* src/styles/TermsOfService.css */

.terms-page {
  min-height: 100vh;
  background: #f8fafc;
}

/* Hero Section */
.terms-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 20px 80px;
  text-align: center;
  color: white;
}

.hero-icon {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.terms-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Notice Section */
.terms-notice {
  padding: 40px 20px;
  background: white;
}

.notice-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #fef3c7;
  border: 2px solid #fbbf24;
  border-radius: 12px;
}

.notice-icon {
  color: #f59e0b;
  flex-shrink: 0;
}

.notice-content h3 {
  font-size: 1.25rem;
  color: #92400e;
  margin-bottom: 0.5rem;
}

.notice-content p {
  color: #78350f;
  line-height: 1.6;
}

/* Terms Content */
.terms-content {
  padding: 60px 20px 80px;
  background: #f8fafc;
}

.terms-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-gap: 3rem;
  gap: 3rem;
}

/* Table of Contents */
.terms-toc {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  height: -webkit-fit-content;
  height: fit-content;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.terms-toc h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.terms-toc nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toc-link {
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-left: 3px solid transparent;
  padding-left: 1rem;
  transition: all 0.3s ease;
}

.toc-link:hover {
  color: #667eea;
  border-left-color: #667eea;
  background: #f8fafc;
}

/* Terms Main Content */
.terms-main {
  background: white;
  padding: 3rem;
  border-radius: 12px;
}

.terms-section {
  margin-bottom: 3rem;
  scroll-margin-top: 20px;
}

.terms-section h2 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.section-content {
  color: #475569;
  line-height: 1.8;
}

.section-content p {
  margin-bottom: 1rem;
}

.section-content p:last-child {
  margin-bottom: 0;
}

/* Compliance Section */
.compliance-section {
  padding: 80px 20px;
  background: white;
  border-top: 1px solid #e2e8f0;
}

.compliance-section h2 {
  font-size: 2rem;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.compliance-badge {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.compliance-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: white;
}

.compliance-badge svg {
  color: #667eea;
  margin-bottom: 1rem;
}

.compliance-badge h4 {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.compliance-badge p {
  color: #64748b;
  font-size: 0.9rem;
}

/* CTA Section */
.terms-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
  color: white;
}

.cta-content svg {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: #667eea;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .terms-wrapper {
    grid-template-columns: 1fr;
  }
  
  .terms-toc {
    position: static;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .terms-hero h1 {
    font-size: 2rem;
  }
  
  .terms-main {
    padding: 2rem 1.5rem;
  }
  
  .notice-card {
    flex-direction: column;
  }
}
/* src/styles/PrivacyPolicy.css */

.privacy-page {
  min-height: 100vh;
  background: #f5f5f7;
  overflow-x: hidden;
}

/* Hero Section - Same as Landing */
.privacy-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.privacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/static/media/pattern-7538a7ae69f6110a.25ab132849645a00a003.svg);
  opacity: 0.1;
}

.privacy-hero .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.privacy-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.privacy-hero .gradient-text {
  background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.privacy-hero .hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* Section Container */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #1d1d1f;
}

.section-subtitle {
  text-align: center;
  color: #86868b;
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

/* Compliance Section */
.compliance-section {
  padding: 3rem 2rem;
  background: white;
  border-bottom: 1px solid #e5e5e7;
}

.compliance-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border: 2px solid #667eea;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.compliance-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.compliance-badge svg {
  color: #10b981;
  flex-shrink: 0;
}

.compliance-badge h4 {
  margin: 0;
  font-size: 1rem;
  color: #667eea;
  font-weight: 700;
}

.compliance-badge p {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}

/* Privacy Main Section - Grid Layout */
.privacy-main-section {
  padding: 5rem 2rem;
  background: #f5f5f7;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.privacy-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.privacy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, transparent 100%);
  background: linear-gradient(90deg, var(--card-color, #667eea) 0%, transparent 100%);
}

.privacy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1d1d1f;
}

.card-description {
  color: #667eea;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.card-features {
  list-style: none;
  padding: 0;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.4;
}

.card-features svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Data Rights Section */
.data-rights-section {
  padding: 5rem 2rem;
  background: white;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
}

.right-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: center;
  border: 1px solid #e5e5e7;
}

.right-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}

.right-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
}

.right-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1d1d1f;
  font-weight: 700;
}

.right-card p {
  color: #86868b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.right-button {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.right-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  gap: 0.75rem;
}

/* Detailed Policies Section */
.detailed-policies-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.policies-container {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.policy-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.policy-section h3 {
  font-size: 1.75rem;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.policy-content {
  color: #4a5568;
  line-height: 1.8;
}

.policy-content h4 {
  font-size: 1.125rem;
  color: #667eea;
  margin: 1.5rem 0 1rem;
  font-weight: 600;
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.policy-content li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.policy-content li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

/* CTA Section */
.privacy-cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.privacy-cta-section .cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.privacy-cta-section h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.privacy-cta-section p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.privacy-cta-section .cta-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.privacy-cta-section .cta-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  font-size: 1rem;
}

.privacy-cta-section .cta-features svg {
  color: #10b981;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.cta-button.primary {
  background: white;
  color: #667eea;
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  gap: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .privacy-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .privacy-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .privacy-hero .hero-description {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .privacy-grid,
  .rights-grid {
    grid-template-columns: 1fr;
  }
  
  .compliance-grid {
    flex-direction: column;
  }
  
  .policy-section {
    padding: 2rem 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-button {
    width: 100%;
  }
  
  .privacy-cta-section .cta-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
/* src/components/LoginModal.css */

.login-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.login-modal {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #6b7280;
}

.modal-close:hover {
  background: #e5e7eb;
  color: #374151;
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.modal-header h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: #6b7280;
  font-size: 1rem;
}

.error-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #fef2f2;
  border: 2px solid #fecaca;
  border-radius: 8px;
  color: #dc2626;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: #6b7280;
  z-index: 1;
}

.input-group input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: white;
}

.input-group input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-group input:disabled {
  background: #f9fafb;
  cursor: not-allowed;
  opacity: 0.7;
}

.password-toggle {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.password-toggle:hover {
  color: #374151;
  background: #f3f4f6;
}

/* Plan Selection */
.plan-selection {
  margin: 1.5rem 0;
}

.plan-selection h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  text-align: center;
}

.plan-subtitle {
  font-size: 0.9rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 1.5rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}

.plan-card {
  position: relative;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  background: white;
}

.plan-card:hover {
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.plan-card.selected {
  border-color: #667eea;
  background: #f8faff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.plan-card.recommended {
  border-color: #f59e0b;
  position: relative;
}

.plan-card.recommended.selected {
  border-color: #667eea;
  background: linear-gradient(135deg, #f8faff 0%, #fef3c7 100%);
}

.recommended-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.plan-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.plan-description {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #374151;
  margin-bottom: 0.25rem;
}

.plan-features li svg {
  color: #10b981;
  flex-shrink: 0;
}

.feature-more {
  font-style: italic;
  color: #6b7280 !important;
}

.plan-trial-note {
  font-size: 0.7rem;
  color: #10b981;
  font-weight: 600;
  background: #ecfdf5;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  margin-top: 0.5rem;
}

.modal-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.modal-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.modal-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.modal-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.modal-footer p {
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.switch-mode-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: #667eea;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.switch-mode-btn:hover:not(:disabled) {
  background: #f8faff;
  transform: translateY(-1px);
}

.switch-mode-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.register-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.terms-text {
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.4;
}

/* Success Content */
.success-content {
  text-align: center;
  padding: 1rem 0;
}

.success-icon {
  margin-bottom: 1.5rem;
}

.success-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.success-content p {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.success-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f0fdf4;
  border-radius: 12px;
  border: 2px solid #bbf7d0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #166534;
  font-weight: 500;
}

.success-continue-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #10b981;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.success-continue-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 640px) {
  .login-modal {
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 16px;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
  }
  
  .input-group input {
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 0.875rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: #f5f5f7;
  color: #1d1d1f;
}

.page-placeholder {
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
}

.page-placeholder h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1d1d1f;
}

.page-placeholder p {
  color: #86868b;
  font-size: 1.1rem;
}

.spinner-large {
  width: 48px;
  height: 48px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.spinning {
  animation: spin 1s linear infinite;
}
EOF

# Crear estilos para cada componente
mkdir -p src/styles

# Login.css
cat > src/styles/Login.css << 'EOF'
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nNjAnIGhlaWdodD0nNjAnIHZpZXdCb3g9JzAgMCA2MCA2MCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48ZyBmaWxsPSdub25lJyBmaWxsLXJ1bGU9J2V2ZW5vZGQnPjxnIGZpbGw9JyNmZmZmZmYnIGZpbGwtb3BhY2l0eT0nMC40Jz48cGF0aCBkPSdNMzYgMzR2LTRoLTJ2NGgtNHYyaDR2NGgydi00aDR2LTJoLTR6bTAtMzBWMGgtMnY0aC00djJoNHY0aDJWNmg0VjRoLTR6TTYgMzR2LTRINHY0SDB2Mmg0djRoMnYtNGg0di0ySDZ6TTYgNFYwSDR2NEgwdjJoNHY0aDJWNmg0VjRINnonLz48L2c+PC9nPjwvc3ZnPg==);
}

.login-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  display: inline-flex;
  margin-bottom: 1rem;
}

.login-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
}

.login-header p {
  color: #86868b;
}

.error-message {
  background: #fee;
  color: #c00;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #86868b;
}

.input-group input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 1px solid #e5e5e7;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.2s;
}

.input-group input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.login-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 0.875rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.login-button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.login-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.login-footer {
  text-align: center;
  margin-top: 2rem;
  color: #86868b;
  font-size: 0.875rem;
}
EOF

# Dashboard.css
cat > src/styles/Dashboard.css << 'EOF'
.dashboard {
  padding: 2rem;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.dashboard-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.dashboard-header p {
  color: #86868b;
}

.refresh-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: white;
  border: 1px solid #e5e5e7;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.refresh-button:hover {
  background: #f5f5f7;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.metric-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-content {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.875rem;
  color: #86868b;
  margin-bottom: 0.25rem;
}

.metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1d1d1f;
}

.metric-change {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.metric-change.positive {
  color: #10b981;
}

.metric-change.negative {
  color: #ef4444;
}

.charts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.chart-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chart-header {
  margin-bottom: 1rem;
}

.chart-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.chart-subtitle {
  font-size: 0.875rem;
  color: #86868b;
}

.resources-summary {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.resources-summary h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.resources-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.resource-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: #f5f5f7;
  border-radius: 8px;
  transition: background 0.2s;
}

.resource-item:hover {
  background: #e5e5e7;
}

.resource-icon {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.resource-info {
  flex: 1 1;
}

.resource-name {
  font-weight: 500;
  display: block;
  margin-bottom: 0.125rem;
}

.resource-type {
  font-size: 0.75rem;
  color: #86868b;
}

.resource-status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.status-badge.running,
.status-badge.available {
  background: #10b98115;
  color: #10b981;
}

.status-badge.stopped {
  background: #6b728015;
  color: #6b7280;
}

.resource-cost {
  font-size: 0.875rem;
  font-weight: 600;
  color: #f59e0b;
}
EOF

# Resources.css
cat > src/styles/Resources.css << 'EOF'
.resources-page {
  padding: 2rem;
}

.resources-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.resources-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.resources-header p {
  color: #86868b;
}

.resources-controls {
  margin-bottom: 2rem;
}

.search-bar {
  position: relative;
  margin-bottom: 1rem;
}

.search-bar svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #86868b;
}

.search-bar input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid #e5e5e7;
  border-radius: 12px;
  font-size: 1rem;
  background: white;
}

.search-bar input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid #e5e5e7;
  border-radius: 8px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-chip:hover {
  background: #f5f5f7;
}

.filter-chip.active {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.resources-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-card > div {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.75rem;
  color: #86868b;
}

.resources-grid {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
}

.resource-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}

.resource-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.resource-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.resource-title {
  display: flex;
  gap: 1rem;
}

.resource-title h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.resource-title p {
  font-size: 0.75rem;
  color: #86868b;
}

.expand-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #86868b;
}

.resource-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
}

.resource-type {
  padding: 0.25rem 0.5rem;
  background: #667eea15;
  color: #667eea;
  border-radius: 4px;
  font-weight: 500;
}

.resource-region {
  color: #86868b;
}

.resource-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e7;
}

.detail-section {
  margin-bottom: 1rem;
}

.detail-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #86868b;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  background: #f5f5f7;
  border-radius: 4px;
  font-size: 0.75rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.detail-key {
  color: #86868b;
  text-transform: capitalize;
}

.detail-value {
  font-weight: 500;
}

.resource-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.action-button {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid #e5e5e7;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.action-button:hover:not(:disabled) {
  background: #f5f5f7;
}

.action-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
EOF

# Layout.css
cat > src/styles/Layout.css << 'EOF'
.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: white;
  border-right: 1px solid #e5e5e7;
  display: flex;
  flex-direction: column;
  transition: width 0.3s;
}

.sidebar.closed {
  width: 80px;
}

.sidebar-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e7;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo span {
  font-size: 1.25rem;
  font-weight: 700;
}

.sidebar-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #86868b;
}

.sidebar-nav {
  flex: 1 1;
  padding: 1rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.25rem;
  border-radius: 8px;
  color: #1d1d1f;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-item:hover {
  background: #f5f5f7;
}

.nav-item.active {
  background: #667eea15;
  color: #667eea;
  font-weight: 500;
}

.sidebar.closed .nav-item {
  justify-content: center;
}

.sidebar.closed .nav-item span {
  display: none;
}

.sidebar-footer {
  padding: 1rem;
  border-top: 1px solid #e5e5e7;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f5f5f7;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.user-avatar {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 500;
  font-size: 0.875rem;
}

.user-email {
  font-size: 0.75rem;
  color: #86868b;
}

.sidebar.closed .user-details {
  display: none;
}

.logout-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  background: none;
  border: 1px solid #e5e5e7;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.logout-button:hover {
  background: #fee;
  border-color: #fcc;
  color: #c00;
}

.sidebar.closed .logout-button span {
  display: none;
}

.sidebar.closed .logout-button {
  justify-content: center;
}

.main-content {
  flex: 1 1;
  background: #f5f5f7;
  overflow-y: auto;
}
/* src/styles/CurrencyProvider.css */

.currency-selector {
  position: relative;
  display: inline-block;
}

.currency-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  color: #4a5568;
}

.currency-button:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.currency-flag {
  font-size: 18px;
  line-height: 1;
}

.currency-code {
  color: #334155;
  font-weight: 600;
}

.currency-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 10000;
  overflow: hidden;
  animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.currency-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-align: left;
  transition: background 0.2s;
  color: #4a5568;
}

.currency-option:hover {
  background: #f8fafc;
}

.currency-option.active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  font-weight: 600;
  color: #667eea;
}

.currency-symbol {
  margin-left: auto;
  color: #64748b;
  font-weight: 600;
}

.currency-info {
  padding: 8px 12px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  font-size: 12px;
  color: #64748b;
  text-align: center;
}

/* Price Display Styles */
.price-display {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.price-period {
  font-size: 0.875em;
  color: #64748b;
  font-weight: 400;
}

/* Para los pricing cards */
.pricing-card .price-display .price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
}

/* Para las transformation cards */
.transformation-card .price-display .price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
}

/* Integración con la navegación */
.nav-actions .currency-selector {
  margin-right: 1rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .currency-button {
    padding: 6px 10px;
    font-size: 13px;
  }
  
  .currency-flag {
    font-size: 16px;
  }
  
  .currency-dropdown {
    right: auto;
    left: 0;
  }
}

/*# sourceMappingURL=main.ab62ae6e.css.map*/