.elementor-4855 .elementor-element.elementor-element-214f329{--display:flex;}.elementor-4855 .elementor-element.elementor-element-214f329:not(.elementor-motion-effects-element-type-background), .elementor-4855 .elementor-element.elementor-element-214f329 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}:root{--page-title-display:none;}/* Start custom CSS */<style>
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

  :root {
    --bg: #000000;
    --magenta: #FF00FF;
    --text: #ffffff;
    --gray: #888888;
  }

  * { box-sizing: border-box; }

  .hero-section {
    background-color: var(--bg);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
  }

  .hero-container {
    max-width: 900px;
    text-align: center;
    position: relative;
  }

  /* Glow de fundo sutil para modernidade */
  .hero-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: var(--magenta);
    filter: blur(150px);
    opacity: 0.15;
    transform: translate(-50%, -50%);
    z-index: 0;
  }

  .headline {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
  }

  .headline span {
    color: var(--magenta);
    /* Efeito de brilho no texto magenta */
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
  }

  .subheadline {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
    z-index: 1;
    position: relative;
  }

  .cta-button {
    display: inline-block;
    background-color: var(--magenta);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 22px 48px;
    border-radius: 2px; /* Visual "Bloco" agressivo */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    border: 2px solid var(--magenta);
    position: relative;
    z-index: 1;
  }

  .cta-button:hover {
    background-color: transparent;
    color: var(--magenta);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    transform: translateY(-5px);
  }

  @media (max-width: 768px) {
    .headline { letter-spacing: -1px; }
    .cta-button { width: 100%; padding: 20px; }
  }
</style>/* End custom CSS */