/* Estilos da página principal */
@import url('variables.css');

body {
    color: var(--text-color);
    background: var(--light-bg);
}


body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
}

 /* Camada escura transparente sobre o fundo */
    body::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 0;
    }

    .content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px 20px;
    }

    .video-container {
      width: 100%;
      max-width: 900px;
    }

    @media (max-width: 720px){
          .video-container {
          margin-top: 60px;
         }
    }

    .video-container video {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0,0,0,0.6);
    }

    .whatsapp-button {
      display: inline-block;
      margin: 30px auto;
      padding: 14px 28px;
      background-color: #25D366;
      color: white;
      font-size: 18px;
      font-weight: bold;
      text-decoration: none;
      border-radius: 40px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
      animation: pulse 1.8s infinite;
    }

    .whatsapp-button:hover {
      background-color: #1DA851;
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }