.elementor-17 .elementor-element.elementor-element-6100df7{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-17 .elementor-element.elementor-element-3b8d5e5{width:100%;max-width:100%;}:root{--page-title-display:none;}/* Start custom CSS *//* ============================================================
      TOKENS — edite aqui para adaptar à identidade da CBR
    ============================================================ */
    :root {
      --bg:          #0C0C0C;
      --surface:     #161616;
      --border:      #2A2A2A;

      /* TODO: ajuste o accent para a cor principal da marca */
      --accent:      hsl(72, 69%, 59%);
      --accent-dim:  rgba(255, 92, 0, 0.12);

      --text-hi:     #f1f4e6;
      --text-mid:    #c1c8b0;
      --text-lo:     #484a40;

      --font-display: 'Bebas Neue', sans-serif;
      --font-body:    'DM Sans', sans-serif;

      --radius:      6px;
      --max-w:       960px;
    }

    /* ============================================================
      RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text-hi);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
    }

    /* ============================================================
      GRAIN OVERLAY (textura sutil de fundo)
    ============================================================ */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.035;
      pointer-events: none;
      z-index: 0;
    }

    /* ============================================================
      LINHA DE ACENTO SUPERIOR
    ============================================================ */
    .top-bar {
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent 0%, var(--accent) 40%, var(--accent) 60%, transparent 100%);
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    /* ============================================================
      LAYOUT PRINCIPAL
    ============================================================ */
    .page-html {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: clamp(40px, 8vw, 100px) clamp(24px, 6vw, 64px);
      position: relative;
      z-index: 1;
    }

    .inner-html {
      width: 100%;
      max-width: var(--max-w);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    /* ============================================================
      BLOCO DA MARCA
      TODO: substitua o placeholder pelo logo SVG ou <img> da CBR
    ============================================================ */
    .brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      margin-bottom: 56px;
      animation: fadeUp 0.8s ease both;
    }

    /* --- Logo placeholder 
    .logo-placeholder {
      width: 120px;
      height: 120px;
      border: 2px dashed var(--border);
      border-radius: var(--radius);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: var(--text-lo);
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    --- */

    .logo-placeholder svg { opacity: 0.4; }

    /* --- Quando tiver o logo, substitua .logo-placeholder por: --- */
    .logo-img img{
      height: clamp(5rem, -2.5rem + 24vw, 12.5rem);        
      width: auto;
      display: block;
    }
    

    .brand-name {
      font-family: var(--font-display);
      font-size: clamp(28px, 6vw, 48px);
      letter-spacing: 0.06em;
      color: var(--text-hi);
      text-align: center;
    }

    /* ============================================================
      HEADLINE PRINCIPAL
    ============================================================ */
    .headline {
      text-align: center;
      margin-bottom: 24px;
      animation: fadeUp 0.8s 0.1s ease both;
    }

    .headline h1 {
      font-family: var(--font-display);
      font-size: clamp(52px, 14vw, 120px);
      line-height: 0.9;
      letter-spacing: -0.01em;
      color: var(--text-hi);
    }

    .headline h1 span {
      /*display: block;*/
      color: var(--accent);
    }

    /* ============================================================
      SUBTÍTULO / MENSAGEM
      TODO: edite o texto conforme a comunicação da CBR
    ============================================================ */
    .subtitle {
      font-size: clamp(15px, 2vw, 17px);
      color: var(--text-mid);
      font-weight: 300;
      text-align: center;
      max-width: 520px;
      margin-bottom: 64px;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    /* ============================================================
      COUNTDOWN
    ============================================================ */
    .countdown-wrap {
      margin-bottom: 64px;
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .countdown {
      display: flex;
      gap: clamp(12px, 4vw, 32px);
      align-items: flex-start;
    }

    .cd-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .cd-number {
      font-family: var(--font-display);
      font-size: clamp(48px, 10vw, 88px);
      line-height: 1;
      color: var(--text-hi);
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      min-width: clamp(72px, 16vw, 120px);
      text-align: center;
      padding: 12px 8px 8px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s;
    }

    .cd-number::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(255,255,255,0.03) 0%, transparent 50%);
      pointer-events: none;
    }

    .cd-unit:hover .cd-number { border-color: var(--accent); }

    .cd-sep {
      font-family: var(--font-display);
      font-size: clamp(36px, 8vw, 72px);
      color: var(--text-lo);
      margin-top: 4px;
      user-select: none;
    }

    .cd-label {
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-mid);
    }

    /* ============================================================
      BARRA DE PROGRESSO (opcional — mostra "quanto falta")
    ============================================================ */
    .progress-wrap {
      width: 100%;
      max-width: 480px;
      margin-bottom: 64px;
      animation: fadeUp 0.8s 0.4s ease both;
    }

    .progress-header {
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-mid);
      margin-bottom: 10px;
    }

    .progress-bar {
      height: 4px;
      background: var(--border);
      border-radius: 999px;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      background: var(--accent);
      border-radius: 999px;
      width: 0%;
      transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* ============================================================
      NOTIFICAÇÃO POR E-MAIL
      TODO: conecte o form ao seu serviço de e-mail (Mailchimp,
            Make.com webhook, etc.) substituindo #
    ============================================================ */
    .notify-form {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
      max-width: 480px;
      margin-bottom: 64px;
      animation: fadeUp 0.8s 0.5s ease both;
    }

    .notify-label {
      width: 100%;
      text-align: center;
      font-size: 13px;
      color: var(--text-mid);
      margin-bottom: 4px;
      letter-spacing: 0.02em;
    }

    .notify-input {
      flex: 1 1 240px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 12px 16px;
      color: var(--text-hi);
      font-family: var(--font-body);
      font-size: 15px;
      outline: none;
      transition: border-color 0.2s;
    }

    .notify-input::placeholder { color: var(--text-lo); }
    .notify-input:focus { border-color: var(--accent); }

    .notify-btn {
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: var(--radius);
      padding: 12px 28px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.04em;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
      white-space: nowrap;
    }

    .notify-btn:hover { opacity: 0.88; transform: translateY(-1px); }
    .notify-btn:active { transform: translateY(0); }

    .notify-success {
      display: none;
      font-size: 13px;
      color: var(--accent);
      text-align: center;
      width: 100%;
      padding: 8px 0;
    }

    /* ============================================================
      BOTÃO WHATSAPP
    ============================================================ */
    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: hsl(from var(--accent) calc(h - 0) calc(s - 10) calc(l - 20));
      color: #fff;
      text-decoration: none;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.02em;
      padding: 16px 32px;
      border-radius: var(--radius);
      margin-bottom: 64px;
      animation: fadeUp 0.8s 0.5s ease both;
      transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(159, 215, 109, 0.25);
    }
 
    .whatsapp-btn:hover {
      opacity: 0.92;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(159, 215, 109, 0.35);
    }
 
    .whatsapp-btn:active { transform: translateY(0); }
 

    /* ============================================================
      REDES SOCIAIS
      TODO: adicione/remova ícones e atualize os hrefs
    ============================================================ */
    .socials {
      display: flex;
      gap: 16px;
      animation: fadeUp 0.8s 0.6s ease both;
    }

    .social-link {
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-mid);
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }

    .social-link:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--accent-dim);
    }

    /* ============================================================
      RODAPÉ
    ============================================================ */
    footer {
      text-align: center;
      padding: 24px;
      font-size: 12px;
      color: var(--text-lo);
      letter-spacing: 0.04em;
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--border);
    }

    /* TODO: atualize o texto do rodapé */
    footer a { color: var(--text-lo); text-decoration: none; }
    footer a:hover { color: var(--text-mid); }

    /* ============================================================
      ANIMAÇÕES
    ============================================================ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ============================================================
      RESPONSIVO MOBILE
    ============================================================ */
    @media (max-width: 480px) {
      .countdown { gap: 8px; }
      .cd-sep { display: none; }
      .notify-form { flex-direction: column; }
      .notify-btn { width: 100%; }
    }/* End custom CSS */