/*
Theme Name: El Show del Trading
Theme URI: https://tusitio.com/
Author: Tu Nombre
Author URI: https://tusitio.com/
Description: Tema personalizado para El Show del Trading.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: el-show-del-trading
*/

/* Reset y Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colores principales */
  --color-background: #000000;
  --color-surface: #0a0a0a;
  --color-primary: #FF6CDA;
  --color-primary-hover: #e54bc4;
  --color-accent: #459B1C;
  --color-accent-secondary: #5ab523;
  --color-tertiary: #737FBB;
  --color-light: #EACAD9;
  --color-live: #FF6CDA;
  --color-text: #ffffff;
  --color-text-muted: #EACAD9;
  --color-border: #1a1a1a;

  /* Espaciado */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Tipografía */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Bordes */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(255, 0, 128, 0.3);
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}


.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo a {
  text-decoration: none;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.live-badge {
  background: #FF6CDE;
  color: var(--color-text);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  animation: pulse 2s infinite;
}


.btn-strategy:hover{
	border-color:var(--color-accent);
	background:rgba(69,155,28,0.1);
	box-shadow: var(--shadow-glow-green);
}


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

.nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav a {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--color-text);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(10px);
  padding: var(--spacing-md);
  flex-direction: column;
  gap: var(--spacing-sm);
  border-bottom: 1px solid var(--color-border);
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}
.logo-img img{
	height:150px;
	
}
.mobile-menu a {
  color: var(--color-text);
  text-decoration: none;
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: background 0.3s;
}

.mobile-menu a:hover {
  background: var(--color-surface);
}

nav  a.btn-primary{
	font-weight:700;
		font-size:1.1em;
}

/* Buttons */
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
	background-color:rgba(10, 14, 39, 0.95);
  color: var(--color-text);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--color-accent);
  transition: all 0.3s;
  cursor: pointer;
}

a {
	color:white;
}
.hero-logo-spin{
	height:300px;
	display:flex;
	margin:auto;

}
@keyframes rotateYInfinite {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.rotate-3d-infinite {
    display:flex;
    animation: rotateYInfinite 2.5s linear infinite;
    transform-style: preserve-3d;
    perspective: 600px;
}
.btn-secondary:hover {
  border-color: var(--color-accent);
  background: rgba(69, 155, 28, 0.1);
  box-shadow: var(--shadow-glow-green);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}


/* Hero Section */
.hero {
  position: relative;
  padding: calc(73px + var(--spacing-2xl)) 0 var(--spacing-2xl);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:#6E4FEB;
  z-index: 0;  
}
.laser-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, #00d9ff 80%, rgba(255,255,255,0.1) 100%);
  opacity: 0.8;
  box-shadow: 0 0 24px #00d9ff, 0 0 48px #fff;
  transform-origin: left center;
   animation: laser-glow 1.2s linear infinite;

  filter: drop-shadow(0 0 8px #00d9ff) drop-shadow(0 0 16px #fff);
}

.laser-beam:nth-child(1) { transform: rotate(10deg) translate(-50%, -50%); animation-delay: 0s; }
.laser-beam:nth-child(2) { transform: rotate(25deg) translate(-50%, -50%); animation-delay: 0.3s; }
.laser-beam:nth-child(3) { transform: rotate(40deg) translate(-50%, -50%); animation-delay: 0.6s; }
.laser-beam:nth-child(4) { transform: rotate(55deg) translate(-50%, -50%); animation-delay: 0.9s; }
.laser-beam:nth-child(5) { transform: rotate(70deg) translate(-50%, -50%); animation-delay: 1.2s; }
.laser-beam:nth-child(6) { transform: rotate(-10deg) translate(-50%, -50%); animation-delay: 0.15s; }
.laser-beam:nth-child(7) { transform: rotate(-25deg) translate(-50%, -50%); animation-delay: 0.45s; }
.laser-beam:nth-child(8) { transform: rotate(-40deg) translate(-50%, -50%); animation-delay: 0.75s; }
.laser-beam:nth-child(9) { transform: rotate(-55deg) translate(-50%, -50%); animation-delay: 1.05s; }
.laser-beam:nth-child(10) { transform: rotate(-70deg) translate(-50%, -50%); animation-delay: 1.35s; }

@keyframes laser-glow {
  0%, 100% {
    opacity: 0.4;
    filter: drop-shadow(0 0 4px #00d9ff) drop-shadow(0 0 8px #fff);
  }
  20% {
    opacity: 1;
    filter: drop-shadow(0 0 32px #00d9ff) drop-shadow(0 0 48px #fff);
  }
  50% {
    opacity: 0.4;
    filter: drop-shadow(0 0 4px #00d9ff) drop-shadow(0 0 8px #fff);
  }
  70% {
    opacity: 1;
    filter: drop-shadow(0 0 32px #00d9ff) drop-shadow(0 0 48px #fff);
  
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top:2em;
  background:#8844FA;
  border: 1px solid #968FFF;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--color-live);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
font-size:1.6rem;
	color:white;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: var(--spacing-md);
  letter-spacing: 0.1em;
}

.hero-description {
  font-size: 1.125rem;
  color: white;
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}
.container-logo {
	width:300px;
}
.container-logo img {
	width:100%;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.floating-card {
  position: absolute;
  background: rgba(20, 25, 55, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 10%;
  left: -10%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.card-icon {
  font-size: 2rem;
}

.card-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.card-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Features Section */
.features {
  padding: var(--spacing-2xl) 0;
  background: var(--color-surface);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.feature-card {
  background: var(--color-background);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  transition: all 0.3s;
}



.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.feature-description {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Stats Section */
.stats {
  padding: var(--spacing-2xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.stat-card {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: #7583FD;
  transform: translateY(-4px);
}

.stat-value {
  font-size: 3rem;
  font-weight: 900;
  color: #7884FD;
  margin-bottom: var(--spacing-sm);
}




.stat-label {
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

/* CTA Section */
.cta {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.1) 0%, rgba(0, 217, 255, 0.05) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.cta-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

.cta-description {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  background: var(--color-surface);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.footer-tagline {
  color: var(--color-text-muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.footer-column a {
  display: block;
  color: var(--color-text-muted);
  text-decoration: none;
  margin-bottom: var(--spacing-sm);
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--color-text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-md);
}

.footer-legal a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--color-text);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

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

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

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }

  .floating-card {
    display: none;
  }
}
