      /* Reset e configurações básicas */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial black', sans-serif;
        }
        
        /* Container principal para forçar visualização mobile */
        .mobile-container {
            max-width: 480px; /* Largura máxima de um dispositivo móvel */
            margin: 0 auto; /* Centraliza na tela */
            background-color: white;
            color: black;
            line-height: 1.6;
            overflow-x: hidden;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); /* Adiciona sombra para destacar o container */
            min-height: 100vh;
            position: relative;
        }
        
        /* Estilos das seções */
        .section {
            display: none;
            padding: 20px;
            min-height: 60vh;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        
        .active {
            display: flex;
        }
        
         /* Estilo para imagens normais (não GIFs) */
        img:not(.gif-container img) {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
                
        .gif-container-bio {
            width: 100%;
            height: 250px;
            margin-bottom: -5px;
            border-radius: 10px;
            overflow: hidden;
        }
        
        /* Estilos dos botões */
        .btn {
            display: block;
            width: 100%;
            max-width: 100%;
            padding: 15px;
            margin: 10px 0;
            border: none;
            border-radius: 15px;
            font-size: 1.1rem;
            font-family: 'Arial', sans-serif;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-logo{
            background-color: rgb(88, 85, 85);
            display: block;
            width: 100%;
            max-width: 100%;
            padding: 15px;
            margin: 10px 0;
            border: none;
            border-radius: 15px;
            
        }

        .btn-green {
            background-color: #4CAF50;
            color: white;
        }
        
        .btn-instagram{
            background-color: #cc00ff;
            color: rgb(255, 255, 255);
        }

         .btn-tiktok{
            background-color: #00f2ea;
            color: rgb(255, 255, 255);
        }
        
        .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* Efeito de pulsação para incentivar clique */
        @keyframes pulse {
          0% {
            transform: scale(1);
          }
          50% {
            transform: scale(1.05);
          }
          100% {
            transform: scale(1);
          }
        }

        .btn.pulse {
          animation: pulse 2s infinite;
        }
        
        /* Rodapé */
        footer {
            margin-top: 30px;
            font-size: 0.8rem;
            color: #666;
            text-align: center;
        }
        
       