/* ==========================================================================
   FISCAL OCULTO - TEMA PREMIUM
   ========================================================================== */

:root {
  /* Cores Base */
  --bg-dark: #0A0A0B;
  --bg-darker: #050505;
  --bg-card: #121214;
  --bg-card-hover: #18181B;
  --bg-card-glass: rgba(18, 18, 20, 0.7);
  
  /* Textos */
  --text-main: #D4D4D8;
  --text-muted: #A1A1AA;
  --text-heading: #FAFAFA;
  
  /* Destaques (Accent Colors) */
  --brand-green: #10B981;
  --brand-green-glow: rgba(16, 185, 129, 0.25);
  --brand-gold: #F59E0B;
  --brand-gold-glow: rgba(245, 158, 11, 0.2);
  --alert-red: #EF4444;
  
  /* Tipografia */
  --font-sans: 'Inter', -apple-system, blinkmacsystemfont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Outfit', -apple-system, blinkmacsystemfont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  /* Medidas e Outros */
  --container-width: 1100px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES BASE
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-heading);
  line-height: 1.2;
}

ul { list-style: none; }
a { text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section {
  padding: 100px 0;
  position: relative;
}

.text-center { text-align: center; }
.text-green { color: var(--brand-green); }
.text-gold { color: var(--brand-gold); }
.text-red { color: var(--alert-red); }

.mt-10 { margin-top: 40px; }

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 40px;
}

/* Títulos secundários nas seções */
.highlight-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 32px;
}

/* Botões */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 20px 48px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.primary-cta {
  background-color: var(--brand-green);
  color: #000;
  box-shadow: 0 0 24px var(--brand-green-glow);
}

.primary-cta:hover {
  transform: translateY(-2px);
  background-color: #059669;
  color: #fff;
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
}

.secondary-cta {
  background-color: transparent;
  color: var(--brand-green);
  border: 2px solid var(--brand-green);
}

.secondary-cta:hover {
  background-color: var(--brand-green-glow);
}

.microcopy {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Animações nativas de pulso */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.pulse-btn {
  animation: pulseGlow 2.5s infinite;
}

/* Ocultar elementos para entrada GSAP */
.fade-up, .stagger-item, .stagger-prob, .stagger-reframe, .stagger-mec, .stagger-ent, .stagger-prova {
  opacity: 0;
  transform: translateY(30px);
}
.reveal-text { opacity: 0; }

/* ==========================================================================
   SEÇÕES: ESTILOS ESPECÍFICOS
   ========================================================================== */

/* 1. HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.glow-bg {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vh;
  background: radial-gradient(ellipse at center, var(--brand-green-glow) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  text-transform: tight;
  background: linear-gradient(to right, #FFF, #A1A1AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 40px;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 56px;
}

.hero-bullets .bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text-heading);
  background: rgba(255,255,255,0.03);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.05);
}

.hero-bullets .bullet i { color: var(--brand-green); font-size: 1.25rem; }

/* 2. IDENTIFICAÇÃO */
.ident-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ident-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.ident-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.ident-card i {
  font-size: 2.5rem;
  color: var(--brand-green);
  margin-bottom: 16px;
}

.ident-card p {
  font-weight: 600;
  color: var(--text-heading);
}

/* 3. PROBLEMA */
.problema-section {
  background-color: var(--bg-darker);
  border-top: 1px solid rgba(239, 68, 68, 0.1);
  border-bottom: 1px solid rgba(239, 68, 68, 0.1);
}

.problema-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.problema-content p { margin-bottom: 24px; }

.problema-list {
  background: rgba(239, 68, 68, 0.03);
  border-left: 4px solid var(--alert-red);
  padding: 24px 32px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 32px 0;
}

.problema-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 500;
}
.problema-list li i { font-size: 1.25rem; }
.problema-list li:last-child { margin-bottom: 0; }

.tension-block {
  margin-top: 48px;
  text-align: center;
  padding: 40px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
}

.tension-highlight {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px !important;
}

/* 4. REENQUADRAMENTO */
.reframe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 56px 0;
}

.reframe-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  border-top: 2px solid var(--brand-green);
  text-align: left;
}

.reframe-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-green-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.reframe-icon i {
  color: var(--brand-green);
  font-size: 1.8rem;
}

.reframe-card p {
  font-size: 1.125rem;
}
.reframe-card p strong {
  display: block;
  margin-top: 8px;
  color: var(--brand-green);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.reframe-conclusion {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-heading);
}

