.elementor-3978 .elementor-element.elementor-element-4d94b127{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3978 .elementor-element.elementor-element-4d94b127:not(.elementor-motion-effects-element-type-background), .elementor-3978 .elementor-element.elementor-element-4d94b127 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}/* Start custom CSS *//* ===== CONSOLE PRANAYAMA UNIVERSAL - HACKER DA MENTE 4.3 ===== */

/* Variáveis de Cores e Estilos */
:root {
  --neon-green: #39FF14;
  --neon-blue: #00f3ff;
  --neon-cyan: #00d4ff;
  --neon-red: #ff3333;
  --neon-orange: #ff9500;
  --hacker-bg: #0a0e27;
  --hacker-purple: #a855f7;
  --flow-green: #10b981;
  --bg-color: #0d0d0d;
  --panel-color: #111111;
  --text-color: #e0e0e0;
  --text-light-gray: #a0a0a0;
}

/* Reset e Base para o Container Principal */
#prana-container * {
  box-sizing: border-box;
}

#prana-container {
  margin: 0;
  padding: 0;
  font-family: 'Courier New', Courier, monospace;
  background-color: var(--bg-color);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* ===== INTRO HACKER (Tela de Boas-Vindas) ===== */
.prana-intro {
  background: var(--hacker-bg);
  color: var(--neon-green);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px 20px;
  width: 100%;
}

.prana-intro::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(57, 255, 20, 0.1) 50%, transparent 100%);
  animation: scan 8s linear infinite;
  pointer-events: none;
  opacity: 0.3;
}

@keyframes scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

.prana-intro-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.prana-chapter-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--hacker-purple), var(--neon-cyan));
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
  animation: pulse-badge 2s ease infinite;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.4); }
  50% { box-shadow: 0 0 40px rgba(0, 243, 255, 0.8); }
}

.prana-intro h1 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-weight: 800;
  line-height: 1.2;
}

.prana-intro-subtitle {
  color: var(--neon-cyan);
  font-size: 1.15rem;
  margin-bottom: 40px;
  opacity: 0.9;
  letter-spacing: 1px;
}

.prana-intro-description {
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 16px;
  padding: 25px 20px;
  margin-bottom: 30px;
  text-align: left;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.8;
}

.prana-intro-description strong {
  color: var(--neon-cyan);
}

.prana-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.level-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}

.level-card-title {
  color: var(--neon-green);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.level-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.level-card li {
  font-size: 0.9rem;
  padding: 5px 0;
  color: #cbd5e1;
}

.level-card li:before {
  content: "▸ ";
  color: var(--neon-cyan);
  font-weight: bold;
}

.btn-hacker-prana {
  margin-top: 20px;
  padding: 22px 50px;
  width: 100%;
  max-width: 500px;
  background: transparent;
  border: 3px solid var(--neon-green);
  color: var(--neon-green);
  font-weight: 800;
  font-size: 1.2rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4), inset 0 0 20px rgba(57, 255, 20, 0.1);
  animation: pulse-neon 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes pulse-neon {
  0%, 100% {
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4), inset 0 0 20px rgba(57, 255, 20, 0.1);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.8), inset 0 0 30px rgba(57, 255, 20, 0.2);
    transform: scale(1.05);
  }
}

.btn-hacker-prana:hover {
  background: var(--neon-green);
  color: #000;
  box-shadow: 0 0 50px rgba(57, 255, 20, 1), inset 0 0 30px rgba(57, 255, 20, 0.5);
  transform: scale(1.02);
}

/* ===== MÓDULO PRINCIPAL (Console de Respiração) ===== */
.prana-module {
  width: 100%;
  max-width: 550px;
  background-color: var(--panel-color);
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

.hidden {
  display: none !important;
}

/* Título do Módulo */
.module-title {
  background-color: rgba(0, 243, 255, 0.1);
  border-bottom: 2px solid var(--neon-blue);
  padding: 15px;
  text-align: center;
  width: 100%;
  color: var(--neon-blue);
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Seletor de Técnicas */
.technique-body.elementor-page-3978-area {
  padding: 20px;
  width: 100%;
  border-bottom: 1px dashed #333;
  background-color: #0a0a0a;
}

.technique-body.elementor-page-3978-area label {
  display: block;
  color: var(--neon-green);
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: bold;
}

.technique-body.elementor-page-3978 {
  width: 100%;
  padding: 12px;
  background-color: #1a1a1a;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  border-radius: 5px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  appearance: none; /* Remove default arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300d4ff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  cursor: pointer;
}

.technique-body.elementor-page-3978 option {
  background-color: #0a0a0a;
  color: var(--neon-cyan);
}

.technique-info {
  font-size: 0.85rem;
  color: var(--text-light-gray);
  margin-top: 10px;
  line-height: 1.4;
}

.technique-info strong {
  color: var(--neon-green);
}

/* Área do Visualizador de Respiração */
.visualizer-area {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #1a1a1a 0%, #000 80%);
  min-height: 300px;
  width: 100%;
  position: relative;
}

.breathing-circle {
  width: 150px;
  height: 150px;
  background-color: var(--neon-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
  transition: all 0.5s ease-in-out; /* Default transition */
}

/* Estados de Respiração */
.breathing-circle.state-inhale {
  transform: scale(1.2);
  background-color: var(--neon-cyan);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
}
.breathing-circle.state-hold-in {
  transform: scale(1.2);
  background-color: var(--flow-green);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.8);
}
.breathing-circle.state-exhale {
  transform: scale(0.8);
  background-color: var(--neon-green);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.8);
}
.breathing-circle.state-hold-out {
  transform: scale(0.8);
  background-color: var(--hacker-purple);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.8);
}

.circle-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.circle-timer {
  position: absolute;
  bottom: -40px;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--neon-blue);
  text-shadow: 0 0 15px rgba(0, 243, 255, 0.7);
}

/* Botões de Ação */
.action-area {
  padding: 20px;
  width: 100%;
  text-align: center;
  border-top: 1px dashed #333;
  background-color: #0a0a0a;
}

.btn-action {
  padding: 15px 30px;
  background: transparent;
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
  transition: all 0.3s ease;
}

.btn-action:hover {
  background: var(--neon-green);
  color: #000;
  box-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
}

.btn-action.btn-stop {
  border-color: var(--neon-red);
  color: var(--neon-red);
  box-shadow: 0 0 15px rgba(255, 51, 51, 0.3);
}

.btn-action.btn-stop:hover {
  background: var(--neon-red);
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 51, 51, 0.7);
}

.cycle-info {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-light-gray);
}

.cycle-info span {
  font-weight: bold;
  color: var(--neon-cyan);
}

/* Dica do Hacker */
.hacker-tip {
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid #333;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light-gray);
  border-radius: 0 0 8px 8px;
  margin-top: 20px;
  width: 100%;
}

.icon-bulb {
  font-size: 1.8rem;
  color: var(--neon-orange);
  flex-shrink: 0;
}

.tip-bold {
  color: var(--neon-green);
  font-weight: bold;
}

/* Responsividade */
@media (max-width: 600px) {
  .prana-intro h1 {
    font-size: 1.8rem;
  }
  .prana-intro-subtitle {
    font-size: 1rem;
  }
  .btn-hacker-prana {
    padding: 18px 30px;
    font-size: 1rem;
  }
  .breathing-circle {
    width: 120px;
    height: 120px;
  }
  .circle-label {
    font-size: 1.2rem;
  }
  .circle-timer {
    font-size: 3rem;
    bottom: -35px;
  }
}/* End custom CSS */