.card{
    --bg: #f7fafc;
    --card-bg: #ffffff;
    --accent: #2592bd;
    --text: #0f172a;
    --muted: #6b7280;
    --rounded: 14px;
    --gap: 24px;

    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--bg);
    padding: 40px;
    color: var(--text);
    display:flex;
    justify-content:center;
  }

  /* Card */
  .contact-card{
    width: 100%;
    /* max-width: 980px; */
    background: linear-gradient(180deg, rgba(255,255,255,1), rgba(250,250,250,1));
    border-radius: var(--rounded);
    box-shadow: 0 8px 30px rgba(2,6,23,0.08);
    padding: 28px;
    display:flex;
    gap: var(--gap);
    align-items:center;
    overflow:hidden;
  }

  /* Layout responsivo */
  .left, .right{
    flex:1 1 0;
  }
  .left{ max-width: 48%; }
  .right{ max-width: 52%; }

  @media (max-width: 760px){
    .contact-card{
      flex-direction:column;
      text-align:center;
      padding:20px;
    }
    .left, .right{ max-width:100%; }
    .left{ order:0; }
    .right{ order:1; }
  }

  /* Imagem */
  .hero-img{
    width:100%;
    height:auto;
    border-radius: 10px;
    display:block;
    box-shadow: 0 6px 20px rgba(2,6,23,0.06);
    transform-origin:center;
  }

  /* Texto */
  .title{
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    margin:0 0 8px 0;
    line-height:1.05;
  }
  .desc{
    color: var(--muted);
    margin: 0 0 18px 0;
    font-size: 1rem;
  }

  /* Botão */
  .btn{
    display:inline-block;
    background:var(--accent);
    color:white;
    padding: 10px 18px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    box-shadow: 0 6px 18px rgba(14,165,164,0.18);
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .btn:hover{ transform: translateY(-3px); box-shadow: 0 10px 26px rgba(14,165,164,0.22); }

  .btn-wpp {
    vertical-align: top;      /* alinha verticalmente com outros botões */
    background: #25D366;
    color: white;
    display: inline-flex;       /* garante ícone + texto lado a lado */
    align-items: center;        /* alinha verticalmente */
    justify-content: center;    /* centraliza horizontalmente */
    gap: 8px;                   /* espaço entre ícone e texto */
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(37,211,102,0.25);
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .btn-wpp:hover{ transform: translateY(-3px); box-shadow: 0 10px 26px rgba(14,165,164,0.22); }

  /* Entradas: off-screen states */
  .off-left{ transform: translateX(-120%); opacity:0; }
  .off-right{ transform: translateX(120%); opacity:0; }

  /* Quando animar: animação suave */
  .animate-in{
    animation-duration: 700ms;
    animation-timing-function: cubic-bezier(.2,.9,.2,1);
    animation-fill-mode: both;
  }

  @keyframes slideInFromLeft {
    from { transform: translateX(-120%); opacity:0; }
    to   { transform: translateX(0); opacity:1; }
  }
  @keyframes slideInFromRight {
    from { transform: translateX(120%); opacity:0; }
    to   { transform: translateX(0); opacity:1; }
  }

  /* classes que ligam a keyframe */
  .from-left.animate-in{ animation-name: slideInFromLeft; }
  .from-right.animate-in{ animation-name: slideInFromRight; }

  /* Pequena animação sequencial */
  .animate-delay-1{ animation-delay: 0.12s; }
  .animate-delay-2{ animation-delay: 0.26s; }
  .animate-delay-3{ animation-delay: 0.38s; }

    /* Container quadrado */
  .video-box {
    width: 100%;
    max-width: 420px;         /* ajuste como quiser */
    aspect-ratio: 1 / 1;      /* mantém quadrado */
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  /* Vídeo preenche todo espaço */
  .video-box {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    touch-action: manipulation; /* melhora toque no mobile */
  }

  .video-box video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }

  .video-label {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(0,0,0,0.55);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(4px);
  }

  /* Ajustes para telas menores */
  @media (max-width: 480px) {
    .video-label {
      font-size: 12px;
      padding: 5px 10px;
    }
    .video-box {
      max-width: 360px;
    }
  }

  @media (max-width: 360px) {
    .video-label {
      font-size: 11px;
      padding: 4px 9px;
    }
    .video-box {
      max-width: 300px;
    }
  }

  