/* 5. MECANISMO */
.mecanismo-section {
  background-color: var(--bg-darker);
  position: relative;
}

.mecanismo-steps {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: left;
}

.mec-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-card);
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.03);
}

.mec-step:last-child { margin-bottom: 0; }

.mec-bullet {
  width: 12px;
  height: 12px;
  background: var(--brand-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-green);
  flex-shrink: 0;
}

.mec-step p {
  font-weight: 500;
  font-size: 1.125rem;
}

.frase-fechamento {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--brand-gold);
}

/* 6. ENTREGÁVEIS */
.entregaveis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.ent-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.ent-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: var(--transition);
}

.ent-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.ent-card:hover::before {
  background: linear-gradient(90deg, var(--brand-green), var(--brand-green-glow));
}

.ent-header {
  margin-bottom: 24px;
}

.ent-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}

.ent-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.ent-header h3 span {
  display: block;
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.ent-desc {
  margin-bottom: 24px;
  color: var(--text-main);
}

.ent-desc strong {
  color: var(--text-heading);
}

.ent-uso {
  background: rgba(255,255,255,0.02);
  padding: 24px;
  border-radius: var(--radius-sm);
}

.uso-title {
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.ent-uso ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.ent-uso ul li:last-child { margin-bottom: 0; }
.ent-uso ul li i { margin-top: 3px; color: var(--brand-green); }

/* 7. TRANSFORMAÇÃO */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.transform-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: left;
}

.transform-card.antes { border: 1px solid rgba(239, 68, 68, 0.2); }
.transform-card.depois { border: 1px solid rgba(16, 185, 129, 0.3); background: var(--bg-card-hover); }

.trans-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.trans-header i { font-size: 2.5rem; }
.trans-header h3 { font-size: 1.5rem; }

.transform-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 20px;
  font-size: 1.125rem;
}

.transform-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.transform-card.antes ul li::before { background: var(--alert-red); opacity: 0.5; }
.transform-card.depois ul li::before { background: var(--brand-green); }

/* 8. PARA QUEM É */
.publico-section { background: var(--bg-darker); }

.publico-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.pub-box {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
}

.pub-box h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.pub-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.pra-voce h3 { color: var(--brand-green); }
.pra-voce ul li i { color: var(--brand-green); font-size: 1.25rem; margin-top: 2px; }

.nao-e h3 { color: var(--alert-red); }
.nao-e ul li i { color: var(--alert-red); font-size: 1.25rem; margin-top: 2px; }

/* 9. OFERTA */
.oferta-grid {
  display: grid;
  grid-template-columns: minmax(300px, 450px) minmax(300px, 450px);
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  margin-top: 56px;
}

.plano-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
}

.plano-card.pro {
  border-color: var(--brand-gold);
  background: #151515;
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.05);
  transform: scale(1.05);
  z-index: 10;
}

.pro-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-gold);
  color: #000;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plano-header h3 { font-size: 1.8rem; margin-bottom: 12px; }
.plano-header h3 span { display: block; font-size: 1.2rem; color: var(--text-muted); font-weight: 500; }
.plano-desc { font-size: 1rem; color: var(--text-muted); margin-bottom: 32px; }

.plano-includes-title { font-weight: 600; margin-bottom: 24px; color: var(--text-heading); }
.plano-includes li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 0.95rem; }
.plano-includes li i { font-size: 1.25rem; color: var(--brand-green); }

.plano-footer { margin-top: auto; padding-top: 40px; text-align: center; }

.price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
  margin-bottom: 32px;
}
.price span { font-size: 1.5rem; font-weight: 600; vertical-align: super; }

.plano-card.basico .cta { width: 100%; }
.plano-card.pro .cta { width: 100%; box-shadow: 0 0 20px var(--brand-gold-glow); }

/* ORDER BUMP */
.order-bump {
  max-width: 700px;
  margin: 64px auto 0;
  background: var(--bg-card);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  gap: 24px;
  text-align: left;
}
.bump-icon i { font-size: 2.5rem; color: var(--brand-green); }
.bump-content h4 { font-size: 1.2rem; margin-bottom: 8px; }
.bump-subtitle { font-weight: 500; color: var(--text-main); margin-bottom: 16px; }
.bump-micro { font-size: 0.9rem; color: var(--text-muted); }

