body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .logo {
    max-width: 280px;
    margin-bottom: 20px;
  }

  p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 20px auto;
    line-height: 1.6;
  }

  .video-reels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 1200px;
    margin-top: 40px;
  }

  .video-reels p {
    margin-top: 10px;
    color: #fff;
    font-size: 1rem;
    text-align: center;
  }

  .video-reels .reel-wrapper {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
  }

  .video-reels iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .video-description {
    width: 100%;
    height: 80px;
    margin: 10px 0;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
    font-size: 0.95rem;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .video-description strong {
    color: #fff;
    font-weight: bold;
    word-wrap: break-word;
  }

  .share-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #00acee, #0077b5);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .share-button:hover {
    background: linear-gradient(135deg, #0077b5, #00acee);
    transform: scale(1.05);
    cursor: pointer;
  }

  .social-icons {
    margin: 40px 0 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
  }

  .social-icons a {
    color: #fff;
    font-size: 2.5rem;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #387589;
  }

  @media (max-width: 768px) {
    .video-reels {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .video-reels {
      grid-template-columns: 1fr;
    }
  }

  .ver-mais-container {
    margin-top: 40px;
    text-align: center;
  }

  .ver-mais-link {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .ver-mais-link:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  }