.elementor-163 .elementor-element.elementor-element-d7a0b39{--display:flex;}body.elementor-page-163:not(.elementor-motion-effects-element-type-background), body.elementor-page-163 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#242424;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-6a30646 */<style>
    :root {
      --primary: #fc8304;
      --secondary: #3b82f6;
      --bg-dark: #0f172a;
      --glass: rgba(255, 255, 255, 0.08);
      --border-glass: rgba(255, 255, 255, 0.2);
      --text-light: #e5e7eb;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Inter, system-ui, -apple-system, sans-serif;
    }

    body {
      background: linear-gradient(135deg, #020617, #020617);
      color: var(--text-light);
      min-height: 100vh;
      padding: 40px;
    }

    /* ===== CONTAINER ===== */
    .container {
      max-width: 1100px;
      margin: auto;
    }

    /* ===== GLASS CARD ===== */
    .glass {
      background: var(--glass);
      backdrop-filter: blur(14px) saturate(140%);
      -webkit-backdrop-filter: blur(14px) saturate(140%);
      border: 1px solid var(--border-glass);
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    /* ===== TITULOS ===== */
    h1 {
      font-size: 2.5rem;
      margin-bottom: 16px;
      color: var(--primary);
    }

    p {
      line-height: 1.7;
      margin-bottom: 16px;
      color: rgba(229, 231, 235, 0.85);
    }

    /* ===== BOTÃO ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 26px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      font-weight: 600;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(59, 130, 246, 0.35);
    }

    /* ===== ANIMAÇÃO ===== */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeIn 0.8s ease forwards;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ===== RESPONSIVO ===== */
    @media (max-width: 768px) {
      body {
        padding: 20px;
      }

      h1 {
        font-size: 2rem;
      }
    }
  </style>
</head>

<body>

  <div class="container">
    <div class="glass fade-in">

      <h1>Template Base</h1>
      <p>
        Este é um template inicial em HTML, CSS e JavaScript, ideal para criar
        páginas modernas com efeito glassmorphism, animações suaves e estrutura
        organizada.
      </p>

      <button class="btn" onclick="handleClick()">
        🚀 Começar projeto
      </button>

    </div>
  </div>

  <!-- ===== JS ===== -->
  <script>
    function handleClick() {
      alert("Projeto iniciado com sucesso!");
    }
  </script>/* End custom CSS */