/* 10. JUSTIFICATIVA */
.justificativa-section { background: var(--bg-darker); border-top: 1px solid rgba(255,255,255,0.05); }
.text-focus { max-width: 800px; margin: 0 auto; }
.just-content { font-size: 1.25rem; }
.just-content p { margin-bottom: 24px; }
.big-highlight {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  margin: 40px 0 !important;
  text-transform: uppercase;
}

/* 11. GARANTIA */
.garantia-card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-darker));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.garantia-icon i {
  font-size: 100px;
  color: var(--brand-green);
  opacity: 0.8;
}

.garantia-text h2 { font-size: 2.5rem; margin-bottom: 24px; }
.garantia-text p { font-size: 1.1rem; margin-bottom: 16px; }
.garantia-bullets { color: var(--brand-green); font-weight: 600; margin-top: 24px !important; }

/* 12. PROVA SOCIAL */
.prova-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.prova-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-md);
  text-align: left;
  border: 1px solid rgba(255,255,255,0.05);
}
.stars { color: var(--brand-gold); margin-bottom: 24px; display: flex; gap: 4px; }
.depoimento { font-size: 1.1rem; font-style: italic; margin-bottom: 24px; color: var(--text-heading); }
.autor { font-weight: 600; color: var(--text-muted); font-size: 0.9rem; }

/* 13. AUTORIDADE */
.autoridade-section { background: var(--bg-darker); }
.autoridade-content { max-width: 700px; margin: 0 auto; font-size: 1.125rem; }
.autoridade-highlight { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin: 32px 0; }
.badge-autoridade {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* 14. FAQ */
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question i { font-size: 1.5rem; transition: var(--transition); }
.faq-question.active i { transform: rotate(180deg); color: var(--brand-green); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-answer p { padding: 0 0 24px 0; color: var(--text-muted); font-size: 1.1rem; }

/* 15. CTA FINAL */
.cta-final-section {
  background: radial-gradient(circle at center, var(--bg-card) 0%, var(--bg-dark) 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 120px 0;
}
.cta-final-section .section-title { font-size: clamp(2.5rem, 5vw, 3.5rem); }

/* FOOTER */
.footer {
  text-align: center;
  padding: 48px 24px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer p { color: var(--text-muted); font-size: 1rem; }
.footer .disclaimer { margin-top: 16px; font-size: 0.8rem; color: #666; max-width: 800px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   RESPONSIVO / MOBILE Aprimorado
   ========================================================================== */
@media (max-width: 1024px) {
  .oferta-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .plano-card.pro { transform: scale(1); margin-top: 24px; }
  .transform-grid { grid-template-columns: 1fr; }
  .publico-grid { grid-template-columns: 1fr; }
  .garantia-card { flex-direction: column; text-align: center; gap: 24px; padding: 48px 24px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .hero { min-height: auto; padding: 160px 0 80px; }
  .hero-title { font-size: 2.2rem; }
  .hero-bullets { flex-direction: column; gap: 16px; align-items: stretch; }
  .hero-bullets .bullet { justify-content: center; }
  
  .problema-content { padding: 0; }
  .problema-list { padding: 24px 16px; margin: 32px -24px; border-radius: 0; border-left: none; border-top: 4px solid var(--alert-red); border-bottom: 4px solid var(--alert-red); }
  
  .reframe-grid { grid-template-columns: 1fr; }
  .mec-step { flex-direction: row; text-align: left !important; gap: 16px; align-items: flex-start; padding: 16px; }
  .mec-step .mec-bullet { margin-top: 6px; }
  
  .entregaveis-grid { grid-template-columns: 1fr; }
  .cta { width: 100%; padding: 20px 24px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-title { font-size: 1.6rem; }
  .garantia-text h2 { font-size: 1.8rem; }
  .price { font-size: 3.2rem; }
  .cta { font-size: 1rem; padding: 18px 24px; }
  .ident-card, .pub-box, .reframe-card, .ent-card { padding: 32px 20px; }
  .plano-card { padding: 32px 24px; }
}

/* ==========================================================================
   IMAGE PLACEHOLDERS (Áreas reservadas)
   ========================================================================== */
.block-margin { margin-top: 40px; }

.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1.5px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
  transition: var(--transition);
}

.image-placeholder:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--brand-green);
}

.image-placeholder i {
  font-size: 3rem;
  color: rgba(255,255,255,0.2);
  margin-bottom: 16px;
}

.image-placeholder p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}

.image-placeholder p span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

.circular-placeholder {
  border-radius: 50%;
}

